Skip to main content
POST
/
v1
/
senders
/
{senderId}
/
agent
/
tools
/
{toolId}
/
test
Test tool
curl --request POST \
  --url https://api.zavu.dev/v1/senders/{senderId}/agent/tools/{toolId}/test \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "testParams": {
    "order_id": "ORD-12345"
  }
}
'
{
  "scheduled": true
}

Authorizations

Authorization
string
header
required

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

Path Parameters

senderId
string
required
toolId
string
required

Body

application/json
testParams
object
required

Parameters to pass to the tool for testing.

Response

Test scheduled.

scheduled
boolean
required