Update translation text for given key and language. Using this endpoint requires authorization.
PATCH Endpoint
https://api.simplelocalize.io/api/v1/translations
curl
--location
--request PATCH 'https://api.simplelocalize.io/api/v1/translations' \
--header 'X-SimpleLocalize-Token: <API_KEY>' \
--header 'Content-Type: application/json' \
--data-raw '{
"content": [
{
"key": "EXAMPLE_TRANSLATION_KEY",
"language": "en",
"text": "example text"
}
]
}'