Aller au contenu

/api/clients/{id}/contacts (POST)

POST
/api/clients/{id}/contacts
curl --request POST \
--url https://example.com/api/clients/2489E9AD-2EE2-8E00-8EC9-32D5F69181C0/contacts \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '{ "name": "example", "email": "example" }'
id
required
string format: uuid
Media type application/json
object
name
string
nullable
email
string
nullable
Example generated
{
"name": "example",
"email": "example"
}

OK