requestId, the associated delivery driver, and the retry configuration based on the original request.
Base path:
/paper-channel-private/v1/b2bThis is an internal API. It is not exposed publicly and requires network-level access to the private Paper Channel service.Check PC retry
GET /paper-channel-private/v1/b2b/pc-retry/{requestId}
Verifies whether a retry opportunity exists for the delivery request identified by requestId. When a retry is available, the response includes the new requestId to use for the next attempt, along with the parent request identifier and the assigned delivery driver.
This endpoint is called by the ProxyCON996MessageHandler and related retry handlers when processing error events such as CON996.
Path parameters
The identifier of the paper delivery request to check for retry.
- Minimum length: 5
- Maximum length: 100
Query parameters
Set to
true when called in response to a CON996 event (rasterization retry). Set to false for all other retry scenarios.This flag controls whether the retry logic checks for rasterization eligibility in addition to standard retry rules.Responses
| Status | Meaning |
|---|---|
200 | Retry information resolved successfully. |
404 | No delivery request found for the given requestId. |
500 | Internal server error. |
200 response — PcRetryResponse
The new
requestId generated for the retry attempt, if a retry is available. Use this value to submit the next prepare or send request.The
requestId of the original request from which this retry was generated.The identifier of the delivery driver assigned to the retry attempt.
Internal retry configuration string used to drive the retry logic.
true if a valid retry opportunity was found for the request. false if no further retries are available.