POST Access
Create temporary login token for existing user
Header Information
Required Headers
Authorization-KeyRemarks
Additional Information
Requires HTTPSRequest Information
Parameters
Name | Description | Additional information |
---|---|---|
request | Encoded request body |
Define this parameter in the request body. |
Request body formats
application/json, text/json
Sample:
{ "CD2UserName": "UserName@email.aaa", "CD2UserPassword": "P@ssw0rd" }
application/xml, text/xml
Sample:
<AccessPostRequestModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/API.Models"> <CD2UserName>UserName@email.aaa</CD2UserName> <CD2UserPassword>P@ssw0rd</CD2UserPassword> </AccessPostRequestModel>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Response body formats
application/json, text/json
Sample:
{ "LoginGUID": "Temp login token (GUID) to allow user login into the site", "FullLoginURL": "Full URL to log user into the site", "ValidUntilUTC": "Expiration Date/Time of login token" }
application/xml, text/xml
Sample:
<AccessResponse xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/API.Models"> <FullLoginURL>Full URL to log user into the site</FullLoginURL> <LoginGUID>Temp login token (GUID) to allow user login into the site</LoginGUID> <ValidUntilUTC>Expiration Date/Time of login token</ValidUntilUTC> </AccessResponse>