Get all custom phrases

GET /api/custom-phrases

Get all custom phrases for all languages.

Responses

  • 200 application/json

    An array of custom phrases.

    Hide response attributes Show response attributes object
  • Unauthorized

  • Forbidden

GET /api/custom-phrases
curl \
 -X GET https://[tenant_id].logto.app/api/custom-phrases \
 -H "Authorization: Bearer $ACCESS_TOKEN"
Response examples (200)
[
  {
    "tenantId": "string",
    "id": "string",
    "languageTag": "string",
    "translation": {
      "input": {
        "password": "Password",
        "username": "Username"
      },
      "action": {
        "sign_in": "Sign In",
        "continue": "Continue"
      }
    }
  }
]