Creating multiple localizations with one Request?

Is it possible to create an entry with multiple localizations? I would like to create an entry with a request body something like this:

{
    "data": {
        "name": "TEST DE!",
        "locale": "de",
        "localizations": [
            {
                "name": "TEST EN!",
                "locale": "en"
            }
        ]
    }
}

Which should populate the attributes with its corresponding localizations. Is that possible or do I really need to send a different request for every localization I want to populate?

1 Like