# User n8n operations

Manage organization users (profiles). Select **User** in the Probo node's **Resource** field.

Return to the [complete n8n resource reference](/docs/developers/api/n8n/resources) to browse another resource.

| Operation  | Value            | Description                            | Source                                                                                                                                    |
| ---------- | ---------------- | -------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------- |
| Create     | `createUser`     | Create a new user in the organization. | [View implementation](https://github.com/getprobo/probo/blob/main/packages/n8n-node/nodes/Probo/actions/user/createUser.operation.ts)     |
| Deactivate | `deactivateUser` | Deactivate a user in the organization. | [View implementation](https://github.com/getprobo/probo/blob/main/packages/n8n-node/nodes/Probo/actions/user/deactivateUser.operation.ts) |
| Get        | `getUser`        | Get a user (profile) by ID.            | [View implementation](https://github.com/getprobo/probo/blob/main/packages/n8n-node/nodes/Probo/actions/user/getUser.operation.ts)        |
| Invite     | `inviteUser`     | Invite a user to the organization.     | [View implementation](https://github.com/getprobo/probo/blob/main/packages/n8n-node/nodes/Probo/actions/user/inviteUser.operation.ts)     |
| List       | `listUsers`      | List all users in the organization.    | [View implementation](https://github.com/getprobo/probo/blob/main/packages/n8n-node/nodes/Probo/actions/user/listUsers.operation.ts)      |
| Remove     | `removeUser`     | Remove a user from the organization.   | [View implementation](https://github.com/getprobo/probo/blob/main/packages/n8n-node/nodes/Probo/actions/user/removeUser.operation.ts)     |
| Update     | `updateUser`     | Update a user (profile).               | [View implementation](https://github.com/getprobo/probo/blob/main/packages/n8n-node/nodes/Probo/actions/user/updateUser.operation.ts)     |
