Overview
This endpoint allows you to create a new contact in Cometly. You can provide multiple emails, phone numbers, names, and locations for a single contact. The first item in each array will be set as the primary value for that field in the contact’s profile.
Request Body
Array of phone numbers for this contact. Optional.
Example: ["+1234567890", "+0987654321"]
Array of names for this contact. Optional.
Example: ["John Doe", "Johnny"]
Array of locations for this contact. Optional.
Example: ["New York, NY", "Los Angeles, CA"]
Response
Success Response
Returns the created contact with all provided data in the ContactDetail format.
The unique identifier of the newly created contact
Array of email addresses that were provided
Array of phone numbers that were provided
Array of names that were provided
Array of locations that were provided
Error Response
Error description explaining what went wrong
Example Requests
curl -X POST "https://app.cometly.com/public-api/v1/contacts" \
-H "Authorization: Bearer YOUR_API_KEY" \
-H "Accept: application/json" \
-H "Content-Type: application/json" \
-d '{
"emails": ["[email protected]", "[email protected]"],
"phones": ["+1234567890", "+0987654321"],
"names": ["John Doe", "Johnny"],
"locations": ["New York, NY", "Los Angeles, CA"]
}'
Status Codes
| Status Code | Description |
|---|
| 201 | Contact successfully created |
| 401 | Missing or invalid API key |
| 403 | API key doesn’t have permission or subscription is inactive |
| 422 | Invalid parameters provided (check error message for details) |
| 429 | Too many requests - rate limit exceeded. See Rate Limiting |
Notes
- Rate Limit: This endpoint has a limit of 60 requests per minute per Space. See Rate Limiting for details.
- Required Field: At least one email address is required. All other fields are optional.
- Multiple Values: You can provide multiple emails, phones, names, and locations for a single contact.
- Primary Data: The first item in each array becomes the primary value stored in the contact’s profile.
- All Data Stored: All items from each array are stored in their respective tables (emails, phones, names, locations) and can be retrieved via GET /contacts/.
- Transaction Safety: Contact creation is wrapped in a database transaction to ensure data consistency.