curl --request POST \
--url https://api.dittowords.com/v2/components \
--header 'Authorization: <api-key>' \
--header 'Content-Type: application/json' \
--data '
{
"components": [
{
"text": "Hello world",
"name": "Component One"
},
{
"developerId": "custom-id",
"text": "Custom ID example",
"name": "Custom Component",
"notes": "For the homepage CTA",
"characterLimit": 80
},
{
"text": "In folder",
"name": "Folder Component",
"folderId": "my-folder-id"
},
{
"text": "{{count}} items in your cart",
"name": "Cart Count",
"variables": [
"count"
],
"plurals": [
{
"form": "one",
"text": "{{count}} item in your cart"
},
{
"form": "other",
"text": "{{count}} items in your cart"
}
]
},
{
"text": "Hello world",
"name": "Localized Component",
"variants": [
{
"variantId": "french",
"text": "Bonjour le monde"
}
]
}
]
}
'