Transifex · Example Payload

Project Webhook

LocalizationTranslationi18nl10nLanguageContent ManagementWorkflow Automation

Project Webhook is an example object payload from Transifex, with 1 top-level field. It illustrates the shape of data this provider's APIs accept or return.

Top-level fields

data

Example Payload

Raw ↑
{
  "data": {
    "type": "project_webhooks",
    "attributes": {
      "url": "https://myapp.com/webhooks/transifex",
      "secret": "my-webhook-secret-key",
      "events": [
        "translation_completed",
        "translation_reviewed",
        "resource_created"
      ],
      "active": true
    },
    "relationships": {
      "project": {
        "data": {
          "type": "projects",
          "id": "o:mycompany:p:my-app-localization"
        }
      }
    }
  }
}