Agiled Docs
POST
/public/v1/contacts

Creates a contact. Use Idempotency-Key for safe retries.

Authorization

bearerAuth
AuthorizationBearer <token>

In: header

Request Body

application/json

TypeScript Definitions

Use the request body type in TypeScript.

[key: string]?any

Response Body

application/json

curl -X POST "https://loading/public/v1/contacts" \  -H "Content-Type: application/json" \  -d '{    "name": "Example Contact"  }'
{  "data": {    "created_at": "string",    "id": "string",    "updated_at": "string"  }}
Empty
Empty
Empty
Empty
Empty