curl --request GET \
--url https://api.revolv3.com/api/Checkout/{checkoutUid} \
--header 'Authorization: Bearer <token>'{
"checkoutId": "12345678-ABCD-1234-EFGH-987654321000",
"checkoutStatus": "Pending",
"returnUrl": "https://mysite.com/order/12345678",
"completionDate": null,
"customer": {
"customerId": 328,
"firstName": "Joe",
"lastName": "Doe",
"email": "[email protected]"
},
"invoice": {
"invoiceId": 8786,
"invoiceStatus": "Paid",
"total": 10,
"billingDate": "2025-11-17T12:45:36.629883+01:00",
"paymentMethod": {
"paymentMethodId": 0,
"billingAddress": {
"addressId": 4232,
"addressLine1": "20 Bitterwater Street",
"addressLine2": null,
"city": "King City",
"state": "CA",
"postalCode": "11111",
"phoneNumber": "43823527092",
"email": "[email protected]",
"country": "US"
},
"billingFirstName": "Joe",
"billingLastName": "Doe",
"type": null,
"achDetails": null,
"creditCardDetails": {
"last4Digit": "1111",
"expirationDate": "11/11"
}
},
"invoiceAttempts": null
},
"checkoutLineItems": [
{
"name": "Checkout Line Item Name",
"description": "Checkout Line Item Description",
"value": 10,
"valueType": "Standard"
}
]
}Retrieves all available details about a specific checkout session using its unique identifier. This includes the customer information, transaction status, payment method used, transaction details. It is typically used after a checkout has been completed, allowing the merchant to verify the result of the payment process.
This endpoint is useful for confirming success/failure, displaying confirmation messages, or reconciling records in your system based on the outcome of the hosted checkout.
curl --request GET \
--url https://api.revolv3.com/api/Checkout/{checkoutUid} \
--header 'Authorization: Bearer <token>'{
"checkoutId": "12345678-ABCD-1234-EFGH-987654321000",
"checkoutStatus": "Pending",
"returnUrl": "https://mysite.com/order/12345678",
"completionDate": null,
"customer": {
"customerId": 328,
"firstName": "Joe",
"lastName": "Doe",
"email": "[email protected]"
},
"invoice": {
"invoiceId": 8786,
"invoiceStatus": "Paid",
"total": 10,
"billingDate": "2025-11-17T12:45:36.629883+01:00",
"paymentMethod": {
"paymentMethodId": 0,
"billingAddress": {
"addressId": 4232,
"addressLine1": "20 Bitterwater Street",
"addressLine2": null,
"city": "King City",
"state": "CA",
"postalCode": "11111",
"phoneNumber": "43823527092",
"email": "[email protected]",
"country": "US"
},
"billingFirstName": "Joe",
"billingLastName": "Doe",
"type": null,
"achDetails": null,
"creditCardDetails": {
"last4Digit": "1111",
"expirationDate": "11/11"
}
},
"invoiceAttempts": null
},
"checkoutLineItems": [
{
"name": "Checkout Line Item Name",
"description": "Checkout Line Item Description",
"value": 10,
"valueType": "Standard"
}
]
}Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
The checkout Uid
OK
Show child attributes
Show child attributes
Show child attributes
Show child attributes