Skip to main content
POST
/
tools
/
{org_id}
Create Tool
curl --request POST \
  --url https://api.example.com/tools/{org_id} \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "name": "<string>",
  "category": "<string>",
  "description": "",
  "tags": [],
  "initial_input_schema": {},
  "initial_output_schema": {},
  "initial_version_notes": "",
  "initial_implementation_details": "",
  "initial_documentation": ""
}
'
{}

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

Body

application/json
name
string
required
category
string
required
description
string | null
default:""
tags
string[] | null
initial_input_schema
Initial Input Schema · object
initial_output_schema
Initial Output Schema · object
initial_version_notes
string | null
default:""
initial_implementation_details
string | null
default:""
initial_documentation
string | null
default:""

Response

Successful Response

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