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

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