POST api/token/delegatedlogin
Allows to authenticate a partner user.
Request Information
URI Parameters
None.
Body Parameters
Credentials of the user and the partner.
DelegatedLogin| Name | Description | Type | Additional information |
|---|---|---|---|
| AccountName |
Account email address. |
string |
None. |
| AccountFullName |
Account full name. |
string |
None. |
| IdPricePlan |
Optional price plan identifier for the account. |
integer |
None. |
| UserName |
User email address. |
string |
None. |
| UserFullName |
User full name. |
string |
None. |
| UserToken |
Authentication token of the user. |
string |
None. |
| ExternalAccountId |
Optional external account identifier. |
string |
None. |
| ValidatingEntity |
Email address of the partner. |
string |
None. |
| WebServiceKey |
Web service key of the partner |
string |
None. |
Request Formats
application/json, text/json
Sample:
{
"AccountName": "sample string 1",
"AccountFullName": "sample string 2",
"IdPricePlan": 1,
"UserName": "sample string 3",
"UserFullName": "sample string 4",
"UserToken": "sample string 5",
"ExternalAccountId": "sample string 6",
"ValidatingEntity": "sample string 7",
"WebServiceKey": "sample string 8"
}
application/xml, text/xml
Sample:
<DelegatedLogin xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/PuntoNeutro.Core.WebApi"> <AccountFullName>sample string 2</AccountFullName> <AccountName>sample string 1</AccountName> <ExternalAccountId>sample string 6</ExternalAccountId> <IdPricePlan>1</IdPricePlan> <UserFullName>sample string 4</UserFullName> <UserName>sample string 3</UserName> <UserToken>sample string 5</UserToken> <ValidatingEntity>sample string 7</ValidatingEntity> <WebServiceKey>sample string 8</WebServiceKey> </DelegatedLogin>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
Authentication token.
IHttpActionResultNone.
Response Formats
application/json, text/json, application/xml, text/xml
Sample:
Sample not available.