Skip to content
TipPage Docs
Esc
navigateopen⌘Jpreview

Replay a media item from history

Re-queues a played media item (as a new queue entry with a fresh replay_... order id; fires media.created with is_replay set). A short idempotency window returns 409 if the same item was just replayed. Requires media:control.

POST/media/{orderId}/replay
Authorization
AuthorizationBearer token (tp_live_...) · headerrequired
A TipPage API key, created in Dashboard → Settings → Developer.
Path parameters
orderIdstringrequired
The media item's order id - the only external row reference.
Responses
200Done.
successboolean
401Missing or invalid API key (`missing_api_key` / `invalid_api_key`).
errorstringrequired
Human-readable message.
codestring
Machine-readable code (e.g. `missing_scope`, `not_in_queue`).
403The key lacks the required scope (`missing_scope`).
errorstringrequired
Human-readable message.
codestring
Machine-readable code (e.g. `missing_scope`, `not_in_queue`).
required_scopestring
404No such resource.
errorstringrequired
Human-readable message.
codestring
Machine-readable code (e.g. `missing_scope`, `not_in_queue`).
409Replayed too recently (idempotency window).
errorstringrequired
Human-readable message.
codestring
Machine-readable code (e.g. `missing_scope`, `not_in_queue`).
429Rate limit exceeded - check the `RateLimit-*` headers.
errorstring
Request
curl -X POST "https://api.tippage.com/v1/media/string/replay" \
  -H "Authorization: Bearer YOUR_TOKEN"
Response
{
  "success": true
}