Actions39
- Panel Actions
- Message Actions
- Chatbot Actions
- Contact Actions
- Sequence Actions
- Session Actions
Overview
This node interacts with the WTS Chat API to perform various operations related to chat management, contacts, messages, sessions, panels, sequences, and chatbots. Specifically, the 'Get All Panels' operation under the 'Panel' resource retrieves a list of all panels, optionally filtered by title and other generic parameters. This is useful for users who want to fetch and manage panel data within their workflows, such as displaying all panels or integrating panel data with other systems.
Use Case Examples
- Retrieve all panels with a specific title filter to display in a dashboard.
- Fetch all panels for reporting or analytics purposes.
- Use panel data to trigger other automation steps based on panel attributes.
Properties
| Name | Meaning |
|---|---|
| Title | Filter panels by their title. |
| CreatedAt.After | Filter panels created after this date and time. |
| CreatedAt.Before | Filter panels created before this date and time. |
| UpdatedAt.After | Filter panels updated after this date and time. |
| UpdatedAt.Before | Filter panels updated before this date and time. |
| Auto Pagination | Enable automatic pagination to retrieve multiple pages of results. |
| Max Pages | Maximum number of pages to retrieve when auto pagination is enabled. |
| Page Number | The specific page number to retrieve when auto pagination is disabled. |
| Page Size | Number of items per page when auto pagination is disabled. |
| Order By | Field to sort the results by. |
| Order Direction | Direction of sorting the results. |
Output
JSON
json- Array of panel objects retrieved from the WTS API, each representing a panel with its details.
Dependencies
- WTS API key credential for authentication
Troubleshooting
- Ensure the API key credential is correctly configured and has the necessary permissions to access panel data.
- If no panels are returned, verify the filter parameters such as title and date ranges are correct and match existing data.
- Handle API rate limits or network issues by implementing retries or delays as needed.
Links
- WTS Chat API Panels Documentation - Official documentation for the Panels API endpoint used by this node.