> ## Documentation Index
> Fetch the complete documentation index at: https://docs.wazzapi.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Remove From Group

> Remove contacts from a group.



## OpenAPI

````yaml /api-reference/openapi.json delete /api/v1/contacts/groups/{group_id}/members
openapi: 3.1.0
info:
  title: wazzapi Public API
  description: >-
    Public API surface for external API-key clients. Only stable /api/v1
    endpoints are included.


    ## Webhook deliveries

    This reference also includes the webhook requests Wazzapi sends to your
    endpoint for incoming messages, message status updates, and device status
    changes. See the `Incoming webhooks` section in the sidebar for headers,
    payload fields, and concrete examples.
  version: 1.0.0
servers: []
security: []
tags:
  - name: Incoming webhooks
    description: >-
      POST deliveries that Wazzapi sends to your webhook endpoint after you
      subscribe to supported events. Verify the signature against the raw body
      and return a 2xx response quickly.
paths:
  /api/v1/contacts/groups/{group_id}/members:
    delete:
      tags:
        - contacts
      summary: Remove From Group
      description: Remove contacts from a group.
      operationId: remove_from_group_api_v1_contacts_groups__group_id__members_delete
      parameters:
        - name: group_id
          in: path
          required: true
          schema:
            type: string
            format: uuid
            title: Group Id
        - name: Authorization
          in: header
          required: false
          schema:
            anyOf:
              - type: string
              - type: 'null'
            title: Authorization
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/RemoveFromGroupRequest'
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/AddToGroupResponse'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
components:
  schemas:
    RemoveFromGroupRequest:
      properties:
        contact_ids:
          items:
            type: string
            format: uuid
          type: array
          minItems: 1
          title: Contact Ids
      type: object
      required:
        - contact_ids
      title: RemoveFromGroupRequest
      description: Request to remove contacts from a group.
    AddToGroupResponse:
      properties:
        success:
          type: boolean
          title: Success
        added:
          type: integer
          title: Added
        member_count:
          type: integer
          title: Member Count
      type: object
      required:
        - success
        - added
        - member_count
      title: AddToGroupResponse
      description: Response from adding to group.
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          type: array
          title: Detail
      type: object
      title: HTTPValidationError
    ValidationError:
      properties:
        loc:
          items:
            anyOf:
              - type: string
              - type: integer
          type: array
          title: Location
        msg:
          type: string
          title: Message
        type:
          type: string
          title: Error Type
        input:
          title: Input
        ctx:
          type: object
          title: Context
      type: object
      required:
        - loc
        - msg
        - type
      title: ValidationError

````