Skip to main content
PATCH
/
v2
/
tools
/
{toolId}
/
disable
Update Tool Disabled State
curl --request PATCH \
  --url http://localhost:3000/api/v2/tools/{toolId}/disable \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '{
  "disabled": true
}'
This response does not have an example.

Authorizations

Authorization
string
header
required

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

Path Parameters

toolId
string
required

Body

application/json
disabled
boolean
required

Response

Tool disabled state updated successfully

I