Create Customers
Create Customer Records
API payload:
Property | Description | Required? | Unique? | Type |
---|---|---|---|---|
customerId | Customer ID as it exists in your system. | Yes | Yes | string |
customerName | Customer name as it exists in your system. | Yes | No | string |
traits | Reference metadata. For example to integrate with external systems. | No | No | JSON object dictionary <string,string>. |
API call:
POST https://app.amberflo.io/customer-details
{
"customerId": "54a43bba-915d-4512-a0bd-9d9debe2eb3a",
"customerName": "Wayne Enterprises, Inc.",
"traits": {
"region":"Midwest"
}
}
Updated 9 months ago