AvantGuard - WebhookSite icon

AvantGuard - WebhookSite

AvantGuard - WebhookSite

Actions100

Overview

This node operation retrieves a list of assets associated with a specific company identified by its Company Id. It is useful in scenarios where you need to fetch asset information tied to a particular company, such as inventory management, asset tracking, or reporting on company resources.

For example, if you manage multiple companies and want to get all assets belonging to one company for auditing or integration with other systems, this operation provides a straightforward way to query that data.

Properties

Name Meaning
Company Id The identifier of the requested parent Company (required).
Additional Query Parameters Optional parameters to refine the query results:
- Page The current page of results to retrieve (pagination).
- Archived Set to true to only show archived assets; false to exclude them.
- Page Size The number of results to return per page (pagination size).

Output

The output will be a JSON array containing asset objects related to the specified company. Each asset object includes details about an individual asset. The exact structure depends on the API response but typically includes fields like asset ID, name, status, and other metadata.

No binary data output is indicated for this operation.

Dependencies

  • Requires an API key credential for authentication to the external service managing the assets.
  • The node uses a base URL configured in credentials to connect to the API endpoint.
  • Pagination and filtering are supported via query parameters.

Troubleshooting

  • Missing or invalid Company Id: Ensure the Company Id is provided and valid; otherwise, the API may return errors or empty results.
  • API authentication errors: Verify that the API key or authentication token is correctly configured in the node credentials.
  • Pagination issues: If too many results are returned or none appear, check the Page and Page Size parameters to control result sets properly.
  • Archived filter confusion: Setting Archived to true returns only archived assets; setting it to false or omitting it returns active assets. Misconfiguration can lead to unexpected results.

Links and References

  • Refer to the external API documentation for detailed information on the assets endpoint, including available fields and pagination behavior.
  • n8n documentation on using collection-type input properties and pagination handling.

Discussion