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

# Create a Group

> Creates a custom Group.



## OpenAPI

````yaml /en/openapi/v3-current/AM-identity.yaml post /v1/groups
openapi: 3.0.1
info:
  contact: {}
  description: This is a swagger documentation for the Identity API
  termsOfService: http://swagger.io/terms/
  title: Identity API
  version: 1.0.0
servers:
  - url: //localhost:4001/
security: []
paths:
  /v1/groups:
    post:
      tags:
        - Groups
      summary: Create a Group
      description: Creates a custom Group.
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/GroupInput'
        description: Group Input
        required: true
      responses:
        '201':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/GroupFullResponse'
          description: Created
        '400':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/pkg.HTTPError'
          description: Bad Request
        '409':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/pkg.HTTPError'
          description: Conflict
        '500':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/pkg.HTTPError'
          description: Internal Server Error
      security:
        - BearerAuth: []
components:
  schemas:
    GroupInput:
      description: GroupInput payload
      example:
        contactEmail: team@example.com
        displayName: Custom Group
        name: custom-group
      properties:
        contactEmail:
          description: Group's contact email.
          example: team@example.com
          type: string
        displayName:
          description: Group's display name.
          example: Custom Group
          type: string
        name:
          description: Group's unique identifier name.
          example: custom-group
          type: string
      required:
        - displayName
        - name
      type: object
    GroupFullResponse:
      description: GroupFullResponse payload
      example:
        createdAt: '2026-01-01T00:00:00.000Z'
        isTopGroup: false
        manager: admin
        contactEmail: admin@example.com
        isEnabled: true
        name: My Group
        id: my-group
        type: custom
        parentId: parent-group
        users:
          - user1
          - user2
        updatedAt: '2026-06-24T10:00:00.000Z'
      properties:
        contactEmail:
          example: admin@example.com
          type: string
        createdAt:
          example: '2026-01-01T00:00:00.000Z'
          type: string
        id:
          example: my-group
          type: string
        isEnabled:
          example: true
          type: boolean
        isTopGroup:
          example: false
          type: boolean
        manager:
          example: admin
          type: string
        name:
          example: My Group
          type: string
        parentId:
          example: parent-group
          type: string
        type:
          example: custom
          type: string
        updatedAt:
          example: '2026-06-24T10:00:00.000Z'
          type: string
        users:
          example:
            - user1
            - user2
          items:
            type: string
          type: array
      type: object
    pkg.HTTPError:
      properties:
        code:
          type: string
        entityType:
          type: string
        err:
          type: object
        message:
          type: string
        title:
          type: string
      type: object
  securitySchemes:
    BearerAuth:
      description: 'Bearer authentication. Send Authorization: Bearer <token>.'
      in: header
      name: Authorization
      type: apiKey

````