Documentation
    Documentation
    • Introduction
    • Webhook
    • Integrations
      • REST Integration
      • Nodejs
      • Wordpress
    • Create Checkout Session
      POST
    • Schemas
      • webhooks
        • Webhook | Order Created
        • Webhook | Order Abandoned
        • Webhook | Order Refunded
        • Webhook | Order Failed
      • Cart Session Request
      • Cart Session Response

    Cart Session Request

    {
        "cartObject": {
            "store": {
                "name": "string",
                "url": "string",
                "logo": "string",
                "platformUuid": "string"
            },
            "cart": {
                "currency": "string",
                "country": "string",
                "items": [
                    {
                        "title": "string",
                        "description": "string",
                        "price": 0,
                        "sku": "string",
                        "productId": "string",
                        "variantId": "string",
                        "url": "string",
                        "image": "string",
                        "quantity": 0,
                        "variantOptions": [
                            "string"
                        ],
                        "zeroPay": true
                    }
                ],
                "extra": {
                    "meta_data1": "string"
                },
                "merchantUrls": {
                    "successUrl": "string",
                    "failureUrl": "string"
                }
            }
        }
    }
    Built with