Workspace icon

Workspace

Get and change data from Workspace API

Overview

This node interacts with the Workspace API to manage various resources, including meetings. Specifically, the "Delete Meeting" operation allows users to remove a meeting by specifying its unique ID. This is useful in scenarios where meetings are canceled or no longer relevant and need to be cleaned up from the system.

Practical examples:

  • Automatically deleting meetings that were canceled via another system.
  • Cleaning up outdated or test meetings as part of a workflow.
  • Managing meeting lifecycle within project management automation.

Properties

Name Meaning
Meeting ID The ID of the meeting to delete

Output

The node outputs JSON data representing the result of the delete operation. Typically, this will include confirmation of deletion or any error messages returned by the Workspace API. There is no indication that binary data is output.

Dependencies

  • Requires an API key credential and tenant information for authenticating with the Workspace API.
  • The base URL for the Workspace API must be configured in the node credentials.
  • The node sends requests with appropriate headers including Accept, Content-Type, APIKEY, and TENANT.

Troubleshooting

  • Common issues:

    • Invalid or missing Meeting ID: The API will likely return an error if the meeting ID does not exist or is malformed.
    • Authentication errors: If the API key or tenant info is incorrect or expired, the request will fail.
    • Network or API endpoint issues: Ensure the base URL is correct and the Workspace API is reachable.
  • Error messages:

    • "Meeting not found": Check that the Meeting ID is correct.
    • "Unauthorized" or "Forbidden": Verify API credentials and permissions.
    • Timeout or connection errors: Confirm network connectivity and API availability.

Links and References

Discussion