Overview#
Retrieve a paginated list of data tokens associated with your profile, with optional filtering by token attributes and metadata.List Data Tokens#
Endpoint: GET /data-token/list-data-tokensQuery Parameters#
| Parameter | Type | Required | Description |
|---|
page | integer | No | Page number for pagination |
perPage | integer | No | Number of tokens per page |
filters[meta.file.fileName] | string | No | Filter by file name |
filters[meta.file.extension] | string | No | Filter by file extension |
filters[meta.data.type] | string | No | Filter by data type |
filters[context] | string | No | Filter by context (path, namespace, or classification) |
filters[token] | string | No | Filter by specific token identifier |
Supported Filters#
meta.file.fileName - File name metadata
meta.file.extension - File extension metadata
meta.data.type - Data type classification
context - Organizational context
token - Specific token identifier
Use Case#
Use this endpoint to retrieve and browse all data tokens associated with your profile. Pagination supports efficient handling of large token collections, while filters enable querying specific subsets based on token attributes and metadata. This is useful for:Auditing all tokens in your profile
Building file browsing interfaces
Finding specific tokens by attributes
Managing token lifecycle across your application
The response includes token identifiers and configured metadata for each token.Only tokens belonging to your profile are returned
Filters operate on configured metadata - tokens without metadata may not match
Use pagination for profiles with large numbers of tokens
Combine multiple filters to narrow results