v1

latestOpenAPI 3.0.02026-08-04380104.3 KB
Relay Delivery

Request Redelivery

Request a redelivery for a cancelled or failed delivery. Requires a fee ID from the Get Redelivery Fee endpoint.

post/relay/redelivery

Request body

referencestring required

The reference of the original delivery to redeliver.

fee_idinteger required

The fee ID returned from the Get Redelivery Fee endpoint.

Example request

{
  "reference": "DEL-123456",
  "fee_id": 9021
}

Response

Redelivery requested successfully.

statusstring
messagestring

Example response

{
  "status": "success",
  "message": "Redelivery requested successfully",
  "data": {
    "id": 101,
    "reference": "DEL-123456",
    "redelivery_amount": 150000,
    "currency": "NGN"
  }
}