Hello,
I'm trying to use the API to create a new customer using the APIKey auth method using Postman. Not sure why I'm getting the 401 unauthorized error.
I'm adding this info to the header:
APIKey: (using the API generated through the portal - I was able to get a 200 response using a GET request with no problem)
Content-Type: application/json
Content-Length: (autocompleted by Postman)
Host: (autocompleted by Postman)
Body (using Json)
{
    "FirstName": "FirstNameTest2",
    "LastName": "LastNameTest2",
    "Phone": "1234567890",
    "Email": "test@test.com",
    "IsLeadStatusOnly": "true"
}
 
Are there any examples to add a Customer?
Thanks,