Skip to content

API Self Service Categories

kandji-trent edited this page Jun 23, 2026 · 1 revision

Self Service Categories Resource

Methods

The resource wraps the /api/v1/self-service/categories endpoint and is read-only:

Method Description Returns
list() All Self Service categories list[SelfServiceCategoryPayload]

Payload model

Each SelfServiceCategoryPayload has:

Attribute Type Description
id str The category ID
name str The display name

List categories

with SelfServiceCategoriesResource(config) as categories:
    for category in categories.list():
        print(f"{category.id}  {category.name}")

See also

Clone this wiki locally