GET api/OrderUserLink?userId={userId}&token={token}&deviceId={deviceId}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| userId | string |
Required |
|
| token | string |
Required |
|
| deviceId | string |
Required |
Body Parameters
None.
Response Information
Resource Description
OrderUserLink| Name | Description | Type | Additional information |
|---|---|---|---|
| LinkId | integer |
None. |
|
| Token | string |
None. |
|
| UserId | string |
None. |
|
| IsValid | boolean |
None. |
Response Formats
application/json, text/json
Sample:
{
"LinkId": 1,
"Token": "sample string 2",
"UserId": "sample string 3",
"IsValid": true
}
text/xml
Sample:
<OrderUserLink xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/CloudSysPOSWeb.Models"> <IsValid>true</IsValid> <LinkId>1</LinkId> <Token>sample string 2</Token> <UserId>sample string 3</UserId> </OrderUserLink>