Publishing

Retry failed or successful bundles

Re-attempts sending bundles that were previously pushed but failed, partially failed, or succeeded but need re-synchronization. Supports bulk operations with per-bundle results.

post/api/v1/publishing/retry

Request body

bundleIdsstring[] required

List of bundle identifiers to retry

forcePushboolean

Force push to override existing content at endpoints. Automatically true for SUCCESS/SUCCESS_WITH_WARNINGS bundles.

deliveryStrategy'ALL_ENDPOINTS' | 'FAILED_ENDPOINTS'

Which endpoints to retry: ALL_ENDPOINTS sends to all, FAILED_ENDPOINTS sends only to previously failed endpoints. Case-sensitive: must be uppercase.

Example request

{
  "bundleIds": [
    "01KJWNJM2C67DM56GHBJ4S7B89",
    "01KJWNJM2C67DM56GHBJ4S7B90"
  ],
  "deliveryStrategy": "FAILED_ENDPOINTS"
}

Response

Retry operation completed (check individual results for success/failure)

i18nMessagesMapobject
permissionsstring[]

Example response

{
  "entity": [
    {
      "bundleId": "01HQXYZ123456789ABCDEFGHIJ",
      "success": true,
      "message": "Bundle successfully re-queued for publishing",
      "forcePush": true,
      "operation": "PUBLISH",
      "deliveryStrategy": "FAILED_ENDPOINTS",
      "assetCount": 47
    }
  ]
}

Changes

No recorded changes to this endpoint across all 1 revision of this API.