Managing items with shared SKU identifiers
Learn how to add multiple items that share the same SKU identifier to a Checkout or Invoice.
Setting different prices
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer <API_key>' \
--header 'Content-Type: text/plain' \
--data-raw '
{
"currency": "USD",
"customerId": "987654321",
"items": [
{
"skuId": "05081978",
"price": 100.00,
"quantity": 1
},
{
"skuId": "05081978",
"price": 90.00,
"quantity": 1,
"discount":
{
"percentOff": 10
}
}
]
}'Handling multiple subscription requests
Last updated