List all recordings
List all recordings
Query Parameters
page integer
Default value: 1
The page number to retrieve
perPage integer
Default value: 10
The number of items per page
Responses
- 200
- 401
- 500
Successfully retrieved the recording(s)
application/json
Schema
Example (from schema)
Schema
- Array [
- ]
data object[]
id string
The unique id of the recording
name string
The name of the recording
description string nullable
The description of the recording
playUrl uri
The url to the audio stream of the recording
date date-time
The date and time the recording was created
duration number
The duration of the recording in seconds
meta object
pagination object
totalItems integer
The number of items in the collection
totalPages integer
The number of pages in the collection
currentPage integer
The current page
perPage integer
Possible values: >= 1
and <= 50
The number of items per page
links object
self uri
The url to the first page
first uri
The url to the first page
last uri
The url to the last page
previous uri nullable
The url to the previous page
next uri nullable
The url to the next page
{
"data": [
{
"id": "654367fa9ee46392f4b84247",
"name": "My recording",
"description": "This is a description of the recording",
"playUrl": "https://api.rinkel.com/recordings/64a7e70f76d3cccf86d47d42/stream",
"date": "2020-01-01T12:00:00.000Z",
"duration": 60
}
],
"meta": {
"pagination": {
"totalItems": 100,
"totalPages": 10,
"currentPage": 1,
"perPage": 10
},
"links": {
"self": "https://api.rinkel.com/users?page=1",
"first": "https://api.rinkel.com/users?page=1",
"last": "https://api.rinkel.com/users?page=10",
"previous": null,
"next": "https://api.rinkel.com/users?page=2"
}
}
}
Unauthorized
Internal Server Error
Loading...