POST api/Customer/PasswordlessMagicLinkParse
Request Information
URI Parameters
None.
Body Parameters
PasswordlessMagicLinkParseRequestName | Description | Type | Additional information |
---|---|---|---|
MagicLink | string |
None. |
Request Formats
application/json, text/json
Sample:
{ "MagicLink": "sample string 1" }
application/xml, text/xml
Sample:
<PasswordlessMagicLinkParseRequest xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/BusinessLayer.Dto.Request"> <MagicLink>sample string 1</MagicLink> </PasswordlessMagicLinkParseRequest>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
PasswordlessMagicLinkParseResponseName | Description | Type | Additional information |
---|---|---|---|
Code | integer |
None. |
|
Success | boolean |
None. |
|
ReturnUrl | string |
None. |
Response Formats
application/json, text/json
Sample:
{ "Code": 1, "Success": true, "ReturnUrl": "sample string 3" }
application/xml, text/xml
Sample:
<PasswordlessMagicLinkParseResponse xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/BusinessLayer.Dto.Response"> <Code>1</Code> <ReturnUrl>sample string 3</ReturnUrl> <Success>true</Success> </PasswordlessMagicLinkParseResponse>