curl --request PUT \
--url https://api.octaviatech.app/cms/articles/update \
--header 'Content-Type: application/json' \
--header 'x-api-key: <api-key>' \
--data '
{
"id": "{{objectId}}",
"mainTitle": {
"en": "Hello World (updated)",
"es": "Hola Mundo (actualizado)"
},
"tags": [
"news",
"ai",
"ml"
]
}
'