Create Customers

Create Customer Records

API payload:

PropertyDescriptionRequired?Unique?Type
customerId Customer ID as it exists in your system.YesYesstring
customerName Customer name as it exists in your system.YesNostring
traits Reference metadata. For example to integrate with external systems.NoNoJSON 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"
    }
}