Returns a list of all call recordings for the specified assistant.
Authorizations
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
Path Parameters
curl --request GET \
--url 'https://api.unify.ai/v0/assistant/<assistant_id>/recordings' \
--header "Authorization: Bearer $UNIFY_KEY"
{
"info": [
{
"id": 123,
"url": "https://storage.example.com/recordings/call_123.mp3",
"created_at": "2025-05-08T14:30:00Z"
},
{
"id": 124,
"url": "https://storage.example.com/recordings/call_124.mp3",
"created_at": "2025-05-09T10:15:00Z"
}
]
}