Skip to main content
GET
/
agent
/
transcript
/
tool
/
{tool_call_id}
Get Transcript Tool Call
curl --request GET \
  --url https://api.getoutbox.ai/agent/transcript/tool/{tool_call_id}/ \
  --header 'Authorization: Bearer <token>'
{
  "name": "<string>",
  "status": "<string>",
  "timestamp": "<string>",
  "input": "<string>",
  "output": "<string>"
}

Authorizations

Authorization
string
header
required

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

Headers

X-User-Timezone
string

Path Parameters

tool_call_id
string<uuid>
required

Response

200 - application/json
name
string
required
status
string
required
timestamp
string
required

Pre-formatted in X-User-Timezone.

input
string
required

Pretty-printed JSON of the tool input.

output
string
required

Pretty-printed JSON of the tool output.