Skip to main content
GET
/
v1
/
agents
/
{agent_id}
/
calls
/
{call_id}
/
recording
Get recording URL
curl --request GET \
  --url https://api.agents.slng.ai/v1/agents/{agent_id}/calls/{call_id}/recording \
  --header 'Authorization: Bearer <token>'
{
  "url": "<string>",
  "expires_in": 3600
}

Authorizations

Authorization
string
header
required

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

Path Parameters

agent_id
string<uuid>
required

Voice agent ID.

Example:

"550e8400-e29b-41d4-a716-446655440000"

call_id
string<uuid>
required

Call ID.

Example:

"550e8400-e29b-41d4-a716-446655440000"

Response

Temporary recording URL.

url
string<uri>
required
expires_in
integer
required
Required range: x >= 1
Example:

3600