Update Recording
Update metadata for an existing recording.
PATCH
https://api.identitycall.com/api/v1/public/recordings/:idUpdate the display name of a recording.
Requires write permission
Path Parameters
Parameters
| Name | Type | Required | Default | Description |
|---|---|---|---|---|
id | integer | Yes | - | Recording ID |
Request Body
Body Parameters (application/json)
| Name | Type | Required | Default | Description |
|---|---|---|---|---|
display_name | string | No | - | New display name |
Request
cURL
curl -X PATCH "https://api.identitycall.com/api/v1/public/recordings/123" \
-H "Authorization: Bearer $IDENTITYCALL_API_KEY" \
-H "Content-Type: application/json" \
-d '{"display_name": "Q1 Sales Call - Updated"}'Response
Response200 OK
{
"data": {
"id": 123,
"name": "Q1 Sales Call - Updated",
"status": "completed",
"language": "en",
"duration_ms": 185000,
"created_at": "2025-01-15T10:30:00Z",
"updated_at": "2025-01-15T15:45:00Z",
"dialogues_count": 24,
"goals_evaluated": true,
"keywords_detected": 8,
"pauses_detected": 3,
"audio_attached": true
}
}Errors
| Status | Error | Description |
|---|---|---|
| 404 | ”Resource not found” | Recording doesn’t exist |
| 422 | Validation errors | Invalid field values |