List Share Tokens Endpoint
const url = 'https://example.com/admin/share-tokens/?skip=0&limit=50&sort=map_name&order=asc';const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
try { const response = await fetch(url, options); const data = await response.json(); console.log(data);} catch (error) { console.error(error);}curl --request GET \ --url 'https://example.com/admin/share-tokens/?skip=0&limit=50&sort=map_name&order=asc' \ --header 'Authorization: Bearer <token>'List basic share-token inventory with map info; no quotas or domain controls (admin only).
sort and order are closed enums, so an unrecognised value is refused
with a 422 and never reaches the query.
Authorizations
Section titled “Authorizations ”Parameters
Section titled “ Parameters ”Query Parameters
Section titled “Query Parameters ”Column to order by. Link status is not sortable: it is derived from is_active and expires_at after the query returns.
Column to order by. Link status is not sortable: it is derived from is_active and expires_at after the query returns.
Sort direction.
Sort direction.
Responses
Section titled “ Responses ”Successful Response
object
object
Example
{ "tokens": [ { "embed_token_count": 0 } ]}Bad request — invalid query parameters or payload
Unauthorized — missing or invalid credentials
Forbidden — caller lacks access to this resource
Not found
Validation error
Too many requests — retry after the advertised interval
Headers
Section titled “Headers ”Seconds until the request may be retried
Internal server error
Service unavailable — the database could not serve the request