POST Api/V1/CRM/CheckDuplicate
Request Information
URI Parameters
None.
Body Parameters
CheckDuplicateDto| Name | Description | Type | Additional information |
|---|---|---|---|
| CampId | globally unique identifier |
None. |
|
| string |
None. |
||
| Phone | string |
None. |
|
| OtherField | CheckDuplicationDynamicFieldDto |
None. |
|
| ExCustomerId | integer |
None. |
Request Formats
application/json, text/json
Sample:
{
"CampId": "205e512e-6e66-4888-87e4-f7c55aaaab02",
"Email": "sample string 2",
"Phone": "sample string 3",
"OtherField": {
"FieldName": "sample string 1",
"FieldValue": "sample string 2"
},
"ExCustomerId": 4
}
application/xml, text/xml
Sample:
<CheckDuplicateDto xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/iCreate.API.Models">
<CampId>205e512e-6e66-4888-87e4-f7c55aaaab02</CampId>
<Email>sample string 2</Email>
<ExCustomerId>4</ExCustomerId>
<OtherField>
<FieldName>sample string 1</FieldName>
<FieldValue>sample string 2</FieldValue>
</OtherField>
<Phone>sample string 3</Phone>
</CheckDuplicateDto>
application/x-www-form-urlencoded
Sample:
Response Information
Resource Description
HttpResponseMessage| Name | Description | Type | Additional information |
|---|---|---|---|
| Version | Version |
None. |
|
| Content | HttpContent |
None. |
|
| StatusCode | HttpStatusCode |
None. |
|
| ReasonPhrase | string |
None. |
|
| Headers | Collection of Object |
None. |
|
| RequestMessage | HttpRequestMessage |
None. |
|
| IsSuccessStatusCode | boolean |
None. |