Update a video of an ad

PATCH /advertising/v1.0/ads/{adId}/videos/{videoId}

Endpoint for updating info about a single uploaded video.

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.

  • videoId string Required

    Id of a video. 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 video insert endpoint.

application/json

Body

Responses

PATCH /advertising/v1.0/ads/{adId}/videos/{videoId}
curl \
 -X PATCH http://apis.public-staging.reas.cz/advertising/v1.0/ads/63d9007e66fc41b2cd1057c6/videos/63d9007e66fc41b2cd1057c6 \
 -H "Authorization: Bearer $ACCESS_TOKEN" \
 -H "Content-Type: application/json" \
 -d '{"order":1}'
Request example
{
  "order": 1
}
Response examples (200)
{
  "success": true,
  "data": {
    "id": "string",
    "url": "string",
    "order": 42.0,
    "createdAt": "2024-05-04T09:42:00+00:00"
  }
}