Orgo icon

Orgo

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

Actions19

Overview

This node interacts with the Orgo API to manage event registrations and attendance statuses. Specifically, the Update operation for the Event Registration resource allows users to modify the attendance status of a particular event registration by its ID.

Typical use cases include:

  • Updating a participant's attendance status after an event (e.g., marking them as "Attended" or "Not Attending").
  • Changing the registration status to reflect invitations or cancellations.
  • Automating attendance tracking workflows in event management systems.

For example, after an event concludes, you could use this node to update all attendees' statuses to "Attended" based on your event records.

Properties

Name Meaning
ID The unique identifier of the event registration record to update.
Status The new attendance status to set. Options: Registered, Attended, Not Attending, Invited.

Output

The node outputs JSON data representing the updated event registration object returned from the Orgo API. This typically includes fields such as:

  • id: The registration ID.
  • status: The updated attendance status.
  • Other metadata related to the registration (e.g., timestamps).

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

  • Common issues:

    • Providing an invalid or missing registration ID will cause the API request to fail.
    • Using an incorrect or expired API token will result in authentication errors.
    • Setting an unsupported status value may cause the API to reject the update.
  • Error messages:

    • "User ID is required but not provided" (not directly relevant here but similar validation errors may occur if ID is missing).
    • HTTP 401 Unauthorized: Check that the API token credential is valid and correctly configured.
    • HTTP 404 Not Found: Verify that the registration ID exists.
    • HTTP 400 Bad Request: Ensure the status value is one of the allowed options.

To resolve these, verify input parameters, ensure credentials are correct, and confirm the registration ID exists in the system.

Links and References

Discussion