Skip to main content
GET
/
v1
/
recordings
/
{recordingId}
cURL
curl --request GET \
  --url https://api.claap.io/v1/recordings/{recordingId} \
  --header 'X-Claap-Key: <api-key>'
{
  "result": {
    "recording": {
      "channel": {
        "id": "<string>",
        "name": "<string>"
      },
      "createdAt": "<string>",
      "id": "<string>",
      "recorder": {
        "attended": true,
        "email": "<string>",
        "id": "<string>",
        "name": "<string>"
      },
      "state": "Empty",
      "title": "<string>",
      "upload": {
        "url": "<string>"
      },
      "url": "<string>",
      "workspace": {
        "id": "<string>",
        "name": "<string>"
      }
    }
  }
}
The shape of the response depends of the state of the recording: Empty, Uploaded, Ready or Failed.

Authorizations

X-Claap-Key
string
header
required

Path Parameters

recordingId
string
required

Recording identifier

Response

200 - application/json

Recording was successfully retrieved

result
object
required