PUT
/
tool
/
{tool_id}
curl --request PUT \
  --url https://api.isosceles.ai/tool/{tool_id} \
  --header 'Authorization: Basic <encoded-value>' \
  --header 'Content-Type: application/json' \
  --data '{
  "name": "Outlook3"
}'
{
  "error": "<string>"
}

Authorizations

Authorization
string
header
required

Basic authentication header of the form Basic <encoded-value>, where <encoded-value> is the base64-encoded string username:password.

Path Parameters

tool_id
string
required

Body

application/json
name
string

The name of the tool

Minimum length: 1
enabled
boolean

Whether the tool is enabled

access_token
string | null

OAuth2 access token

refresh_token
string | null

OAuth2 refresh token

scopes
string[] | null

List of OAuth2 scopes

external_user_id
string | null

External user ID from the provider

expires_at
string | null

When the access token expires

oauth2_metadata
object | null

Additional OAuth2 metadata

Response

404 - application/json
error
string
required