Get Media document by UUID
This method retrieves a media item by its unique identifier (UUID).
Curl command
curl --location --request GET '{{BASE-URL}}/api/media/{{uuid}}' \
--header 'Authorization: Bearer {{YOUR-ACCESS-TOKEN}}'
Response example:
{
"id": "{{uuid}}",
"url": "http://example.com/archivo.mp4",
"metadata": "Metadata test",
"tags": {
"tag1": "tag1",
"tag2": "tag2"
},
"type": "VIDEO",
"createdDate": "2024-10-09T12:47:17Z",
"title": "Example title",
"subAccountId": "00000000-0000-0000-0000-000000000000",
"includeInReport": true
}
Last updated