Skip to main content
PATCH
/
v1
/
clients
/
{id}
curl -X PATCH https://api.whatabot.app/api/v1/clients/{id} \
  -H "X-Api-Key: wh_your_api_key" \
  -H "Content-Type: application/json" \
  -d '{"name": "New Name"}'
Update an OAuth client’s name.
X-Api-Key
string
required
Your API key (prefixed with wh_).
id
string
required
Client ID.

Body

name
string
Updated client name.

Payload examples

{
  "name": "New Name"
}
curl -X PATCH https://api.whatabot.app/api/v1/clients/{id} \
  -H "X-Api-Key: wh_your_api_key" \
  -H "Content-Type: application/json" \
  -d '{"name": "New Name"}'