Skip to content

Delete Contact

DELETE
/platform/v1/contacts/{contact_id}
curl --request DELETE \
--url https://example.com/platform/v1/contacts/1 \
--header 'X-API-Key: example'

Erase a contact + async-cascade wipe its messages/conversations.

Returns 202 (accepted) — the wipe is fired as a background task; the contact row + its data-plane traffic are removed. Idempotent (404 if not owned).

contact_id
required
Contact Id
integer
X-API-Key
required
X-Api-Key
string

Successful Response

Media type application/json
Example generated
example

Validation Error

Media type application/json
HTTPValidationError
object
detail
Detail
Array<object>
ValidationError
object
ctx
Context
object
input
Input
loc
required
Location
Array
msg
required
Message
string
type
required
Error Type
string
Example generated
{
"detail": [
{
"ctx": {},
"input": "example",
"loc": [
"example"
],
"msg": "example",
"type": "example"
}
]
}