Actions33
- Public Actions
- Public Admin Actions
- Reseller Actions
- Create New Team
- Get Team Information
- Update Team
- Remove Team From Reseller
- Update Team Avatar
- Create Team Bulk Inboxes And Users
- Get Team Users
- Add User To Team
- Remove Users From Team
- Get Team Inboxes
- Remove Team Inboxes
- Create Team Bulk Inboxes
- Assign Users To Inbox
- Remove Users From Inbox
- Get Team Whitelist Domains
- Create Team Whitelisted Domain
- Remove Team Whitelisted Domain
- Create Reseller
- Import Team Users
- Get Import Team Users Job Status
Overview
This node performs a search operation on public administrative resources. It allows users to query and retrieve a list of resources based on optional filtering parameters such as a search string, pagination skip count, and the number of results to return. This is useful in scenarios where you want to programmatically find and list public admin resources matching certain criteria, for example, searching for specific departments or services by name within an administrative system.
Properties
Name | Meaning |
---|---|
Additional Query Parameters | Optional parameters to refine the search: |
- Query | Search term to filter resources by name. |
- Skip | Number of items to skip (for pagination). |
- Take | Number of items to return (limit the result set size). |
Output
The node outputs JSON data containing the search results from the public admin resource endpoint. The structure typically includes an array of resource objects matching the search criteria. Each object represents a resource with its associated properties as returned by the API.
If binary data were involved, it would be summarized here, but this node focuses on JSON responses only.
Dependencies
- Requires an API key credential for authentication to access the external public admin resource API.
- The base URL for the API must be configured in the node credentials.
- The node uses standard HTTP headers for JSON content negotiation.
Troubleshooting
- Empty Results: If no resources are returned, verify that the query parameter is correctly specified and that the skip/take values are appropriate.
- Authentication Errors: Ensure the API key credential is valid and has sufficient permissions.
- API Connectivity Issues: Check network connectivity and the correctness of the base URL configuration.
- Invalid Parameter Values: Providing negative numbers for skip or take may cause errors; use non-negative integers.
Links and References
- No direct external links provided in the source code.
- Refer to the API documentation of the public admin resource service for detailed information on query parameters and response formats.