POST aml-api/customer-data
Request Information
URI Parameters
None.
Body Parameters
CustomerData| Name | Description | Type | Additional information |
|---|---|---|---|
| customer_first_name | string |
None. |
|
| customer_last_name | string |
None. |
|
| customer_email | string |
None. |
|
| customer_mobile | string |
None. |
|
| check_category | integer |
None. |
|
| communication_token | string |
None. |
Request Formats
application/json, text/json
Sample:
{
"customer_first_name": "sample string 1",
"customer_last_name": "sample string 2",
"customer_email": "sample string 3",
"customer_mobile": "sample string 4",
"check_category": 5,
"communication_token": "sample string 6"
}
application/xml, text/xml
Sample:
<CustomerData xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/aml_api.Models"> <check_category>5</check_category> <communication_token>sample string 6</communication_token> <customer_email>sample string 3</customer_email> <customer_first_name>sample string 1</customer_first_name> <customer_last_name>sample string 2</customer_last_name> <customer_mobile>sample string 4</customer_mobile> </CustomerData>
application/x-www-form-urlencoded
Sample:
Sample not available.
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. |