Tools
Returns a list of tools for a use case id
Calls
- GETGet Calls
- GETGet Call
- GETGet Transcript
- GETGet current page
- GETList Call tags
- GETReturn a pre-signed URL to the call recording
- GETReturn the logs for a call
- GETGet the usage for the given organization
- POSTStop Call
- POSTCancel Call
- POSTAdd a note to a call
- POSTTrigger async export of calls CSV to requester email
- PATCHUpdate a note on a call
- PATCHSet call as viewed by the user making the request
- PATCHSet call rating
- DELDelete a note from a call
- DELDelete a call
Dial
Orgs
Numbers
Usecases
Agents
Tools
Returns a list of tools for a use case id
GET
/
tools
/
{id}
curl --request GET \
--url https://app.happyrobot.ai/api/v1/tools/{id} \
--header 'authorization: <authorization>'
[
{
"id": "<string>",
"use_case_id": "<string>",
"organization_id": "<string>",
"type": "Endpoint",
"name": "<string>",
"description": "<string>",
"default": false,
"generate_filler_message": true,
"data": {},
"prompt_id": "<string>",
"filler_type": "none",
"filler_description": "<string>",
"filler_example": "<string>",
"position": {
"x": 0,
"y": 0
}
}
]
Headers
Your API key for authentication. Use Bearer format.
Example:
"Bearer API_KEY"
Path Parameters
Required string length:
24
Query Parameters
Response
200
application/json
200
The response is of type object[]
.
Was this page helpful?
curl --request GET \
--url https://app.happyrobot.ai/api/v1/tools/{id} \
--header 'authorization: <authorization>'
[
{
"id": "<string>",
"use_case_id": "<string>",
"organization_id": "<string>",
"type": "Endpoint",
"name": "<string>",
"description": "<string>",
"default": false,
"generate_filler_message": true,
"data": {},
"prompt_id": "<string>",
"filler_type": "none",
"filler_description": "<string>",
"filler_example": "<string>",
"position": {
"x": 0,
"y": 0
}
}
]