Actions64
- Archive Item Actions
- Article Actions
- Assessment Actions
- Catalog Actions
- Catalog Question Actions
- Company Actions
- Course Actions
- Course Enrollment Actions
- Domain Actions
- Endpoint Actions
- Flexible Asset Actions
- Flexible Asset Type Actions
- Media Actions
- Service Actions
- Service Install Actions
- Token Actions
- User Actions
Overview
This node interacts with the Cloud Radial API to retrieve multiple Endpoint resources based on OData query options. It is useful for scenarios where users need to fetch a list of endpoints with filtering, selection, ordering, and pagination capabilities. For example, a user can retrieve the top 50 endpoints filtered by a specific condition, select only certain fields, and order the results by a specified property.
Use Case Examples
- Retrieve the top 50 endpoints with a filter to only include active endpoints.
- Fetch endpoints selecting only the 'id' and 'name' fields, ordered by 'name' ascending.
- Skip the first 10 endpoints and get the next 50 for pagination purposes.
Properties
| Name | Meaning |
|---|---|
| OData Query Options | Options to customize the OData query for retrieving endpoints, including filtering, selecting fields, ordering, limiting, and skipping results. |
| Request Options | Settings to control request behavior such as batching, SSL certificate validation, proxy usage, and timeout. |
Output
JSON
id- Unique identifier of the endpoint.name- Name of the endpoint.description- Description of the endpoint.status- Current status of the endpoint.createdAt- Timestamp when the endpoint was created.updatedAt- Timestamp when the endpoint was last updated.
Dependencies
- Cloud Radial API
- API key credential for authentication
Troubleshooting
- Ensure the API URL and credentials are correctly configured to avoid authentication errors.
- If SSL certificate validation fails, enable 'Ignore SSL Issues' to bypass certificate errors, but be aware of security risks.
- Check proxy settings if requests fail due to network restrictions.
- Adjust timeout settings if the server response is slow to prevent premature request abortion.
Links
- Cloud Radial API Documentation - Official documentation for the Cloud Radial API, including endpoint details and OData query options.