Get all videos of an ad

GET /advertising/v1.0/ads/{adId}/videos/

Endpoint for fetching info about uploaded videos of advertisement that belong to current user.

Path parameters

  • adId string Required

    Id of an advertisement

Responses

  • 200 application/json

    Videos successfully retrieved

    Hide response attributes Show response attributes object
    • success boolean Required
    • data array[object]
      Hide data attributes Show data attributes object
      • id string Required
      • url string Required
      • order number(float)
      • createdAt string(date-time) Required
  • 404

    Related advertisement does not exist or the video does not exist.

GET /advertising/v1.0/ads/{adId}/videos/
curl \
 --request GET 'http://apis.public-staging.reas.cz/advertising/v1.0/ads/63d270ddc265e896e662a62c/videos/' \
 --header "Authorization: Bearer $ACCESS_TOKEN"
Response examples (200)
{
  "success": true,
  "data": [
    {
      "id": "string",
      "url": "string",
      "order": 42.0,
      "createdAt": "2025-05-04T09:42:00Z"
    }
  ]
}