-
Notifications
You must be signed in to change notification settings - Fork 0
API Self Service Categories
kandji-trent edited this page Jun 23, 2026
·
1 revision
The resource wraps the /api/v1/self-service/categories endpoint and is read-only:
| Method | Description | Returns |
|---|---|---|
list() |
All Self Service categories | list[SelfServiceCategoryPayload] |
Each SelfServiceCategoryPayload has:
| Attribute | Type | Description |
|---|---|---|
id |
str |
The category ID |
name |
str |
The display name |
with SelfServiceCategoriesResource(config) as categories:
for category in categories.list():
print(f"{category.id} {category.name}")- Custom Scripts and Custom Apps — use a category ID to show a resource in Self Service.
- Self Service — making scripts and apps available in Self Service from the CLI.
Getting Started
Working with Resources
- Populating Your Local Repository
- Editing Resources
- Self Service
- Pushing and Syncing
- Listing and Showing Resources
- Deleting Resources
- Blueprint Assignment
Reference
Python API Client