v1

latestOpenAPI 3.0.02026-08-06363576.8 KB
Payment

Retry a failed Payment

If a Payment is in the failed state, you can retry it up to 4 times. Requires a secret key.

post/payments/{uuid}/retry/

Path parameters

uuidstring uuid required

Response

Successful operation

uuidstring uuid
amountstring
currencystring
descriptionstring
referencestring
state'failed' | 'settled' | 'pending' | 'retrying'
created_atstring date-time
updated_atstring date-time

Example response

[
  {
    "amount": "100.00",
    "currency": "USD",
    "state": "settled",
    "transactions": [
      {
        "amount": "6.99",
        "currency": "USD"
      }
    ]
  }
]