Actions30
- Accommodations API Actions
- Administrations API Actions
- Contacts API Actions
- Invoices API Actions
- Price Calculation API Actions
- Rates API Actions
- Reservations API Actions
- Timezones API Actions
Overview
This node interacts with the Starfish API for CampingCare and HotelCare, specifically focusing on the Rates API to retrieve rate information. It supports fetching rate details with options for pagination, sorting, filtering by status, and searching. This node is useful for users who need to programmatically access and manage rate data for accommodations or services, enabling integration with other systems or automation workflows.
Use Case Examples
- Retrieve a list of active rates with pagination and sorting by name in ascending order.
- Get only the total count of rates matching a search term without fetching full details.
- Fetch rates that use prices from a specific parent rate ID.
Properties
| Name | Meaning |
|---|---|
| Count | Whether to return only the total count of rates instead of full details. |
| Limit | Limit for pagination to control the number of results returned. |
| Offset | Offset for pagination to skip a number of results. |
| Order | Sort order for the results, either ascending or descending. |
| Order By | Field to sort the results by, such as name or ID. |
| Search | Search term to filter the rates by matching text. |
| Status | Filter rates by their status, such as active or archived. |
| Parent ID | Parent rate ID indicating this rate uses prices from another rate ID. |
| Request Options | Additional request settings such as batching, SSL certificate validation, proxy, and timeout. |
Output
JSON
rates- Array of rate objects returned from the API, containing rate details.count- Total count of rates if the count option is enabled.
Dependencies
- Starfish API for CampingCare and HotelCare
Troubleshooting
- Ensure the API key credential is correctly configured and has the necessary permissions to access the Rates API.
- Check network connectivity and proxy settings if requests fail or time out.
- If SSL certificate validation errors occur, consider enabling the option to ignore SSL issues, but be aware of security risks.
- Verify that pagination parameters (limit and offset) are within valid ranges to avoid empty or incomplete results.
Links
- Starfish API Rates Documentation - Official documentation for the Rates API endpoints and parameters.