Actions56
- API Call Actions
- Bundle Actions
- Community Actions
- Course Actions
- Group Actions
- Hub Actions
- Member Actions
- Module Actions
- Popup Actions
- Webhook Actions
Overview
The "Delete Member" operation in the LearningSuite node allows users to remove a member from the LearningSuite system by specifying the member's unique identifier. This operation is useful for managing membership records, such as when a user leaves an organization or should no longer have access to courses and resources.
Practical examples include:
- Automatically deleting members who have unsubscribed from a service.
- Cleaning up test or inactive accounts in bulk workflows.
- Integrating with HR systems to remove former employees from training platforms.
Properties
| Name | Meaning |
|---|---|
| Member Name or ID | The unique identifier of the member to delete. Choose from a list of existing members or specify an ID using an expression. |
Output
The output of this operation is a JSON array containing the result of the deletion request. Typically, it will include confirmation that the member was deleted or details about the deletion status. If the operation fails, the output may contain an error message describing the issue.
This node does not output binary data.
Dependencies
- Requires an API key credential for authenticating with the LearningSuite API.
- The base URL for the API must be configured in the node credentials.
- The node depends on the LearningSuite API being accessible and the provided member ID being valid.
Troubleshooting
Common issues:
- Providing an invalid or non-existent member ID will cause the operation to fail.
- Network connectivity problems or incorrect API base URL configuration can prevent successful API calls.
- Insufficient permissions associated with the API key may block member deletion.
Error messages:
"No handler for resource "member" and operation "delete": Indicates a misconfiguration or missing implementation; ensure the node version supports this operation.- Errors returned from the API typically include messages about invalid IDs or authorization failures.
Resolutions:
- Verify the member ID exists and is correctly specified.
- Check API credentials and permissions.
- Confirm network connectivity and correct API endpoint configuration.
Links and References
- LearningSuite API Documentation (general reference, replace with actual API docs if available)
- n8n Expressions Documentation – for using expressions to specify member IDs dynamically