Skip to main content
GET
/
securitycategories
JavaScript SDK
const securityCategories = await client.securityCategories.list({ sort: 'ASC' });
{
  "items": [
    {
      "name": "Guarded by vendor x",
      "id": 123
    }
  ],
  "nextCursor": "<string>"
}

Authorizations

Authorization
string
header
required

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.

Query Parameters

sort
enum<string>
default:ASC

Sort descending or ascending.

Available options:
ASC,
DESC
cursor
string

Cursor to use for paging through results.

limit
integer<int32>
default:25

Return up to this many results. Maximum is 1000. Default is 25.

Required range: x <= 1000

Response

200 - application/json

A list of security categories.

A list of objects along with possible cursors to get the next page of results

items
object[]
required
nextCursor
string

Cursor to get the next page of results (if available).

Last modified on April 23, 2026