Delete an image of an ad

DELETE /advertising/v1.0/ads/{adId}/images/{imageId}

Endpoint for deleting images by provided id.

Path parameters

  • adId string Required

    Id of an advertisement. It is either id that was provided in the response of the insert endpoint or it can be thirdPartyId, if it has been provided in the request body of the advertisement insert endpoint.

  • imageId string Required

    Id of an image. It is either id that was provided in the response of the insert endpoint or it can be thirdPartyId, if it has been provided in the request body of the image insert endpoint.

Responses

  • 200 application/json

    Image successfully deleted

    Hide response attribute Show response attribute object
    • success boolean Required
  • 404

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

DELETE /advertising/v1.0/ads/{adId}/images/{imageId}
curl \
 --request DELETE 'http://apis.reas.cz/advertising/v1.0/ads/63d9007e66fc41b2cd1057c6/images/63d9007e66fc41b2cd1057c6' \
 --header "Authorization: Bearer $ACCESS_TOKEN"
Response examples (200)
{
  "success": true
}