Appearance
Get recording metadata
GET
/recordings/{recordingId}
Retrieve all metadata key-value pairs for a recording. This endpoint can be accessed via either Bearer token authentication or presigned URL authentication.
Authorizations
Private API Key
Bearer token for authentication. Use your private API key as the token.
TypeHTTP (bearer)
Example
"Bearer ak_1Q6AX5B5218353Q1AQNF2129YH5VAH02"or
Signature|Expires|KeyId + +
Signature
Signature for authentication. Use your presigned URL as the query parameters.
TypeAPI Key (query: signature)
Expires
Expiration timestamp (UNIX seconds)
TypeAPI Key (query: expires)
KeyId
Signing key identifier
TypeAPI Key (query: keyId)
Parameters
Path Parameters
recordingId*
The recording ID
Typestring
RequiredExample
"000e8400-e00b-00d0-a716-446655440000"Format
"uuid"Responses
Successfully retrieved recording metadata
application/json
JSON
[
{
"key": "userId",
"value": "user-123",
"timestamp": 1234567890,
"version": 1
}
]