Glossaries

List glossaries

OAuth: This endpoint requires one of the following scopes: glossary:manage, glossary:read or glossary:write.

List Glossaries

GEThttps://api.textmaster.com/v1/clients/glossaries
Authorization
Query parameters
Response

Lists glossaries

Body
namestring
language_codesarray of string
created_atstring
file_urlstring
user_idstring
idstring
typestring
linksobject
relationshipsobject
Request
const response = await fetch('https://api.textmaster.com/v1/clients/glossaries', {
    method: 'GET',
    headers: {},
});
const data = await response.json();
Response
[
  {
    "name": "text",
    "language_codes": [
      "text"
    ],
    "created_at": "text",
    "file_url": "text",
    "user_id": "text",
    "id": "text",
    "type": "text",
    "links": {
      "self": "text"
    },
    "relationships": {
      "glossary_holders": {
        "links": {
          "self": "text",
          "related": "text"
        }
      }
    }
  }
]

Code samples

curl -G "https://api.textmaster.com/v1/clients/glossaries" \
  --data-urlencode "filter=all" \
  -H "Authorization: Bearer 6aa131e7cd6a037c8e955fa5e3231bd8e201bb4218644aa8a28125769e1b91a1"

Last updated