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": "54c2b1fe-2dfe-4483-8cca-31fa877c0db0",
"badContact": "sample string 2",
"token": "80b1b8bd-f28b-446a-a417-d23283bf47a9"
}
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">80b1b8bd-f28b-446a-a417-d23283bf47a9</token> <badContact>sample string 2</badContact> <entityId>54c2b1fe-2dfe-4483-8cca-31fa877c0db0</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>