Orgo icon

Orgo

Interact with Orgo API - Multi-tenant SaaS platform for organizations

Actions19

Overview

This node integrates with the Orgo API, a multi-tenant SaaS platform for managing organizational data. Specifically, the Contact - Create operation allows users to create new external contacts and relationships within their organization.

Typical use cases include:

  • Adding new contacts to an organization's CRM or contact management system.
  • Automating the creation of contacts from form submissions or other data sources.
  • Enriching contact databases by programmatically adding detailed contact information.

For example, you might use this node to automatically add a new contact when a lead fills out a web form, including their first name, last name, email, and any notes.

Properties

Name Meaning
First Name The first name of the contact. This is a required field.
Last Name The last name of the contact. This is a required field.
Additional Fields Optional extra fields to provide more details about the contact:
- Email The email address of the contact (e.g., contact@example.com).
- Notes Additional notes or comments about the contact.

Output

The node outputs the JSON response returned by the Orgo API after creating the contact. This typically includes the newly created contact's details such as its unique ID, full name, email, creation timestamp, and any other metadata provided by the API.

The output structure is:

{
  "id": "string",
  "name": "string",
  "email": "string",
  "createdAt": "string",
  ...
}

where id is the unique identifier of the contact, name is the concatenation of first and last names, and other fields depend on what the API returns.

No binary data output is produced by this operation.

Dependencies

  • Requires an API key credential for authenticating with the Orgo API.
  • The node expects the base URL and API token to be configured in the credentials.
  • Network access to the Orgo API endpoint is necessary.

Troubleshooting

  • Missing Required Fields: If "First Name" or "Last Name" are not provided, the API may reject the request. Ensure these fields are always filled.
  • Authentication Errors: Invalid or missing API tokens will cause authentication failures. Verify that the API token credential is correctly set up.
  • API Endpoint Issues: If the base URL is incorrect or unreachable, requests will fail. Confirm network connectivity and correct API URL configuration.
  • Unexpected API Responses: If the API changes or returns errors, check the error message included in the node output if "Continue On Fail" is enabled.

Links and References

Discussion