Glossary
Manage custom terms translations used by the translation feature.
Was this helpful?
Manage custom terms translations used by the translation feature.
Was this helpful?
Was this helpful?
Define terms and specify their translations for different languages to ensure consistent wording.
The unique id of the organization
Identifier of the page results to fetch.
The number of results per page
OK
OK
No content
{
"object": "glossary-entry",
"id": "text",
"translations": {
"ANY_ADDITIONAL_PROPERTY": "text"
},
"createdAt": "2025-08-26T22:07:16.661Z",
"updatedAt": "2025-08-26T22:07:16.661Z",
"urls": {
"location": "https://example.com"
}
}
GET /v1/orgs/{organizationId}/translations-glossary HTTP/1.1
Host: api.gitbook.com
Authorization: Bearer YOUR_SECRET_TOKEN
Accept: */*
{
"next": {
"page": "text"
},
"count": 1,
"items": [
{
"object": "glossary-entry",
"id": "text",
"translations": {
"ANY_ADDITIONAL_PROPERTY": "text"
},
"createdAt": "2025-08-26T22:07:16.661Z",
"updatedAt": "2025-08-26T22:07:16.661Z",
"urls": {
"location": "https://example.com"
}
}
]
}
PUT /v1/orgs/{organizationId}/translations-glossary HTTP/1.1
Host: api.gitbook.com
Authorization: Bearer YOUR_SECRET_TOKEN
Content-Type: application/json
Accept: */*
Content-Length: 84
{
"operations": [
{
"type": "insert",
"translations": {
"ANY_ADDITIONAL_PROPERTY": "text"
}
}
]
}
GET /v1/orgs/{organizationId}/translations-glossary/{glossaryEntryId} HTTP/1.1
Host: api.gitbook.com
Authorization: Bearer YOUR_SECRET_TOKEN
Accept: */*
{
"object": "glossary-entry",
"id": "text",
"translations": {
"ANY_ADDITIONAL_PROPERTY": "text"
},
"createdAt": "2025-08-26T22:07:16.661Z",
"updatedAt": "2025-08-26T22:07:16.661Z",
"urls": {
"location": "https://example.com"
}
}