Get all images of an ad

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

Endpoint for retrieving list of images attached to advertisement that belong to current user.

Path parameters

  • adId string Required

    Id of an advertisement

Responses

GET /advertising/v1.0/ads/{adId}/images/
curl \
 -X GET http://apis.public-staging.reas.cz/advertising/v1.0/ads/63d270ddc265e896e662a62c/images/ \
 -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",
      "thirdPartyId": "string"
    }
  ]
}