Checkout

Category: Store Base URL: /store/carts Authentication: Mixed Routes: 3 routes documented

Overview

This section documents 3 API routes for checkout.

Quick Reference

Method Endpoint Description
POST /store/carts/:id/batch-update No description
POST /store/carts/:id/line-item-bundles No description
DELETE /store/carts/:id/line-item-bundles/:bundle_id No description

POST Store Carts :id Batch-update

Endpoint: POST /store/carts/:id/batch-update Authentication: Customer (Optional)

URL Parameters

Parameter Type Required Description
id string Yes Id identifier

Request Body

// Request body structure (to be documented)

Response

Success:

// Response structure (to be documented)

Example Request

curl -X POST 'https://your-store.omnicart.cc/store/carts/:id/batch-update' \
  -H 'Content-Type: application/json'

POST Store Carts :id Line-item-bundles

Endpoint: POST /store/carts/:id/line-item-bundles Authentication: Customer (Optional)

URL Parameters

Parameter Type Required Description
id string Yes Id identifier

Request Body

// Request body structure (to be documented)

Response

Success:

// Response structure (to be documented)

Example Request

curl -X POST 'https://your-store.omnicart.cc/store/carts/:id/line-item-bundles' \
  -H 'Content-Type: application/json'

DELETE Store Carts :id Line-item-bundles :bundle_id

Endpoint: DELETE /store/carts/:id/line-item-bundles/:bundle_id Authentication: Customer (Optional)

URL Parameters

Parameter Type Required Description
id string Yes Id identifier
bundle_id string Yes Bundle_id identifier

Response

Success:

// Response structure (to be documented)

Example Request

curl -X DELETE 'https://your-store.omnicart.cc/store/carts/:id/line-item-bundles/:bundle_id' \
  -H 'Content-Type: application/json'