Skip to content

Instantly share code, notes, and snippets.

@ksob
Last active October 25, 2019 17:55
Show Gist options
  • Save ksob/a3d6342b0df28cc13d6ceed07e2d52f5 to your computer and use it in GitHub Desktop.
Save ksob/a3d6342b0df28cc13d6ceed07e2d52f5 to your computer and use it in GitHub Desktop.
Creating order via api
curl --request POST \
--url https://api.bigcommerce.com/stores/8pfocjmdoi/v3/carts \
--header 'accept: application/json' \
--header 'content-type: application/json' \
--header 'x-auth-client: fqun713qjaikqq4iedgzlcobgggfpo6' \
--header 'x-auth-token: 47e0daxu5b2lz6eh0kixsrjy4bgyuwp' \
--data '{"line_items":[{"quantity":1,"product_id":1140}]}'
#Response:
#{"data":{"id":"7166d55d-7da3-4d58-b710-5e15f6d3f962","customer_id":0,"channel_id":1,"email":"","currency":{"code":"USD"},"tax_included":false,"base_amount":1,"discount_amount":0,"cart_amount":1,"coupons":[],"line_items":{"physical_items":[{"id":"2ee606e3-edf7-495b-b82c-8cea9cc1f5e3","parent_id":null,"variant_id":109699,"product_id":1140,"sku":"11-TEST-PART","name":"11-TEST-PART TEST PART","url":"https:\/\/tracksnteeth.us\/11-test-part-test-part\/","quantity":1,"taxable":true,"image_url":"https:\/\/cdn11.bigcommerce.com\/s-8pfocjmdoi\/products\/1140\/images\/1097\/undercarriage-410e81315ff05ac9a327389bfaa0600be885c5dcc5e1a7be8c285c157cbd5617__43886.1561477293.220.290.png?c=2","discounts":[],"coupons":[],"discount_amount":0,"coupon_amount":0,"list_price":1,"sale_price":1,"extended_list_price":1,"extended_sale_price":1,"is_require_shipping":true}],"digital_items":[],"gift_certificates":[],"custom_items":[]},"created_time":"2019-10-11T13:23:54+00:00","updated_time":"2019-10-11T13:23:54+00:00"},"meta":{}}
https://primesource.tracksnteeth.us/cart.php?action=load&id=831931e9-e240-4cdc-b31b-f316bdd625a4&token=87f0d63b2e4585ce289a7047bc3f8d8531ef3dae0f2a2fed716577488e105e10
curl --request GET \
--url https://api.bigcommerce.com/stores/8pfocjmdoi/v3/carts/831931e9-e240-4cdc-b31b-f316bdd625a4 \
--header 'accept: application/json' \
--header 'content-type: application/json' \
--header 'x-auth-client: fqun713qjaikqq4iedgzlcobgggfpo6' \
--header 'x-auth-token: 47e0daxu5b2lz6eh0kixsrjy4bgyuwp'
https://primesource.tracksnteeth.us/cart.php?action=load&id=f580522e-cc6a-4dc4-a456-e466a71dd1dd&token=c5ff6936658c669650f0cb465a586e508df66d5466f6ab0bf5e059b53549da42
curl --request GET \
--url https://api.bigcommerce.com/stores/8pfocjmdoi/v3/checkouts/f580522e-cc6a-4dc4-a456-e466a71dd1dd \
--header 'accept: application/json' \
--header 'content-type: application/json' \
--header 'x-auth-client: fqun713qjaikqq4iedgzlcobgggfpo6' \
--header 'x-auth-token: 47e0daxu5b2lz6eh0kixsrjy4bgyuwp'
curl --request GET \
--url https://api.bigcommerce.com/stores/8pfocjmdoi/v3/checkouts/7166d55d-7da3-4d58-b710-5e15f6d3f962 \
--header 'accept: application/json' \
--header 'content-type: application/json' \
--header 'x-auth-client: fqun713qjaikqq4iedgzlcobgggfpo6' \
--header 'x-auth-token: 47e0daxu5b2lz6eh0kixsrjy4bgyuwp'
#Response:
#
#{"data":{"id":"7166d55d-7da3-4d58-b710-5e15f6d3f962","cart":{"id":"7166d55d-7da3-4d58-b710-5e15f6d3f962","customer_id":0,"channel_id":1,"email":"","currency":{"code":"USD"},"base_amount":1,"discount_amount":0,"cart_amount_inc_tax":1,"cart_amount_ex_tax":1,"coupons":[],"discounts":[{"id":"2ee606e3-edf7-495b-b82c-8cea9cc1f5e3","discounted_amount":0}],"line_items":{"physical_items":[{"id":"2ee606e3-edf7-495b-b82c-8cea9cc1f5e3","parent_id":null,"variant_id":109699,"product_id":1140,"sku":"11-TEST-PART","name":"11-TEST-PART TEST PART","url":"https:\/\/tracksnteeth.us\/11-test-part-test-part\/","quantity":1,"is_taxable":true,"image_url":"https:\/\/cdn11.bigcommerce.com\/s-8pfocjmdoi\/products\/1140\/images\/1097\/undercarriage-410e81315ff05ac9a327389bfaa0600be885c5dcc5e1a7be8c285c157cbd5617__43886.1561477293.220.290.png?c=2","discounts":[],"coupons":[],"discount_amount":0,"coupon_amount":0,"list_price":1,"sale_price":1,"extended_list_price":1,"extended_sale_price":1,"is_require_shipping":true,"gift_wrapping":null}],"digital_items":[],"gift_certificates":[],"custom_items":[]},"created_time":"2019-10-11T13:23:54+00:00","updated_time":"2019-10-11T13:23:54+00:00"},"billing_address":{},"consignments":[],"taxes":[{"name":"Tax","amount":0}],"coupons":[],"order_id":null,"shipping_cost_total_inc_tax":0,"shipping_cost_total_ex_tax":0,"handling_cost_total_inc_tax":0,"handling_cost_total_ex_tax":0,"tax_total":0,"subtotal_inc_tax":1,"subtotal_ex_tax":1,"grand_total":1,"created_time":"2019-10-11T13:23:54+00:00","updated_time":"2019-10-11T13:23:54+00:00","customer_message":""},"meta":{}}
curl --request POST \
--url https://api.bigcommerce.com/stores/8pfocjmdoi/v3/checkouts/7166d55d-7da3-4d58-b710-5e15f6d3f962/billing-address \
--header 'accept: application/json' \
--header 'content-type: application/json' \
--header 'x-auth-client: fqun713qjaikqq4iedgzlcobgggfpo6' \
--header 'x-auth-token: 47e0daxu5b2lz6eh0kixsrjy4bgyuwp' \
--data '{"first_name":"Jane","last_name":"Doe","email":"jane@email.com","address1":"PO Box 34628","address2":"","city":"Seattle","state_or_province":"Washington","state_or_province_code":"WA","country_code":"US","postal_code":"98124","phone":"1234567890"}'
#Response:
#
{"data":{"id":"7166d55d-7da3-4d58-b710-5e15f6d3f962","cart":{"id":"7166d55d-7da3-4d58-b710-5e15f6d3f962","customer_id":0,"channel_id":1,"email":"jane@email.com","currency":{"code":"USD"},"base_amount":1,"discount_amount":0,"cart_amount_inc_tax":1,"cart_amount_ex_tax":1,"coupons":[],"discounts":[{"id":"2ee606e3-edf7-495b-b82c-8cea9cc1f5e3","discounted_amount":0}],"line_items":{"physical_items":[{"id":"2ee606e3-edf7-495b-b82c-8cea9cc1f5e3","parent_id":null,"variant_id":109699,"product_id":1140,"sku":"11-TEST-PART","name":"11-TEST-PART TEST PART","url":"https:\/\/tracksnteeth.us\/11-test-part-test-part\/","quantity":1,"is_taxable":true,"image_url":"https:\/\/cdn11.bigcommerce.com\/s-8pfocjmdoi\/products\/1140\/images\/1097\/undercarriage-410e81315ff05ac9a327389bfaa0600be885c5dcc5e1a7be8c285c157cbd5617__43886.1561477293.220.290.png?c=2","discounts":[],"coupons":[],"discount_amount":0,"coupon_amount":0,"list_price":1,"sale_price":1,"extended_list_price":1,"extended_sale_price":1,"is_require_shipping":true,"gift_wrapping":null}],"digital_items":[],"gift_certificates":[],"custom_items":[]},"created_time":"2019-10-11T13:23:54+00:00","updated_time":"2019-10-11T13:31:07+00:00"},"billing_address":{"id":"5da0841b100b3","first_name":"Jane","last_name":"Doe","email":"jane@email.com","company":"","address1":"PO Box 34628","address2":"","city":"Seattle","state_or_province":"Washington","state_or_province_code":"WA","country":"United States","country_code":"US","postal_code":"98124","phone":"1234567890","custom_fields":[]},"consignments":[],"taxes":[{"name":"Tax","amount":0}],"coupons":[],"order_id":null,"shipping_cost_total_inc_tax":0,"shipping_cost_total_ex_tax":0,"handling_cost_total_inc_tax":0,"handling_cost_total_ex_tax":0,"tax_total":0,"subtotal_inc_tax":1,"subtotal_ex_tax":1,"grand_total":1,"created_time":"2019-10-11T13:23:54+00:00","updated_time":"2019-10-11T13:31:07+00:00","customer_message":""},"meta":{}}
curl --request POST \
--url 'https://api.bigcommerce.com/stores/8pfocjmdoi/v3/checkouts/7166d55d-7da3-4d58-b710-5e15f6d3f962/consignments?include=consignments.available_shipping_options' \
--header 'accept: application/json' \
--header 'content-type: application/json' \
--header 'x-auth-client: fqun713qjaikqq4iedgzlcobgggfpo6' \
--header 'x-auth-token: 47e0daxu5b2lz6eh0kixsrjy4bgyuwp' \
--data '[{"shipping_address":{"email":"jane2@email.com","country_code":"US","first_name":"BigCommerce","last_name":"Cart/Checkout","address1":"PO Box 34628","city":"Seattle","state_or_province":"Washington","state_or_province_code":"WA","country_code":"US","postal_code":"98124","phone":"1234567890","custom_fields":[{"field_id":"field_25","field_value":"Great!"}]},"line_items":[{"item_id":"59bfc90e-6404-462d-ab61-971da5a28113","quantity":1}]}]'
curl --request PUT \
--url https://api.bigcommerce.com/stores/8pfocjmdoi/v3/checkouts/7166d55d-7da3-4d58-b710-5e15f6d3f962/consignments/5d9e7ec41c1ea \
--header 'accept: application/json' \
--header 'content-type: application/json' \
--header 'x-auth-client: fqun713qjaikqq4iedgzlcobgggfpo6' \
--header 'x-auth-token: 47e0daxu5b2lz6eh0kixsrjy4bgyuwp' \
--data '{"shipping_option_id":"b11f9d34385ff57c5421042d91463c6f"}'
curl --request POST \
--url https://api.bigcommerce.com/stores/8pfocjmdoi/v3/checkouts/7166d55d-7da3-4d58-b710-5e15f6d3f962/orders \
--header 'accept: application/json' \
--header 'content-type: application/json' \
--header 'x-auth-client: fqun713qjaikqq4iedgzlcobgggfpo6' \
--header 'x-auth-token: 47e0daxu5b2lz6eh0kixsrjy4bgyuwp'
curl --request GET \
--url https://api.bigcommerce.com/stores/8pfocjmdoi/v2/orders/100007206 \
--header 'accept: application/json' \
--header 'content-type: application/json' \
--header 'x-auth-client: fqun713qjaikqq4iedgzlcobgggfpo6' \
--header 'x-auth-token: 47e0daxu5b2lz6eh0kixsrjy4bgyuwp' \
--data '{}'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment