Users
Delete User
Delete one of your Users.
DELETE
/
users
/
{id}
Header
Path
curl --request DELETE \
--url https://eu.sequencehq.com/api/users/{id} \
--header 'Authorization: <authorization>'
{
"email": "person@example.com",
"id": "7b1f28b9-a4ad-450b-a0ea-fd647d5109b2",
"sequenceAccountIds": [
"724c4f93-8606-4a38-bfbf-50a7045e4eaa"
],
"state": "active"
}
Headers
Authorizationrequired
string
Your API credentials. Eg. Basic {credentials}
.
Idempotency-Key
string
Specifying a unique ID for this request here lets you retry it without risk of performing the same operation twice.
Path Parameters
idrequired
string
Sequence User ID
Response
200 - application/json
emailrequired
string
idrequired
string
sequenceAccountIdsrequired
string[]
staterequired
string
curl --request DELETE \
--url https://eu.sequencehq.com/api/users/{id} \
--header 'Authorization: <authorization>'
{
"email": "person@example.com",
"id": "7b1f28b9-a4ad-450b-a0ea-fd647d5109b2",
"sequenceAccountIds": [
"724c4f93-8606-4a38-bfbf-50a7045e4eaa"
],
"state": "active"
}