Translation

Update contexts for keys within a project type

Assigns custom context strings to the provided keys that belong to the given project type.

POST
/api/v2/keys/context-update

Authorization

BearerAuthObject
AuthorizationBearer <token>

In: header

Request Body

application/json

TypeScript Definitions

Use the request body type in TypeScript.

Response Body

application/json

curl -X POST "https://example.com/api/v2/keys/context-update" \  -H "Content-Type: application/json" \  -d '{    "projectTypeId": 42,    "keys": {      "Auth.Login.Title": "Visible on the login page header",      "Dashboard.Info.Balance": "Displayed near total balance card"    }  }'
{  "message": "ok"}
Empty
Empty
Empty
Empty