itglue_list_organizations
Retrieve and filter client organizations from IT Glue to access configurations, contacts, passwords, and documentation with pagination and sorting options.
Instructions
List organizations in IT Glue with optional filtering and pagination.
Organizations represent client companies in IT Glue. Each organization contains configurations, contacts, passwords, and other documentation.
Args:
page (number): Page number, starting from 1 (default: 1)
page_size (number): Items per page, max 1000 (default: 50)
name (string): Filter by organization name (partial match)
organization_type_id (number): Filter by organization type
organization_status_id (number): Filter by status (Active, Inactive, etc.)
psa_id (string): Filter by PSA integration ID
sort (string): Sort field - name, id, updated_at, created_at
sort_direction (string): asc or desc
response_format (string): 'markdown' or 'json'
Returns: List of organizations with IDs, names, types, statuses, and IT Glue URLs.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| page | No | Page number (1-indexed) | |
| page_size | No | Number of items per page (max 1000) | |
| response_format | No | Output format: 'markdown' for human-readable or 'json' for structured data | markdown |
| name | No | Filter by name (partial match supported) | |
| organization_type_id | No | Filter by organization type ID | |
| organization_status_id | No | Filter by organization status ID | |
| psa_id | No | Filter by PSA integration ID | |
| sort | No | Field to sort by | name |
| sort_direction | No | Sort direction: asc (ascending) or desc (descending) | asc |