POST api/CMS/PrepareReferrersDetails?email={email}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| string |
Required |
Body Parameters
Dictionary of string [key] and Object [value]Request Formats
application/json, text/json, text/html
Sample:
{
"sample string 1": {},
"sample string 3": {}
}
application/xml, text/xml
Sample:
<ArrayOfKeyValueOfstringanyType xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
<KeyValueOfstringanyType>
<Key>sample string 1</Key>
<Value />
</KeyValueOfstringanyType>
<KeyValueOfstringanyType>
<Key>sample string 3</Key>
<Value />
</KeyValueOfstringanyType>
</ArrayOfKeyValueOfstringanyType>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
ReferrersDetail| Name | Description | Type | Additional information |
|---|---|---|---|
| RefereId | integer |
None. |
|
| Referer | string |
None. |
|
| Refered | string |
None. |
|
| ReferedBy | integer |
None. |
|
| TrackingID | globally unique identifier |
None. |
|
| PageRefered | string |
None. |
|
| ShopperID | integer |
None. |
|
| ProviderID | integer |
None. |
|
| OrderID | integer |
None. |
|
| ReferalBonus | decimal number |
None. |
Response Formats
application/json, text/json, text/html
Sample:
{
"RefereId": 1,
"Referer": "sample string 2",
"Refered": "sample string 3",
"ReferedBy": 4,
"TrackingID": "17347ac7-6b9f-4efb-8090-ecb5ed1ea315",
"PageRefered": "sample string 6",
"ShopperID": 7,
"ProviderID": 8,
"OrderID": 9,
"ReferalBonus": 10.1
}
application/xml, text/xml
Sample:
<ReferrersDetail xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/SellersCommerce.Entities.Commerce"> <OrderID>9</OrderID> <PageRefered>sample string 6</PageRefered> <ProviderID>8</ProviderID> <ReferalBonus>10.1</ReferalBonus> <RefereId>1</RefereId> <Refered>sample string 3</Refered> <ReferedBy>4</ReferedBy> <Referer>sample string 2</Referer> <ShopperID>7</ShopperID> <TrackingID>17347ac7-6b9f-4efb-8090-ecb5ed1ea315</TrackingID> </ReferrersDetail>