SimpleLocalize · Example Payload

Simplelocalize Create Translation Example

Example request and response for creating or updating a translation string

LocalizationTranslationInternationalization

Simplelocalize Create Translation Example is an example object payload from SimpleLocalize, with 4 top-level fields. It illustrates the shape of data this provider's APIs accept or return.

Top-level fields

titledescriptionrequestresponse

Example Payload

Raw ↑
{
  "title": "Create Translation Example",
  "description": "Example request and response for creating or updating a translation string",
  "request": {
    "method": "POST",
    "url": "https://api.simplelocalize.io/api/v1/translations",
    "headers": {
      "X-SimpleLocalize-Token": "your-api-key-here",
      "Content-Type": "application/json"
    },
    "body": {
      "key": "checkout.button.submit",
      "namespace": "ecommerce",
      "language": "fr",
      "text": "Confirmer la commande"
    }
  },
  "response": {
    "status": 200,
    "body": {
      "status": 200,
      "message": "OK",
      "data": {
        "key": "checkout.button.submit",
        "namespace": "ecommerce",
        "language": "fr",
        "text": "Confirmer la commande",
        "reviewStatus": "NOT_REVIEWED",
        "customerId": null,
        "modifiedAt": "2026-05-02T12:00:00Z"
      }
    }
  }
}