Orgo icon

Orgo

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

Actions19

Overview

This node interacts with the Orgo API, a multi-tenant SaaS platform for managing organizational data. Specifically, the "Event Registration" resource allows users to manage event registrations and attendance records.

The Delete operation under the Event Registration resource cancels an existing event registration by deleting it from the system using its unique ID.

Common scenarios:

  • Canceling a user's registration for an event when they can no longer attend.
  • Removing erroneous or duplicate event registration entries.
  • Automating cleanup of event registrations in workflows.

Practical example:

You have an event management workflow where users register for events. If a user decides to cancel their attendance, this node can be used to delete their registration record automatically based on the registration ID.


Properties

Name Meaning
ID The unique identifier of the event registration to delete. This is required to specify which registration should be canceled.

Output

  • The output JSON contains the response from the Orgo API after attempting to delete the event registration.
  • Typically, a successful deletion returns an empty object or confirmation message.
  • If the deletion fails, the output may contain an error message describing the failure.
  • No binary data is output by this operation.

Example output on success (simplified):

{}

Example output on failure:

{
  "error": "Registration not found"
}

Dependencies

  • Requires an API key credential for authenticating with the Orgo API.
  • The node uses the base URL and API token provided in the credentials to make HTTP DELETE requests.
  • No additional external dependencies are needed beyond access to the Orgo API.

Troubleshooting

  • Common issues:

    • Providing an invalid or non-existent registration ID will cause the API to return an error.
    • Missing or incorrect API authentication token will result in authorization errors.
    • Network connectivity issues can prevent the request from completing.
  • Error messages and resolutions:

    • "Registration not found": Verify that the ID provided corresponds to an existing event registration.
    • "Unauthorized" or "Invalid API token": Check that the API key credential is correctly configured and has necessary permissions.
    • Timeout or network errors: Ensure the Orgo API endpoint is reachable from your n8n instance.

Links and References

Discussion