Checkouts
Retrieve a checkout session
Fetches information of a checkout session by its ID, including payment status.
-
Request Headers:
x-store-id(string, required): The store ID owning the checkout session.
-
Path Parameters:
id(string, required): Identifier of the checkout session.
-
Response: Details about the checkout session such as status, amount, and customer information.
Useful for verifying the result of a customer’s purchase and providing relevant order tracking details.
GET
Retrieve a checkout session
Authorizations
Path Parameters
Identifier of the checkout session.
Previous
Retrieve Customer Meter BalanceThis endpoint fetches the credit balance per meter for a specific customer. The `x-store-id` header is required for authentication to verify the customer's association with the store. The response includes detailed information about each meter, such as the meter ID, meter name, and the remaining credits available for usage.
- **Parameters:**
- `id` (string, path, required): The ID of the customer.
- **Responses:**
- `200`: Returns a list with customer's remaining credits per meter.
- `401`: Unauthorized if `x-store-id` is not provided.
- `404`: Customer not found if the customer ID does not exist.
Next
Retrieve a checkout session