List organization translation files

View as MarkdownOpen in Claude
This paginated endpoint lists all the translation files that have been defined at the organization level. ### Usage notes This endpoint requires no parameters for basic requests but supports query parameters for pagination and response limit. #### Pagination This endpoint supports pagination, which lets you retrieve large sets of data in manageable segments. The response includes pagination details as follows: - hasMore: A boolean value indicating whether there are more pages of data available beyond the current page. - total: The total number of entries available across all pages. - nextPage: An identifier or token that you can use in a subsequent request to retrieve the next page of data. #### Example response for pagination { "hasMore": true, "total": 104, "nextPage": "50" } To request additional pages, include the `nextPage` option in your followup request according to the endpoint's parameter requirements. This process can be repeated until `nextPage` is `null`.

Authentication

AuthorizationBearer

OAuth authentication of the form <token>.

Query parameters

pagestringOptional
limitdoubleOptional

Response

The response body.
entrieslist of objects
Array of results returned by the endpoint
nextPagestring or null

Returns a string that can be used as the page parameter in the next request to fetch the next page of results. The last page of results returns null.

totaldouble
Total number of results. Useful to determine if there is a need to paginate.
hasMoreboolean

[Deprecated] Indicates whether more results are available.