Skip to main content
POST
/
v1
/
contacts
POST /v1/contacts
curl --request POST \
  --url https://www.skaala.ai/api/v1/contacts \
  --header 'X-API-Key: <api-key>'
{
  "200": {},
  "400": {},
  "401": {},
  "404": {},
  "500": {}
}

POST /v1/contacts

Transform contact to API response format (snake_case)

Request Body

Responses

200
success
Successful response
400
error
Bad request - Invalid parametersReturns a Error object
401
error
Unauthorized - Invalid or missing API keyReturns a Error object
404
error
Not foundReturns a Error object
500
error
Internal server errorReturns a Error object

Code Examples

curl -X POST https://www.skaala.ai/api/v1/contacts \
  -H "X-API-Key: sk_live_your_key_here" \
  -H "Content-Type: application/json" \
  -d '{
    // Your request body here
  }'