POST api/v1/platform/customlink
Request Information
URI Parameters
None.
Body Parameters
PlatformLinkBindingModel| Name | Description | Type | Additional information |
|---|---|---|---|
| Authentication | AuthenticationModel |
None. |
|
| Request | PlatformLinkRequestModel |
None. |
Request Formats
application/json, text/json
Sample:
{
"Authentication": {
"Id": "sample string 1",
"Key": "sample string 2"
},
"Request": {
"EntityCode": "sample string 1",
"MotionCode": "sample string 2",
"TrackingCode": "sample string 3",
"PlatformPage": "sample string 4",
"Referrer": "sample string 5",
"Browser": "sample string 6",
"Country": "sample string 7"
}
}
application/xml, text/xml
Sample:
<PlatformLinkBindingModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Api.Models">
<Authentication>
<Id>sample string 1</Id>
<Key>sample string 2</Key>
</Authentication>
<Request>
<Browser>sample string 6</Browser>
<Country>sample string 7</Country>
<EntityCode>sample string 1</EntityCode>
<MotionCode>sample string 2</MotionCode>
<PlatformPage>sample string 4</PlatformPage>
<Referrer>sample string 5</Referrer>
<TrackingCode>sample string 3</TrackingCode>
</Request>
</PlatformLinkBindingModel>
Response Information
Resource Description
PlatformOutgoingModel| Name | Description | Type | Additional information |
|---|---|---|---|
| Message | MessageModel |
None. |
Response Formats
application/json, text/json
Sample:
{
"Message": {
"Code": "sample string 1",
"Description": "sample string 2"
}
}
application/xml, text/xml
Sample:
<PlatformOutgoingModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Api.Models">
<Message>
<Code>sample string 1</Code>
<Description>sample string 2</Description>
</Message>
</PlatformOutgoingModel>