Overview
This node interacts with Nimma API objects, allowing users to perform CRUD operations (list, get, create, update, delete) on specified app and model names. It is useful for managing data entities within Nimma applications, such as retrieving records, creating new entries, updating existing ones, or deleting records by ID. For example, a user can delete a specific record by providing the app name, model name, and the record ID.
Use Case Examples
- Deleting a record from a Nimma app by specifying the app name, model name, and record ID.
- Listing all records of a model in a Nimma app with optional query parameters.
Properties
| Name | Meaning |
|---|---|
| App Name | The name of the Nimma application to target for the operation. |
| Model Name | The name of the model within the Nimma app to perform the operation on. |
| ID | The unique identifier of the record to get, update, or delete. |
Output
JSON
id- The ID of the deleted record.deleted- Boolean indicating if the record was successfully deleted.
Dependencies
- Requires an API authentication token to generate authorization headers for Nimma API requests.
Troubleshooting
- Ensure the provided app name and model name are correct and exist in the Nimma system to avoid 404 errors.
- Verify the ID parameter is provided and valid when performing get, update, or delete operations to prevent errors.
- Check API authentication credentials are correctly configured to avoid authorization failures.
- Handle unknown operation errors by ensuring the operation parameter is one of the supported values: list, get, create, update, delete.