POST api/Customer/GenerateLink
Request Information
URI Parameters
None.
Body Parameters
GenerateLinkRequest| Name | Description | Type | Additional information |
|---|---|---|---|
| PageName | string |
None. |
|
| WebUrl | string |
None. |
|
| AppUrl | string |
None. |
Request Formats
application/json, text/json
Sample:
{
"PageName": "sample string 2",
"WebUrl": "sample string 3",
"AppUrl": "sample string 4"
}
application/xml, text/xml
Sample:
<GenerateLinkRequest xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/BusinessLayer.Dto.Request"> <AppUrl>sample string 4</AppUrl> <PageName>sample string 2</PageName> <UserId>68062d0d-cccf-43af-ac2c-c5f0187473f7</UserId> <WebUrl>sample string 3</WebUrl> </GenerateLinkRequest>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
ResponseBaseV2| Name | Description | Type | Additional information |
|---|---|---|---|
| Success | boolean |
None. |
|
| Data | Object |
None. |
|
| Error | ErrorResponse |
None. |
Response Formats
application/json, text/json
Sample:
{
"Success": true,
"Data": {},
"Error": {
"Code": 1,
"Level": "sample string 2",
"Message": "sample string 3",
"SubMessage": "sample string 4"
}
}
application/xml, text/xml
Sample:
<ResponseBaseV2 xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/BusinessLayer.Dto.Common">
<Data />
<Error xmlns:d2p1="http://schemas.datacontract.org/2004/07/BusinessLayer.Dto.Response">
<d2p1:Code>1</d2p1:Code>
<d2p1:Level>sample string 2</d2p1:Level>
<d2p1:Message>sample string 3</d2p1:Message>
<d2p1:SubMessage>sample string 4</d2p1:SubMessage>
</Error>
<Success>true</Success>
</ResponseBaseV2>