itglue_list_passwords
Retrieve and filter passwords stored in IT Glue with options to sort, paginate, and display values when authorized.
Instructions
List passwords in IT Glue with optional filtering.
NOTE: Password access requires the API key to have "Password Access" enabled. If your key doesn't have this permission, you'll receive a 403 error.
Args:
page (number): Page number (default: 1)
page_size (number): Items per page (default: 50)
organization_id (number): Filter by organization
name (string): Filter by name (partial match)
password_category_id (number): Filter by category
url (string): Filter by URL
archived (boolean): Filter by archived status
show_password (boolean): Include actual password values (default: false)
response_format (string): 'markdown' or 'json'
Returns: List of passwords (without actual values unless show_password is true).
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 |
| organization_id | No | Filter by organization ID | |
| name | No | Filter by name (partial match supported) | |
| password_category_id | No | Filter by password category ID | |
| url | No | Filter by URL (partial match) | |
| archived | No | Filter by archived status | |
| sort | No | Field to sort by | name |
| sort_direction | No | Sort direction: asc (ascending) or desc (descending) | asc |
| show_password | No | Include actual password values in response (requires password access permission) |