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}}'

Params:

BASE-URL:


YOUR-ACCESS-TOKEN:

Access token provided by the endpoint mentioned on this documentation: [SDK Mobile] - Generate an API Token


uuid: The unique indentifier for the media item.

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