POST api/Customer/GenerateLink

Request Information

URI Parameters

None.

Body Parameters

GenerateLinkRequest
NameDescriptionTypeAdditional 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>e0abae90-b899-4aa2-9891-ef27b50f79ec</UserId>
  <WebUrl>sample string 3</WebUrl>
</GenerateLinkRequest>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

ResponseBaseV2
NameDescriptionTypeAdditional 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>