tools/:toolId
GET/v1/tools/:toolId
Get more information about a specific tool.
Request
Path Parameters
toolId stringrequired
Responses
- 200
- 401
- 404
200
Response Headers
Connection
string
Content-Length
string
Date
string
ETag
string
Keep-Alive
string
X-Powered-By
string
X-RateLimit-Limit
string
X-RateLimit-Remaining
string
X-RateLimit-Reset
string
- application/json
- Schema
- Example (from schema)
- 200
Schema
app_id string
assets_count string
connected boolean
created_at string
has_monitoring boolean
has_observability boolean
has_security boolean
id string
name string
tool_type string
{
"app_id": "452a3494-7a2b-11ee-b864-ded718713e39",
"assets_count": "0",
"connected": true,
"created_at": "2023-11-03T17:21:49.000Z",
"has_monitoring": false,
"has_observability": true,
"has_security": false,
"id": "daaa859c-7a75-11ee-8e67-ded718713e39",
"name": "My Team",
"tool_type": "make"
}
{
"app_id": "452a3494-7a2b-11ee-b864-ded718713e39",
"assets_count": "0",
"connected": true,
"created_at": "2023-11-03T17:21:49.000Z",
"has_monitoring": false,
"has_observability": true,
"has_security": false,
"id": "daaa859c-7a75-11ee-8e67-ded718713e39",
"name": "My Team",
"tool_type": "make"
}
401
Response Headers
Connection
string
Content-Length
string
Date
string
ETag
string
Keep-Alive
string
X-Powered-By
string
- application/json
- Schema
- Example (from schema)
- 401
Schema
message string
status number
{
"message": "Unauthorized",
"status": 401
}
{
"message": "Unauthorized",
"status": 401
}
404
Response Headers
Connection
string
Content-Length
string
Date
string
ETag
string
Keep-Alive
string
X-Powered-By
string
X-RateLimit-Limit
string
X-RateLimit-Remaining
string
X-RateLimit-Reset
string
- application/json
- Schema
- Example (from schema)
- 404
Schema
message string
status number
{
"message": "Tool not found",
"status": 404
}
{
"message": "Tool not found",
"status": 404
}
Loading...