List all Checkouts
Returns a list of your Checkouts. The Checkouts are returned sorted by creation date, with the most recently created Checkouts appearing first.
Parameters
Returns
- A dictionary with a data property that contains an array of up to 20 Checkouts. Each entry in the array is a separate Checkout object. The response includes additional attributes which describe the remaining Checkouts available to retrieve, as well as alinkshash which describes the locations for the retrieval of additional resources.
Have any questions or feedback?
or join us on Discord
GET
/v1/checkouts
1curl https://api.priceblocs.com/v1/checkouts \2-H "Authorization: Bearer {{API_KEY_SECRET_TEST}}"
Response
1{2"object": "list",3"url": "/v1/checkouts",4"has_more": true,5"data": {6"id": "07c432bf-cf5e-4900-a230-4e6de93d2bda",7"session_id": "cs_test_a1GuW4bP52ni9Si7PNx28wFi0Swi5sXR0tkKzaunIMIpp2nHAn5JGGaOwM",8"status": "started",9"line_items": [10{11"price": "price_123",12"product": "prod_123",13"currency": "usd",14"quantity": 1,15"recurring": null16}17],18"form_data": [19[20{21"uid": "input",22"label": "User input",23"value": "The field value at the time of form submission."24}25]26],27"amount_total": 4750,28"amount_tax": 250,29"amount_discount": 5000,30"amount_subtotal": 7500,31"mode": "subscription",32"customer": null,33"email": null,34"currency": "usd",35"livemode": false,36"object": "checkout",37"subscription_id": null,38"payment_intent_id": "pi_123",39"client_reference_id": null,40"payment_link_id": "fbbfeb9a-be9b-4658-80ad-cdb47ff86fc3",41"payment_link_short_id": "YEZWSa8LjqGN5aPER7-Lw",42"page_id": null,43"route": null,44"ip": "127.0.0.1",45"os": "Mac OS X 10.15.7",46"origin": "https://priceblocs.com",47"browser": "Chrome",48"user_agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.131 Safari/537.36",49"device": "Other 0.0.0",50"device_version": "0.0.0",51"fulfillment": null,52"payment_type": "one_time",53"automatic_tax": false,54"tax_id_collection": false,55"payment_status": "unpaid",56"payment_intent_capture_method": "automatic",57"shipping_options": [58{59"shipping_rate": "shr_123"60},61{62"shipping_rate": "shr_456"63}64],65"shipping_rate": "shr_456",66"tax_rates": "txr_123",67"coupons": "Ab8u1Zli",68"promotion_codes": null,69"trial_period_days": 14,70"metadata": null,71"adjustable_quantity_enabled": true,72"recovery_enabled": false,73"recovered_from": null,74"created": 1628958666,75"updated": 162895866676},77"page": 1,78"page_size": 20,79"total": 198,80"links": {81"self": {82"page": "1",83"rel": "self",84"url": "https://api.priceblocs.com/v1/checkouts?page=1"85},86"first": {87"page": "1",88"rel": "first",89"url": "https://api.priceblocs.com/v1/checkouts?page=1"90},91"last": {92"page": "10",93"rel": "last",94"url": "https://api.priceblocs.com/v1/checkouts?page=10"95},96"next": {97"page": "2",98"rel": "next",99"url": "https://api.priceblocs.com/v1/checkouts?page=2"100}101}102}