Insert new contacts
Endpoint: /contacts
HTTP method: POST
URL: https://e1.envoke.com/v1/contacts
Create a new contact object. Supply the full contact object JSON in the POST data.
NOTE: All example below show the POST URL followed by the POST data. Each example below also includes a cURL request. Make sure to change the API_ID and API_KEY with your values.
Create a new contact
https://e1.envoke.com/v1/contacts
{
"email" : "new-contact@api-testing.com",
"first_name" : "John"
}
curl -X POST -u API_ID:API_KEY -d "{\"email\":\"new-contact@api-testing.com\",\"first_name\":\"John\"}" "https://e1.envoke.com/v1/contacts"