get /records/{id} - gets a single record resource
| Parameter | Parameter Type | Data Type |
|---|---|---|
| api-key | header | string Required |
| Authorization | header | string Required |
invalid HTTP_API_KEYNot authenticated200 - Success401 - Unauthorized actioncurl --request GET \
--url 'https://api-dev.radiozu.ro/v1/recordings/3?include=show' \
--header 'Authorization: Bearer AUTH_TOKEN' \
--header 'accept: application/json' \
--header 'api-key: API_KEY'
A single record object. One record object can be described by:
id - show idtitle - show name, stringdescription - nullable, stringtag - nullable, stringaudioUrl - nullable, stringduration - nullable, integerimage - nullable|empty string, stringpublished_at - stringshow - one show object.One show object is described by:
id - show idtitle - show name, stringdescription - nullable, stringdetails - nullable, stringimage - nullable, string{
"data": {
"id": 3,
"title": "Popescu si Cuza alt episod",
"description": "alt textalt textalt textalt textalt textalt textalt textalt textalt textalt textalt textalt textalt textalt textalt textalt textalt textalt textalt textalt textalt textalt textalt textalt textalt text",
"tag": "Popescu si Cuza",
"audioUrl": "https:\/\/cms.digitalag.ro\/cms_websites\/cms_radiozu\/library\/audio\/2022\/08\/PC20220303.mp3",
"duration": 4740,
"image": "https:\/\/cms.digitalag.ro\/cms_websites\/cms_radiozu\/library\/img\/2009\/03\/siglazu-one-radio.jpg",
"published_at": "2022-08-01 15:18:00",
"show": {
"id": 14,
"title": "Popescu și Cuza",
"description": "Să înceapă veselia cu Popescu și Cuza",
"details": "De luni până vineri, de la 16 la 18",
"image": "https:\/\/cms.digitalag.ro\/cms_websites\/cms_radiozu\/popescucuzashow.jpg"
}
}
}