curl --request GET \
--url https://api.revolv3.com/api/Checkout/{checkoutUid}
{
"checkoutId": "12345678-ABCD-1234-EFGH-987654321000",
"checkoutStatus": "Pending",
"returnUrl": "https://mysite.com/order/12345678",
"completionDate": null,
"customer": {
"customerId": 328,
"firstName": "Joe",
"lastName": "Doe",
"email": "aa@aa.com"
},
"invoice": {
"invoiceId": 8786,
"invoiceStatus": "Paid",
"total": 10,
"billingDate": "2025-09-08T14:50:26.8124152+02:00",
"paymentMethod": {
"paymentMethodId": 0,
"billingAddress": {
"addressId": 4232,
"addressLine1": "20 Bitterwater Street",
"addressLine2": null,
"city": "King City",
"state": "CA",
"postalCode": "11111",
"phoneNumber": "43823527092",
"email": "aa@aa.com",
"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"
}
]
}
Retrieve a complete checkout information (specified with Checkout ID) with a status code of 200 (OK).
If the checkout ID cannot be associated with a checkout, a status code of 404 will be returned.
curl --request GET \
--url https://api.revolv3.com/api/Checkout/{checkoutUid}
{
"checkoutId": "12345678-ABCD-1234-EFGH-987654321000",
"checkoutStatus": "Pending",
"returnUrl": "https://mysite.com/order/12345678",
"completionDate": null,
"customer": {
"customerId": 328,
"firstName": "Joe",
"lastName": "Doe",
"email": "aa@aa.com"
},
"invoice": {
"invoiceId": 8786,
"invoiceStatus": "Paid",
"total": 10,
"billingDate": "2025-09-08T14:50:26.8124152+02:00",
"paymentMethod": {
"paymentMethodId": 0,
"billingAddress": {
"addressId": 4232,
"addressLine1": "20 Bitterwater Street",
"addressLine2": null,
"city": "King City",
"state": "CA",
"postalCode": "11111",
"phoneNumber": "43823527092",
"email": "aa@aa.com",
"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"
}
]
}
The checkout Uid
OK
The response is of type object
.