POST api/User/LinkAccounts

Request Information

URI Parameters

None.

Body Parameters

AccountLinkModel
NameDescriptionTypeAdditional information
NewUserEmail

string

Required

Data type: EmailAddress

Matching regular expression pattern: ^([\w-\.]+)@((\[[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}\.)|(([\w-]+\.)+))([a-zA-Z]{2,4}|[0-9]{1,3})(\]?)$

OldUsernames

Collection of string

Required

Request Formats

application/json, text/json

Sample:
{
  "NewUserEmail": "sample string 1",
  "OldUsernames": [
    "sample string 1",
    "sample string 2"
  ]
}

application/xml, text/xml

Sample:
<AccountLinkModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Cargo.Data.Model">
  <NewUserEmail>sample string 1</NewUserEmail>
  <OldUsernames xmlns:d2p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
    <d2p1:string>sample string 1</d2p1:string>
    <d2p1:string>sample string 2</d2p1:string>
  </OldUsernames>
</AccountLinkModel>

application/x-www-form-urlencoded

Sample:

Failed to generate the sample for media type 'application/x-www-form-urlencoded'. Cannot use formatter 'JQueryMvcFormUrlEncodedFormatter' to write type 'AccountLinkModel'.

Response Information

Resource Description

IHttpActionResult

None.

Response Formats

application/json, text/json, application/xml, text/xml

Sample:

Sample not available.