curl --request POST \
--url https://api.fourthwall.com/open-api/v1.0/promotions \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"code": "<string>",
"discount": {
"percentage": 123,
"shipping": "Excluded",
"type": "<string>",
"money": {
"value": 10,
"currency": "USD"
},
"freeShipping": true
},
"type": "<string>",
"codes": [
"<string>"
],
"requirements": {
"newMembersOnly": true,
"minimumOrderValue": {
"value": 10,
"currency": "USD"
}
},
"appliesToProducts": {
"productIds": [
"3c90c3cc-0d44-4b50-8888-8dd25736052a"
],
"oncePerOrder": true
},
"limits": {
"oneUsePerCustomer": true,
"maximumUse": 123
},
"subscriptionType": {
"type": "<string>"
},
"tiers": {
"type": "<string>"
}
}
'