Checkouts
List checkout sessions
Retrieve a paginated list of all checkout sessions for the store.
-
Request Headers:
x-store-id(string, required): The ID of the store making the request.
-
Query Parameters:
limit(integer, optional): Number of items per page.page(integer, optional): Page number to retrieve.status(string, optional): Filter by session status.
-
Response: A paginated list of checkout sessions with transaction details.
Helps in monitoring and analyzing checkout performance and customer behavior.
GET
List checkout sessions
Previous
Create a checkout sessionInitializes a new Blink checkout session and provides the checkout URL.
- **Request Headers:**
- `x-store-id` (string, required): The ID of the store creating the checkout.
- **Request Body:**
- `product_id` (string, required): Identifier of the product to checkout.
- `variant_id` (string, optional): Variant identifier if applicable.
- `customer_email` (string, optional): Customer's email address.
- ... (other checkout configurations)
- **Response:** A Blink checkout session object including the checkout URL.
Facilitates smooth customer transactions with Blink for easy payment processing.
Next
List checkout sessions