Skip to main content
PATCH
/
api
/
automations
/
{id}
/
preference
Update user automation preference (enable/disable)
curl --request PATCH \
  --url https://your-instance.example.com/api/automations/{id}/preference \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "enabled": true
}
'
{}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

id
string
required

Body

application/json
enabled
boolean
required

Response

Automation preference updated

Generic response envelope. Endpoint-specific fields are intentionally open.