Momentum icon

Momentum

Integrate with NowCerts API

Overview

This node integrates with the NowCerts API to create various records such as prospects, insured individuals, policies, and tasks. Specifically, for the "Create Task" operation, it sends task data to the NowCerts system to create a new task record. This is useful in automation workflows where task management needs to be synchronized or created programmatically based on other triggers or data sources.

Practical examples include:

  • Automatically creating follow-up tasks when a new policy is issued.
  • Generating reminder tasks for insurance agents based on client activity.
  • Creating tasks from external systems or forms submitted by users.

Properties

Name Meaning
Task Data JSON object containing the details of the task to be created in NowCerts. The structure should match the expected format of the NowCerts API for task creation.

Output

The node outputs an array of JSON objects, each representing the response from the NowCerts API after creating a task. The json output field contains the API's response data, which typically includes information about the newly created task such as its ID, status, and any other metadata returned by the API.

No binary data is output by this node.

Dependencies

  • Requires an API key credential with access to the NowCerts API, including username, password, client ID, and base URL.
  • The node performs authentication by requesting an access token using these credentials before making API calls.
  • The node depends on the NowCerts API endpoints for creating tasks (/Zapier/InsertTask).

Troubleshooting

  • Authentication failed: No access token received
    This error indicates that the authentication request did not return an access token. Verify that the provided credentials (username, password, client ID) are correct and have sufficient permissions.

  • Authentication failed. Please check your credentials.
    General authentication failure. Double-check all credential fields and ensure the NowCerts API service is reachable.

  • Operation "createTask" is not supported
    This would occur if an unsupported operation value is passed. Ensure the operation property is set exactly to "createTask".

  • API request errors
    If the API returns an error response, the node will throw an error containing the response body. Check the task data JSON for correctness and compliance with the API schema.

Links and References

Discussion