latestOpenAPI 3.0.32026-08-14137304312.9 KB
ad855d921ee9
accounts
Update an existing account
Updates an existing account by ID or external ID. Only provided fields are modified.
Rate limit: 60 requests per minute
patch/accounts/{id}
Path parameters
idstring required
The ID or external ID of the account to update.
Request body
Example request
{
"account_type": "customer",
"channels": [
{
"mirror_to": {
"source": "slack"
},
"source": "slack"
}
]
}Response
Example response
{
"data": {
"channels": [
{
"mirror_to": {
"source": "slack"
},
"source": "slack"
}
],
"type": "customer"
}
}