POST DealSheet/addbadcontact
Request Information
URI Parameters
None.
Body Parameters
BadContactRequest| Name | Description | Type | Additional information |
|---|---|---|---|
| entityId | globally unique identifier |
None. |
|
| badContact | string |
None. |
|
| token | globally unique identifier |
Required |
Request Formats
application/json, text/json
Sample:
{
"entityId": "e5c289b6-6bb5-4e8b-b4a0-6cc3e6970ddc",
"badContact": "sample string 2",
"token": "d1e50445-c6df-47dd-bb7f-b6f0acf9ac2c"
}
application/xml, text/xml
Sample:
<BadContactRequest xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/AutoAlert.API.Models.DealSheet"> <token xmlns="http://schemas.datacontract.org/2004/07/AutoAlert.API.Models">d1e50445-c6df-47dd-bb7f-b6f0acf9ac2c</token> <badContact>sample string 2</badContact> <entityId>e5c289b6-6bb5-4e8b-b4a0-6cc3e6970ddc</entityId> </BadContactRequest>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
APIResult| Name | Description | Type | Additional information |
|---|---|---|---|
| code | integer |
None. |
|
| error | string |
None. |
|
| APIVersion | integer |
None. |
Response Formats
application/json, text/json
Sample:
{
"APIVersion": 1,
"code": 200,
"error": "sample string 2"
}
application/xml, text/xml
Sample:
<APIResult xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/AutoAlert.API"> <APIVersion>1</APIVersion> <error>sample string 2</error> </APIResult>