curl --location --request POST 'https://api.stateset.com/v1/carts/cart_0901f083-aa1c-43c5-af5c-0a9d2fc64e30/coupons' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data-raw '{
"code": "WELCOME10"
}'
{
"id": "cart_0901f083-aa1c-43c5-af5c-0a9d2fc64e30",
"object": "cart",
"customer_id": "cust_abc123",
"status": "active",
"items": [
{
"id": "ci_abc123",
"product_id": "prod_123",
"quantity": 3,
"unit_price": 9999,
"subtotal": 29997,
"discounts": [
{
"promotion_id": "promo_welcome10",
"code": "WELCOME10",
"amount": 2999,
"type": "percentage"
}
],
"final_price": 26997
},
{
"id": "ci_ghi789",
"product_id": "prod_789",
"quantity": 1,
"unit_price": 2499,
"subtotal": 2499,
"discounts": [
{
"promotion_id": "promo_welcome10",
"code": "WELCOME10",
"amount": 250,
"type": "percentage"
}
],
"final_price": 2249
}
],
"subtotal": 32496,
"discount_amount": 3249,
"tax_amount": 2268,
"shipping_amount": 599,
"total": 32114,
"applied_coupons": [
{
"code": "WELCOME10",
"promotion_id": "promo_welcome10",
"promotion_name": "Welcome 10% Off",
"discount_amount": 3249,
"applied_at": "2024-06-20T16:30:00Z"
}
],
"messages": [
{
"type": "success",
"message": "Coupon applied successfully. You saved $32.49!"
}
]
}
Apply a coupon or promotion code to the cart
curl --location --request POST 'https://api.stateset.com/v1/carts/cart_0901f083-aa1c-43c5-af5c-0a9d2fc64e30/coupons' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data-raw '{
"code": "WELCOME10"
}'
{
"id": "cart_0901f083-aa1c-43c5-af5c-0a9d2fc64e30",
"object": "cart",
"customer_id": "cust_abc123",
"status": "active",
"items": [
{
"id": "ci_abc123",
"product_id": "prod_123",
"quantity": 3,
"unit_price": 9999,
"subtotal": 29997,
"discounts": [
{
"promotion_id": "promo_welcome10",
"code": "WELCOME10",
"amount": 2999,
"type": "percentage"
}
],
"final_price": 26997
},
{
"id": "ci_ghi789",
"product_id": "prod_789",
"quantity": 1,
"unit_price": 2499,
"subtotal": 2499,
"discounts": [
{
"promotion_id": "promo_welcome10",
"code": "WELCOME10",
"amount": 250,
"type": "percentage"
}
],
"final_price": 2249
}
],
"subtotal": 32496,
"discount_amount": 3249,
"tax_amount": 2268,
"shipping_amount": 599,
"total": 32114,
"applied_coupons": [
{
"code": "WELCOME10",
"promotion_id": "promo_welcome10",
"promotion_name": "Welcome 10% Off",
"discount_amount": 3249,
"applied_at": "2024-06-20T16:30:00Z"
}
],
"messages": [
{
"type": "success",
"message": "Coupon applied successfully. You saved $32.49!"
}
]
}
carts:write
permissions.
Authorization: Bearer YOUR_API_KEY
curl --location --request POST 'https://api.stateset.com/v1/carts/cart_0901f083-aa1c-43c5-af5c-0a9d2fc64e30/coupons' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data-raw '{
"code": "WELCOME10"
}'
{
"id": "cart_0901f083-aa1c-43c5-af5c-0a9d2fc64e30",
"object": "cart",
"customer_id": "cust_abc123",
"status": "active",
"items": [
{
"id": "ci_abc123",
"product_id": "prod_123",
"quantity": 3,
"unit_price": 9999,
"subtotal": 29997,
"discounts": [
{
"promotion_id": "promo_welcome10",
"code": "WELCOME10",
"amount": 2999,
"type": "percentage"
}
],
"final_price": 26997
},
{
"id": "ci_ghi789",
"product_id": "prod_789",
"quantity": 1,
"unit_price": 2499,
"subtotal": 2499,
"discounts": [
{
"promotion_id": "promo_welcome10",
"code": "WELCOME10",
"amount": 250,
"type": "percentage"
}
],
"final_price": 2249
}
],
"subtotal": 32496,
"discount_amount": 3249,
"tax_amount": 2268,
"shipping_amount": 599,
"total": 32114,
"applied_coupons": [
{
"code": "WELCOME10",
"promotion_id": "promo_welcome10",
"promotion_name": "Welcome 10% Off",
"discount_amount": 3249,
"applied_at": "2024-06-20T16:30:00Z"
}
],
"messages": [
{
"type": "success",
"message": "Coupon applied successfully. You saved $32.49!"
}
]
}