# Cart

Below are the webhook store events paired with their respective data schema related to the [Store webhook events](https://docs.salla.dev/doc-421119):

## Abandoned Cart Webhook Events Model

This event is triggered when an abandoned cart has been created or updated.

<Tabs>
  <Tab title="Data Schema">


<DataSchema id="1307423" />
      
  </Tab>
  <Tab title="Example">
    
```
{
  "event": "abandoned.cart",
  "merchant": 1305146709,
  "created_at": "Tue Jan 21 2025 18:00:32 GMT+0300",
  "data": {
    "id": 1097962121,
    "total": {
      "amount": 100,
      "currency": "SAR"
    },
    "subtotal": {
      "amount": 60,
      "currency": "SAR"
    },
    "total_discount": {
      "amount": 10,
      "currency": "SAR"
    },
    "checkout_url": "https://salla.sa/dev-wofftr4xsra5xtlv/checkout/1097962121",
    "age_in_minutes": 83,
    "created_at": {
      "date": "2025-01-21 17:09:39.000000",
      "timezone_type": 3,
      "timezone": "Asia/Riyadh"
    },
    "updated_at": {
      "date": "2025-01-21 17:09:39.000000",
      "timezone_type": 3,
      "timezone": "Asia/Riyadh"
    },
    "customer": {
      "id": 225167971,
      "name": "User Name",
      "mobile": "+977612917082",
      "email": "customer@email.com",
      "avatar": "https://i.ibb.co/jyqRQfQ/avatar-male.webp",
      "country": "السعودية",
      "city": "الرياض"
    },
    "coupon": {
      "id": 2036833834,
      "code": "wizefriend",
      "status": "active",
      "type": "percentage",
      "amount": 20,
      "minimum_amount": 0,
      "expiry_date": "2025-04-13 00:00:00",
      "start_date": null,
      "created_at": "Tue Jan 21 2025 17:00:00 GMT+0300",
      "free_shipping": true
    },
    "items": [
      {
        "id": 1793843311,
        "product_id": 401511871,
        "quantity": 2
      },
      {
        "id": 239847784,
        "product_id": 64738276,
        "quantity": 1
      }
    ]
  }
}
```
      
  </Tab>
</Tabs>

## Abandoned Cart Status Changed Webhook Event Model

This event is triggered when an abandoned cart's status has been changed.

<Tabs>
  <Tab title="Data Schema">


<DataSchema id="3632393" />
      
  </Tab>
  <Tab title="Example">
    
```
{
  "event": "abandoned.cart.status.changed",
  "merchant": 935918575,
  "created_at": "Tue Mar 25 2025 11:59:37 GMT+0300",
  "data": {
    "id": 1305879817,
    "status": "purchased"
  }
}
```
      
  </Tab>
</Tabs>

## Abandoned Cart Purchased Webhook Event Model

This event is triggered when an abandoned cart has been purchased, where the status is set to `purchased`.

<Tabs>
  <Tab title="Data Schema">


<DataSchema id="3632400" />
      
  </Tab>
  <Tab title="Example">
    
```
{
  "event": "abandoned.cart.purchased",
  "merchant": 935918575,
  "created_at": "Tue Mar 25 2025 11:59:37 GMT+0300",
  "data": {
    "id": 1305879817,
    "status": "purchased",
    "currency": "SAR",
    "total": 34.99,
    "subtotal": 30.43,
    "total_discount": 0
  }
}
```
      
  </Tab>
</Tabs>



## Coupon Applied Webhook Event Model

This event is triggered when a coupon has been applied.

<Tabs>
  <Tab title="Data Schema">

<DataSchema id="1307411" />
      
  </Tab>
  <Tab title="Example">
    
```
{
  "event": "coupon.applied",
  "merchant": 847769313,
  "created_at": "Wed Jan 26 2022 22:38:30 GMT+0300",
  "data": {
    "cart": {
      "id": 746780865,
      "total": {
        "amount": 2910,
        "currency": "SAR"
      },
      "subtotal": {
        "amount": 3000,
        "currency": "SAR"
      },
      "total_discount": {
        "amount": 100,
        "currency": "SAR"
      },
      "checkout_url": "https://robbama.com/checkout/746780865",
      "age_in_minutes": 3517,
      "created_at": {
        "date": "2022-01-24 12:01:24.000000",
        "timezone_type": 3,
        "timezone": "Asia/Riyadh"
      },
      "updated_at": {
        "date": "2022-01-26 22:38:30.000000",
        "timezone_type": 3,
        "timezone": "Asia/Riyadh"
      },
      "customer": {
        "id": 1448307086,
        "name": "Nabil Mohammed",
        "mobile": "+251944130250",
        "avatar": "https://i.ibb.co/jyqRQfQ/avatar-male.webp",
        "country": "السعودية",
        "city": "جدة"
      },
      "coupon": {
        "id": 2036833834,
        "code": "wizefriend",
        "status": "active",
        "type": "percentage",
        "amount": {
          "amount": 20,
          "currency": "SAR"
        },
        "minimum_amount": {
          "amount": 0,
          "currency": "SAR"
        },
        "expiry_date": "2022-04-13 00:00:00",
        "created_at": {
          "date": "2022-01-24 13:47:47.000000",
          "timezone_type": 3,
          "timezone": "Asia/Riyadh"
        }
      },
      "items": [
        {
          "id": 2093591642,
          "product_id": 91502809,
          "quantity": 2
        }
      ]
    }
  }
}
```
      
  </Tab>
</Tabs>

