Actions40
- Computer Actions
- Monitor Actions
- Printer Actions
- Network Equipment Actions
- Phone Actions
- Software Actions
- Peripheral Actions
- Software License Actions
Overview
This node interacts with the GLPI IT Service Management and Asset Tracking system to retrieve multiple software-related records. It supports fetching many software entries with options to filter, limit, and paginate results. This is useful for scenarios where users need to gather bulk software data from GLPI for reporting, auditing, or integration with other systems.
Use Case Examples
- Retrieve all software assets in the 'Assistance' category with a specific name pattern using an RSQL filter.
- Fetch a limited number of software records with pagination support to display in a dashboard.
- Get software data localized in a specific language or scoped to a particular GLPI entity.
Properties
| Name | Meaning |
|---|---|
| Category | The GLPI category to work with, such as IT Assets, Helpdesk, Administration, Management, or Dropdowns. |
| Return All | Whether to return all results or only up to a given limit. |
| Limit | Maximum number of results to return when 'Return All' is false. |
| Filters | Filters to apply on the results, including an RSQL filter string and a start index for pagination. |
| Options | Additional request options such as language, entity ID, and recursive entity application. |
Output
JSON
json- The JSON output contains the software records retrieved from GLPI. Each item represents a software entry with its associated data fields.
Dependencies
- GLPI OAuth2 API credentials for authentication including URL, client ID, client secret, username, and password.
Troubleshooting
- Common issues include invalid JSON in additional fields, which causes errors during request preparation. Ensure JSON syntax is correct.
- OAuth2 token request failures due to incorrect credentials or network issues. Verify credentials and network connectivity.
- Operation not found errors if the specified operation or resource is incorrect. Confirm the correct category, resource, and operation names.
Links
- GLPI Official Website - Official site for GLPI IT Service Management and Asset Tracking system.
- GLPI API Documentation - Documentation for GLPI API endpoints and usage.