Retrieve a Step's Tools Definition
GET/api/v1/steps/:step/tools-definition
Retrieve a Step's Tools Definition
Request
Path Parameters
step stringrequired
Responses
- 200
- 400
- 404
- 500
OK
- application/json
- Schema
- Example (from schema)
Schema
buildDuration integer
buildLogs string
buildStatus string
cluster string
connectors string[]
createdAt date-time
description string
docker object
error string
id string
inputSchema string
local object
name string
outputSchema string
prompts
object
property name* string
tags string[]
url string
variables
object
property name* string
version integer
{
"buildDuration": 0,
"buildLogs": "string",
"buildStatus": "string",
"cluster": "string",
"createdAt": "2024-07-29T15:51:28.071Z",
"description": "string",
"docker": {},
"error": "string",
"id": "string",
"inputSchema": "string",
"local": {},
"name": "string",
"outputSchema": "string",
"prompts": {},
"url": "string",
"variables": {},
"version": 0
}
Bad Request
- application/json
- Schema
- Example (from schema)
Schema
error string
{
"error": "string"
}
Not Found
- application/json
- Schema
- Example (from schema)
Schema
error string
{
"error": "string"
}
Internal Server Error
- application/json
- Schema
- Example (from schema)
Schema
error string
{
"error": "string"
}
Loading...