PUT/v1/translations/board

Update translations board

Not yet documented — no summary in the API source.

RequiresAuthorization: Bearer sk_...tenant_id

Request body application/json

array of objectTranslationBoardRow
sourcestringnullable
entityIdstringnullable
fieldstringnullable
baseTextstringnullable
businessUnitstringnullable
pageIdstringnullable
pageNamestringnullable
formIdstringnullable
translationsobjectnullable
{key}stringnullable

Responses

No response body.

curl --request PUT \
  --url 'https://api.4comply.io/v1/translations/board' \
  --header 'Authorization: Bearer sk_...' \
  --header 'tenant_id: your-tenant-id' \
  --header 'Content-Type: application/json' \
  --data '[
  {
    "source": "string",
    "entityId": "00000000-0000-0000-0000-000000000000",
    "field": "string",
    "baseText": "string",
    "businessUnit": "string",
    "pageId": "00000000-0000-0000-0000-000000000000",
    "pageName": "Example name",
    "formId": "00000000-0000-0000-0000-000000000000",
    "translations": {
      "en": "string"
    }
  }
]'