Agent tools
/agent-tools
Agent tools
/agent-tools
Create new agent tool.
POST
/
api
/
v1
/
agent-tools
curl --location --request POST 'https://api.rapidagent.ai/api/v1/agent-tools' \
--header 'Content-Type: application/json' \
--header 'Autorization: Bearer <token>'
--data-raw '{
"agentId": "<AGENT_ID>",
"toolId": "<TOOL_ID>"
}'
{
"success": true,
"data": {
"user": {},
"agent": {},
"agentId": "",
"tool": {},
"toolId": ""
}
}
Body
A valid Tool
ID.
A valid Agent
ID.
Response
Indicates whether the call was successful.
Agent tool object
curl --location --request POST 'https://api.rapidagent.ai/api/v1/agent-tools' \
--header 'Content-Type: application/json' \
--header 'Autorization: Bearer <token>'
--data-raw '{
"agentId": "<AGENT_ID>",
"toolId": "<TOOL_ID>"
}'
{
"success": true,
"data": {
"user": {},
"agent": {},
"agentId": "",
"tool": {},
"toolId": ""
}
}
curl --location --request POST 'https://api.rapidagent.ai/api/v1/agent-tools' \
--header 'Content-Type: application/json' \
--header 'Autorization: Bearer <token>'
--data-raw '{
"agentId": "<AGENT_ID>",
"toolId": "<TOOL_ID>"
}'
{
"success": true,
"data": {
"user": {},
"agent": {},
"agentId": "",
"tool": {},
"toolId": ""
}
}