Skip to main content
POST
/
tools
/
{tool_id}
/
test
Test Tool
curl --request POST \
  --url https://api.kallabot.com/tools/{tool_id}/test \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '{
  "date": "2024-01-15",
  "time": "14:30"
}'
{
  "success": true,
  "message": "<string>",
  "data": {
    "tool_id": "<string>",
    "tool_name": "<string>",
    "test_status": "<string>",
    "http_status": 123,
    "response_data": {},
    "request_url": "<string>",
    "request_method": "<string>",
    "test_params": {},
    "tested_at": "2023-11-07T05:31:56Z"
  }
}

Authorizations

Authorization
string
header
required

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

Path Parameters

tool_id
string
required

Body

application/json · object

Parameters to test the tool with - should match the tool's expected parameters

Response

Tool test completed

success
boolean
message
string
data
object