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

# Seed Default Accounts

> Idempotently seed the canonical IFRS chart (+TT200 projections) and all
poster gl_mapping keys (procurement, inventory, manufacturing, sales,
assets) for the org. Existing accounts/mappings are never overwritten.



## OpenAPI

````yaml /api/openapi-cutmake.json post /api/v1/gl/accounts/seed-defaults
openapi: 3.1.0
info:
  title: VM App API
  version: 0.1.0
servers:
  - url: https://vinmake-erp.onrender.com
security: []
paths:
  /api/v1/gl/accounts/seed-defaults:
    post:
      tags:
        - GL
      summary: Seed Default Accounts
      description: |-
        Idempotently seed the canonical IFRS chart (+TT200 projections) and all
        poster gl_mapping keys (procurement, inventory, manufacturing, sales,
        assets) for the org. Existing accounts/mappings are never overwritten.
      operationId: seed_default_accounts_api_v1_gl_accounts_seed_defaults_post
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema: {}
        '401':
          description: Unauthorized
      security:
        - OAuth2PasswordBearer: []
components:
  securitySchemes:
    OAuth2PasswordBearer:
      type: oauth2
      flows:
        password:
          scopes: {}
          tokenUrl: /auth/login

````