GymControl icon

GymControl

Handle your GymControl instance

Actions91

Overview

The node integrates with the GymControl API to manage gym-related data. Specifically, for the Ceiling - Update operation, it updates an existing ceiling record identified by its ID. This is useful in scenarios where you need to modify the weight limit or capacity constraints associated with a ceiling entity in your gym management system.

Practical examples include:

  • Adjusting the maximum allowed weight for a particular ceiling after equipment upgrades.
  • Correcting previously set limits due to changes in safety regulations.

Properties

Name Meaning
Show Complete Response Boolean option to return the full API response instead of just the main data output.
ID The unique identifier of the ceiling record to update.
Options → Weight The new weight value to set for the ceiling (minimum value is 1).

Output

The node outputs JSON data representing the updated ceiling object as returned by the GymControl API. If "Show Complete Response" is enabled, the entire API response is returned; otherwise, only the relevant updated ceiling data is provided.

No binary data output is involved in this operation.

Dependencies

  • Requires an API key credential for authenticating requests to the GymControl API.
  • The base URL for the API is configured via credentials.
  • HTTP requests are made with JSON content type and accept headers.

Troubleshooting

  • Missing or invalid ID: The node requires a valid ceiling ID to update. Ensure the ID is correct and exists in the system.
  • Weight value errors: The weight must be a number greater than or equal to 1. Providing invalid values may cause API errors.
  • Authentication failures: Verify that the API key credential is correctly configured and has sufficient permissions.
  • API connectivity issues: Check network access to the GymControl API endpoint and ensure the base URL is correct.

Common error messages typically relate to invalid input parameters or authentication failures. Resolving these involves verifying input correctness and credential validity.

Links and References

Discussion