For AI agents: a documentation index is available at the root level at /llms.txt. Append /llms.txt to any URL for a page-level index, or .md for the markdown version of any page.
This endpoint performs a payment capture for the full value of the payment plan.
<Note title="Note">
This operation is [idempotent](/idempotent-requests) based on the token, which allows for the safe retry of requests, guaranteeing the payment operation is only performed once.
Since the idempotency of this endpoint is based on the `token`, the inclusion of a `requestId` is not required.
</Note>
## Approved Response (201)
If payment is approved by Clearpay, returns a [Payment object](/payment-object) in response, with a `status` of "APPROVED".
## Declined Response (201)
If payment is declined by Clearpay, for example, if invalid card details were entered, returns a [Payment object](/payment-object) in response, with a `status` of "DECLINED".
Please advise the consumer to contact the Clearpay Customer Service team for more information.
## Connection Timeouts
- Open timeout: 10 seconds
- Read timeout: 70 seconds
## Errors
In addition to the [PUT/POST Errors](/put-post-errors) applicable to all POST endpoints, the following errors are specific to Capture Full Payment:
| HTTP Status Code | errorCode | Description |
| :-- | :-- | :-- |
| **402** <br />Payment Required | `invalid_token` | The checkout token is invalid, expired, or does not exist. |
| **412** <br />Precondition Failed | `invalid_order_transaction_status` | The Consumer has not confirmed their payment for the order associated with this token. |
| **422** <br />Unprocessable Entity | `invalid_object` | The checkout token was missing or empty. |
Authentication
AuthorizationBasic
Basic authentication of the form Basic <base64(username:password)>.
The merchant’s order id/reference that this payment corresponds to. This will update any value previously provided in the Create Checkout request.
Response
Payment Approved or Declined - Returns a Payment object
idstring
The unique, permanent, Clearpay-generated Order ID.
tokenstring
Checkout token that was used to complete payment.
statusenum
An order status of "APPROVED" or "DECLINED".
Allowed values:
createdstringformat: "date-time"
The UTC timestamp of when the payment was completed, in ISO 8601 format.
originalAmountobject
openToCaptureAmountobject
paymentStateenum
Current state for capturing payments.
merchantReferencestring
The merchant’s order id/reference that this payment corresponds to.
refundslist of objects
An array of refunds. Note: in response to a Capture Full Payment call, this array will always be empty, since refunds cannot occur until payment is captured.
orderDetailsobject
eventslist of objects
One or more payment events that have occurred against the order.
Errors
400
Bad Request Error
401
Unauthorized Error
402
Payment Required Error
405
Method Not Allowed Error
406
Not Acceptable Error
412
Precondition Failed Error
415
Unsupported Media Type Error
422
Unprocessable Entity Error
500
Internal Server Error
This endpoint performs a payment capture for the full value of the payment plan.
Note
This operation is idempotent based on the token, which allows for the safe retry of requests, guaranteeing the payment operation is only performed once.
Since the idempotency of this endpoint is based on the token, the inclusion of a requestId is not required.
Approved Response (201)
If payment is approved by Clearpay, returns a Payment object in response, with a status of “APPROVED”.
Declined Response (201)
If payment is declined by Clearpay, for example, if invalid card details were entered, returns a Payment object in response, with a status of “DECLINED”.
Please advise the consumer to contact the Clearpay Customer Service team for more information.
Connection Timeouts
Open timeout: 10 seconds
Read timeout: 70 seconds
Errors
In addition to the PUT/POST Errors applicable to all POST endpoints, the following errors are specific to Capture Full Payment:
HTTP Status Code
errorCode
Description
402 Payment Required
invalid_token
The checkout token is invalid, expired, or does not exist.
412 Precondition Failed
invalid_order_transaction_status
The Consumer has not confirmed their payment for the order associated with this token.