Contacts API
Create or Update Contact
POST /api/v1/contactsRequest Body
Field
Type
Required
Description
Example Request
curl -X POST https://app.cueflow.so/api/v1/contacts \
-H "Authorization: Bearer sk_your_api_key" \
-H "Content-Type: application/json" \
-d '{
"email": "[email protected]",
"externalId": "user-123",
"name": "Jane Smith",
"plan": "pro",
"role": "admin",
"signedUpAt": "2024-01-15T10:30:00Z",
"customAttributes": {
"company": "Acme Inc",
"teamSize": 50,
"isEnterprise": true
}
}'Response
Status Codes
Code
Description
Delete Contact
Path Parameters
Parameter
Description
Example Request
Response
Status Codes
Code
Description
Custom Attributes
Setting Attributes
Attribute Types
Type
Example
Code Examples
Node.js
Python
PHP
Last updated