POST api/engagement/track
Request Information
URI Parameters
None.
Body Parameters
TrackRequest| Name | Description | Type | Additional information |
|---|---|---|---|
| Action | string |
None. |
|
| EntityId | string |
None. |
|
| EntityName | string |
None. |
|
| EntityUrl | string |
None. |
Request Formats
application/json, text/json
Sample:
{
"action": "sample string 1",
"entityId": "sample string 2",
"entityName": "sample string 3",
"entityUrl": "sample string 4"
}
application/octet-stream
Sample:
{"action":"sample string 1","entityId":"sample string 2","entityName":"sample string 3","entityUrl":"sample string 4"}
application/xml, text/xml
Sample:
<TrackRequest xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/BondMX.Api.Common.Engagement.Request"> <Action>sample string 1</Action> <EntityId>sample string 2</EntityId> <EntityName>sample string 3</EntityName> <EntityUrl>sample string 4</EntityUrl> </TrackRequest>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
ResponseResultOfBoolean| Name | Description | Type | Additional information |
|---|---|---|---|
| Data | boolean |
None. |
|
| Message | string |
None. |
Response Formats
application/json, text/json
Sample:
{
"data": true,
"message": "sample string 2"
}
application/octet-stream
Sample:
{"data":true,"message":"sample string 2"}
application/xml, text/xml
Sample:
<ResponseResultOfboolean xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/BondMX.Api.Common.Global.Response"> <Data>true</Data> <Message>sample string 2</Message> </ResponseResultOfboolean>