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": "f73e64ed-92a1-40b1-818a-d18761d4b4c3",
"badContact": "sample string 2",
"token": "75999203-ce9f-4faa-968a-8ec0c33eae70"
}
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">75999203-ce9f-4faa-968a-8ec0c33eae70</token> <badContact>sample string 2</badContact> <entityId>f73e64ed-92a1-40b1-818a-d18761d4b4c3</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>