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

# Group details

> Returns a group's name, description, owner and participants (with admin flags).



## OpenAPI

````yaml /en/api-reference/openapi.json get /groups/info
openapi: 3.1.0
info:
  title: Zapfy API
  description: >-
    Multi-tenant WhatsApp API. Send messages and manage webhooks through a
    single surface.
  version: 1.0.0
servers:
  - url: https://api.zapfy.io/v1
security:
  - accountToken: []
paths:
  /groups/info:
    get:
      tags:
        - Groups
      summary: Group details
      description: >-
        Returns a group's name, description, owner and participants (with admin
        flags).
      parameters:
        - name: id
          in: query
          required: true
          schema:
            $ref: '#/components/schemas/GroupId'
          description: the group id (returned by GET /groups).
      responses:
        '200':
          $ref: '#/components/responses/GroupDetail'
        '400':
          $ref: '#/components/responses/Error'
        '401':
          $ref: '#/components/responses/Error'
        '403':
          $ref: '#/components/responses/Error'
        '502':
          $ref: '#/components/responses/Error'
      security:
        - instanceToken: []
components:
  schemas:
    GroupId:
      type: string
      description: the group id (returned by GET /groups).
      example: '120363012345678901'
    GroupInfo:
      type: object
      properties:
        id:
          $ref: '#/components/schemas/GroupId'
          description: the group id.
        name:
          type: string
          example: Family
          description: Group name.
        description:
          type: string
          example: House announcements
          description: Group description (topic).
        owner:
          type: string
          description: Group owner phone in E.164.
          example: '5511999998888'
        participants:
          type: array
          items:
            $ref: '#/components/schemas/GroupParticipant'
          description: Group participants, each with its role.
    GroupParticipant:
      type: object
      properties:
        phone:
          type: string
          description: Participant phone in E.164.
          example: '5511999998888'
        isAdmin:
          type: boolean
          example: false
          description: '`true` if the participant is a group admin.'
        isSuperAdmin:
          type: boolean
          example: false
          description: '`true` if the participant is the group owner (super admin).'
  responses:
    GroupDetail:
      description: Group details.
      content:
        application/json:
          schema:
            type: object
            properties:
              data:
                $ref: '#/components/schemas/GroupInfo'
    Error:
      description: Error.
      content:
        application/json:
          schema:
            type: object
            properties:
              error:
                type: string
                example: Instance not found
  securitySchemes:
    accountToken:
      type: http
      scheme: bearer
      description: Account token (`zpfy_acct_...`) — manages instances and webhooks.
    instanceToken:
      type: http
      scheme: bearer
      description: Instance token (`zpfy_inst_...`) — sends messages.

````