Remove Group Member

Open in ChatGPT Open in ChatGPT to ask questions about this page
Open in Claude Open in Claude to ask questions about this page
Copy as MarkdownCopy this page as markdown to use with AI assistants
View as Markdown Open this page as markdown in a new tab

This API removes members from a group.

Note:
Only the group admins can remove a member from the group.
Endpoints

OAuth Scope

WorkDrive.groups.DELETECopied!

Request Example

cURL
cURL
Deluge
Copied!
curl --request DELETE \
  --url https://www.zohoapis.com/workdrive/api/v1/groupmembers/{group_member_id} \
  --header 'Authorization: Zoho-oauthtoken d92d4xxxxxxxxxxxxx15f52'

Path Parameters

group_member_idstring(Required)

The unique ID of the group member who will be removed from the group

Response Example

I007

R711

F000

204
204
400
404
500
Copied!
204 Group member removed successfully
  {
    "errors": [
      {
        "id": "I007",
        "title": "Unauthorized App"
      }
    ]
  }
                
  {
    "errors": [
      {
        "id": "R711",
        "title": "Error while deleting Group Member"
      }
    ]
  }
                
  {
    "errors": [
      {
        "id": "F000",
        "title": "General exception"
      }
    ]
  }
                
Show full