TextMaster's Developer Documentation
HomeApp
  • Welcome!
  • Quick Start
    • Postman
    • OpenAPI
  • Overview
    • Resources in the REST API
    • Authentication
    • Troubleshooting
    • Filters
    • Workflow
    • File uploads
    • Loop
  • Guides
    • Integrator best practices
  • Apps
    • About OAuth Apps
    • Building OAuth Apps
      • Creating an OAuth App
      • Authorizing OAuth Apps
      • Scopes for OAuth Apps
    • Managing OAuth Apps
      • Modifying an OAuth App
      • Deleting an OAuth App
  • Webhooks & Events
    • Webhooks
      • Creating webhooks
      • Configuring your server for webhooks
      • Securing webhooks
      • Troubleshooting webhooks
    • Events
  • Integrations
    • Akeneo
      • Getting Started
      • Configuration
      • Usage
      • Monitoring
      • Troubleshooting
    • Salesforce Commerce Cloud
      • Getting Started
      • Configuration
      • Usage
      • Monitoring
      • Troubleshooting
  • Reference
    • Abilities
    • Authors
    • Documents
    • Categories
    • Countries
    • Expertises
    • Glossaries
    • Languages
    • Levels
    • Locales
    • Preferred Authors
    • Projects
    • Project Templates
    • Negotiated Contracts
    • Support Messages
    • Transactions
    • Uploads
    • Users
    • Work Templates
Powered by GitBook
On this page

Was this helpful?

  1. Reference

Locales

PreviousLevelsNextPreferred Authors

Last updated 1 year ago

Was this helpful?

List locales

Public endpoint to list all available locales supported by TextMaster.

Code samples

curl "https://api.textmaster.com/v1/public/locales"

List Locales

get
Responses
200
Lists locales
application/json
get
GET /v1/public/locales HTTP/1.1
Host: api.textmaster.com
Accept: */*
200

Lists locales

[
  {
    "code": "de",
    "name": "German",
    "active": true
  },
  {
    "code": "en",
    "name": "English (US)",
    "active": true
  },
  {
    "code": "en-GB",
    "name": "English (UK)",
    "active": true
  },
  {
    "code": "fr",
    "name": "Français",
    "active": true
  },
  {
    "code": "es",
    "name": "Spanish",
    "active": true
  },
  {
    "code": "it",
    "name": "Italian",
    "active": true
  },
  {
    "code": "nl",
    "name": "Dutch",
    "active": true
  },
  {
    "code": "pt",
    "name": "Portuguese",
    "active": true
  }
]
  • List locales
  • GETList Locales