Skip to main content
POST
/
test_framework
/
v1
/
aiagents
/
{agent_id}
/
tool
/
{tool_name}
cURL
curl --request POST \
  --url https://api.cekura.ai/test_framework/v1/aiagents/{agent_id}/tool/{tool_name}/ \
  --header 'Content-Type: application/json' \
  --header 'X-CEKURA-API-KEY: <api-key>' \
  --data '{
  "user_id": 1
}'
{
  "name": "John Doe",
  "age": 30,
  "email": "[email protected]"
}

Authorizations

X-CEKURA-API-KEY
string
header
required

API Key Authentication. It should be included in the header of each request.

Path Parameters

agent_id
string
required
tool_name
string
required

Body

user_id
integer
default:1

Response

200 - application/json
name
string
default:John Doe
age
integer
default:30
email
string<email>