# Get tokens List all tokens in the generic scope. Endpoint: GET /api/generic/tokens Version: 1.0 Security: APIKey, AdminToken ## Query parameters: - `schema_id` (string) Filter the tokens by their schema, referenced by this schema ID. - `limit` (integer) The limit parameter defines the maximum number of rows returned in a single call and enables consecutive pagination using the next link provided in the response payload. ## Response 200 fields (application/json): - `data` (array, required) Example: [{"id":"8744c9ea-a02b-4ae6-875c-b64fc333e3ef","created_at":"2023-10-01T12:00:00Z"}] - `data.id` (string, required) - `data.created_at` (string, required) - `data.expires_at` (string) - `data.metadata` (object) Metadata consisting of entries, each of which each includes a key and an associated value: * Maximum 20 key-value pairs. * Maximum 20 characters per key. * Maximum 80 characters per value. Example: {"my_key_one":"my_value_one","my_key_two":"my_value_two"} - `links` (object, required) Example: {"next":"https://my-cluster-id.on-hellgate.cloud/generic/tokens?after=8744c9ea-a02b-4ae6-875c-b64fc333e3ef&limit=20"} - `links.next` (string, required) Example: "https://my-cluster-id.on-hellgate.cloud/generic/tokens?after=8744c9ea-a02b-4ae6-875c-b64fc333e3ef&limit=20" ## Response 401 fields (application/json): - `code` (integer) The corresponding HTTP status code for the error - `classifier` (string) Technical code that helps to identify the error - `message` (string) Human readable representation of the error ## Response 403 fields (application/json): - `code` (integer) The corresponding HTTP status code for the error - `classifier` (string) Technical code that helps to identify the error - `message` (string) Human readable representation of the error