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

# Create virtual asset group



## OpenAPI

````yaml api-reference/en/assetLibrary/group-create.json POST /v1/asset/groups/create
openapi: 3.1.0
info:
  title: 默认模块
  description: ''
  version: 1.0.0
servers:
  - url: https://powertokens.ai/api
    description: 生产环境
security: []
tags:
  - name: interface
paths:
  /v1/asset/groups/create:
    post:
      tags:
        - interface
      summary: create group
      parameters:
        - name: Authorization
          in: header
          description: Official website API key
          required: true
          example: XQujstE5wKqI0xecMJA8lQiq90OHygNIuI1X57zJqltTlOyY
          schema:
            type: string
        - name: User-Agent
          in: header
          description: >-
            Note that the server will intercept the request if this value is
            left unfilled in JAVA(eg:powertokensAi)
          required: false
          example: powertokensAi
          schema:
            type: string
        - name: Content-Type
          in: header
          description: application/json
          required: false
          example: application/json
          schema:
            type: string
      requestBody:
        content:
          application/json:
            schema:
              type: object
              properties:
                group_name:
                  type: string
                  description: Group Name (for creating virtual groups)
            example:
              group_name: '001'
        required: true
      responses:
        '200':
          description: ''
          content:
            application/json:
              schema:
                type: object
                properties:
                  code:
                    type: integer
                  data:
                    type: object
                    properties:
                      group_id:
                        type: string
                    required:
                      - group_id
                  msg:
                    type: string
                required:
                  - code
                  - data
                  - msg
              example:
                code: 200
                data:
                  group_id: group-20260611161425-cxs6m
                msg: ''
          headers: {}
      deprecated: false
      security: []

````