Visibility: public · internal ( OpenAPI Custom Extension: x-visibility )
List credentials for a service account. Only tenant administrators can access this endpoint. The client_secret is never included in list responses.
Bearer token authentication using OAuth2/OIDC tokens
Service account resource identifier.
Filter credentials by status.
active, expired Opaque cursor token returned in the previous response's nextPageToken. Pass to retrieve the next page of results.
Use for: Frequently updated resources (sessions, servers, clusters, API keys, instances, networks, addresses) where cursor pagination prevents items from being skipped or duplicated when the dataset changes between requests.
Mutually exclusive with offset — include one or the other, not both.
Maximum number of items to return per page. Applies to both cursor-based and offset-based pagination.
Range: 1–500. Default: 50.
1 <= x <= 500Number of items to skip before returning results.
Use for: Stable resources that change infrequently (roles, organizations, providers, policies, groups, projects) where offset pagination enables page-number UIs and total-count displays.
When using offset, the response includes a total field with the full item count. Mutually exclusive with pageToken — include one or the other, not both.
x >= 0Paginated list of credentials.
Cursor token for retrieving the next page. Pass as pageToken in the next request. Absent when there are no more results.
Only returned in cursor mode (pageToken-based requests). Not returned when using offset-based pagination.
Total number of items matching the query, regardless of pageSize. Use to compute page counts and display 'showing X–Y of Z' UI.
Only populated in offset mode (offset-based requests). Omitted or null in cursor mode. Requires a COUNT(*) query on the backend — avoid relying on this field in performance-critical paths for large datasets.