const securityCategories = await client.securityCategories.list({ sort: 'ASC' });{
"items": [
{
"name": "Guarded by vendor x",
"id": 123
}
],
"nextCursor": "<string>"
}Required capabilities:
securityCategoriesAcl:LIST
Retrieves a list of all security categories for a project.
const securityCategories = await client.securityCategories.list({ sort: 'ASC' });{
"items": [
{
"name": "Guarded by vendor x",
"id": 123
}
],
"nextCursor": "<string>"
}Access token issued by the CDF project's configured identity provider. Access token must be an OpenID Connect token, and the project must be configured to accept OpenID Connect tokens. Use a header key of 'Authorization' with a value of 'Bearer $accesstoken'. The token can be obtained through any flow supported by the identity provider.
Sort descending or ascending.
ASC, DESC Cursor to use for paging through results.
Return up to this many results. Maximum is 1000. Default is 25.
x <= 1000Was this page helpful?