POST api/Account/RegisterExternal
Request Information
URI Parameters
None.
Body Parameters
RegisterExternalBindingModel| Name | Description | Type | Additional information |
|---|---|---|---|
| UserName | string |
Required |
|
| Provider | string |
Required |
|
| ExternalAccessToken | string |
Required |
Request Formats
application/json, text/json
Sample:
{
"userName": "sample string 1",
"provider": "sample string 2",
"externalAccessToken": "sample string 3"
}
application/xml, text/xml
Sample:
<RegisterExternalBindingModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Wimps.Services.Api.Models"> <ExternalAccessToken>sample string 3</ExternalAccessToken> <Provider>sample string 2</Provider> <UserName>sample string 1</UserName> </RegisterExternalBindingModel>
application/x-www-form-urlencoded
Sample:
Response Information
Resource Description
IHttpActionResultNone.
Response Formats
application/json, text/json, application/xml, text/xml
Sample:
Sample not available.