contacts
Create Contact
Use this endpoint to create a new contact.
This endpoint is rate limited. Use the RateLimit-* response headers to check current limits and remaining quota.
post/contacts
Request body
Example request
{
"contactTypeIds": [
"52ba94c5-3ecf-4e7f-90cd-a91de12a72f5"
],
"firstName": "John",
"lastName": "Smith",
"crossReference": "Cross reference.",
"companyName": "Acme Roofing Inc.",
"companyJobTitle": "Job title",
"note": "This is a note",
"phoneNumbers": [
{
"number": "8555551234",
"ext": "234",
"primary": true,
"hasTextingAvailable": true,
"type": "Home"
}
],
"emailAddresses": [
{
"address": "contactmail@mail.com",
"primary": true
}
],
"mailingAddress": {
"street1": "123 Main St.",
"street2": "Apt 2",
"city": "Peoria",
"zipCode": "61603",
"state": {
"id": 43
},
"country": {
"id": 1
}
},
"billingAddress": {
"street1": "123 Main St.",
"street2": "Apt 2",
"city": "Peoria",
"zipCode": "61603",
"state": {
"id": 43
},
"country": {
"id": 1
}
}
}Response
Created