PelekaPeleka Developers
API ReferenceAudienceContacts

Create a contact

POST
/api/v1/contacts
X-API-Key<token>

In: header

Request Body

application/json

TypeScript Definitions

Use the request body type in TypeScript.

Response Body

application/json

curl -X POST "https://example.com/api/v1/contacts" \  -H "Content-Type: application/json" \  -d '{    "email": "[email protected]"  }'
{  "id": "550e8400-e29b-41d4-a716-446655440000",  "workspaceId": "550e8400-e29b-41d4-a716-446655440000",  "email": "[email protected]",  "firstName": "Jane",  "lastName": "Doe",  "phone": "+14155550100",  "status": "subscribed",  "source": "import",  "customFields": {},  "createdAt": "2026-01-01T00:00:00.000Z",  "updatedAt": "2026-01-01T00:00:00.000Z"}