Authorizations
Body
application/json
Tool information
Tool input model
curl --request POST \
--url http://localhost:8080/api/v1/tools \
--header 'Authorization: <api-key>' \
--header 'Content-Type: application/json' \
--data '
{
"data": {
"attributes": {
"auth_key": "<string>",
"auth_schema_name": "<string>",
"description": "<string>",
"name": "<string>",
"oas_spec": [
123
],
"privacy_score": 123,
"tool_type": "<string>"
},
"type": "<string>"
}
}
'{
"attributes": {
"auth_key": "<string>",
"auth_schema_name": "<string>",
"description": "<string>",
"name": "<string>",
"oas_spec": [
123
],
"operations": [
"<string>"
],
"privacy_score": 123,
"tool_type": "<string>"
},
"id": "<string>",
"type": "<string>"
}Create a new tool with the provided information
curl --request POST \
--url http://localhost:8080/api/v1/tools \
--header 'Authorization: <api-key>' \
--header 'Content-Type: application/json' \
--data '
{
"data": {
"attributes": {
"auth_key": "<string>",
"auth_schema_name": "<string>",
"description": "<string>",
"name": "<string>",
"oas_spec": [
123
],
"privacy_score": 123,
"tool_type": "<string>"
},
"type": "<string>"
}
}
'{
"attributes": {
"auth_key": "<string>",
"auth_schema_name": "<string>",
"description": "<string>",
"name": "<string>",
"oas_spec": [
123
],
"operations": [
"<string>"
],
"privacy_score": 123,
"tool_type": "<string>"
},
"id": "<string>",
"type": "<string>"
}Tool information
Tool input model
Show child attributes
Was this page helpful?