Skip to content

/v1/contacts/{id} (PUT)

PUT
/v1/contacts/{id}
curl --request PUT \
--url https://example.com/v1/contacts/2489E9AD-2EE2-8E00-8EC9-32D5F69181C0 \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '{ "email": "example", "name": "example", "lastName": "example", "phone": "example", "organisationId": "2489E9AD-2EE2-8E00-8EC9-32D5F69181C0", "groupIds": [ 1 ] }'
id
required
string format: uuid
object
email
string
nullable <= 320 characters
name
string
nullable <= 255 characters
lastName
string
nullable <= 255 characters
phone
string
nullable <= 50 characters
organisationId
string format: uuid
nullable
groupIds
Array<integer>
nullable
Example generated
{
"email": "example",
"name": "example",
"lastName": "example",
"phone": "example",
"organisationId": "2489E9AD-2EE2-8E00-8EC9-32D5F69181C0",
"groupIds": [
1
]
}

OK