Skip to main content
POST
/
tools
/
{org_id}
/
{tool_id}
/
versions
Create Tool Version
curl --request POST \
  --url https://api.example.com/tools/{org_id}/{tool_id}/versions \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "input_schema": {},
  "output_schema": {},
  "notes": "",
  "documentation": "",
  "implementation_details": ""
}
'
{}

Authorizations

Authorization
string
header
required

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

Path Parameters

org_id
string
required
tool_id
string
required

Body

application/json
input_schema
Input Schema · object
output_schema
Output Schema · object
notes
string | null
default:""
documentation
string | null
default:""
implementation_details
string | null
default:""

Response

Successful Response

The response is of type Response Create Tool Version Tools Org Id Tool Id Versions Post · object.