WibiClick icon

WibiClick

Interact with WibiClick API

Actions92

Overview

This node integrates with the WibiClick API to manage various business resources, including tasks. Specifically, for the Task resource and the Create Task operation, it allows users to create new tasks by sending task details such as title, associated job ID, and customer ID to the WibiClick system.

This node is beneficial in scenarios where you want to automate task creation within your workflow, for example:

  • Automatically creating follow-up tasks when a new customer inquiry is received.
  • Generating tasks linked to specific jobs or customers as part of a project management process.
  • Integrating task creation into broader automation flows involving other resources like jobs, contacts, or invoices.

Properties

Name Meaning
Task Details A collection of fields describing the task to create:
- Title The title or name of the task.
- Job ID The identifier of the job associated with this task (optional).
- Customer ID The identifier of the customer associated with this task (optional).

Output

The output JSON contains the response from the WibiClick API after attempting to create the task. It typically includes the created task's details as returned by the API.

Example output structure:

{
  "id": "string",
  "title": "string",
  "jobId": "string",
  "customerId": "string",
  // ... other task-related fields as provided by the API
}

No binary data output is involved in this operation.

Dependencies

  • Requires an active connection to the WibiClick API via an API key credential.
  • The node uses HTTP requests to communicate with the WibiClick API endpoints.
  • The user must configure the node with valid API credentials that include an API URL and an API key.
  • The taskDetails property must be provided with appropriate values for successful task creation.

Troubleshooting

  • Invalid task details error: If the API returns a 400 status code, it indicates invalid or incomplete task details were provided. Ensure all required fields are correctly filled.
  • Unexpected error: Other errors may occur due to network issues, invalid credentials, or server problems. Check the API key validity and network connectivity.
  • API authentication failure: If authorization fails, verify that the API key credential is correctly configured and has sufficient permissions.
  • Missing required fields: Make sure the taskDetails collection includes at least the title; job ID and customer ID are optional but should be valid if provided.

Links and References


This summary focuses on the Task resource and the Create Task operation as requested, based solely on static analysis of the provided source code and input properties.

Discussion