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
    • id string Required

      Minimum length is 1, maximum length is 21.

    • languageTag string Required

      Minimum length is 1, maximum length is 16.

    • translation object Required
      Hide translation attribute Show translation attribute
  • 401

    Unauthorized

  • 403

    Forbidden

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