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

# Create QuickBooks Account API

> Create a new QuickBooks account from Breezing to add a destination for crypto journal entries without leaving the API workflow.



## OpenAPI

````yaml POST /qbo/accounts
openapi: 3.1.0
info:
  title: Breezing Public API
  version: 1.0.0
  description: >-
    Crypto accounting API for programmatic access and AI agents. Authenticate
    with an API key using the Authorization header: `Bearer brz_...`
servers:
  - url: https://api.breezing.io/v1
security:
  - BearerAuth: []
paths:
  /qbo/accounts:
    post:
      tags:
        - QuickBooks
      summary: Create a QuickBooks account
      description: >-
        Create a new GL account directly in the linked QuickBooks Online
        company. After creation, call POST /qbo/accounts/refresh to refresh the
        local view. Returns 400 if QuickBooks is not linked.
      parameters:
        - schema:
            type: string
            description: >-
              Organization ID. Use GET /v1/companies to discover available
              org/company pairs.
            example: '1'
          required: true
          description: >-
            Organization ID. Use GET /v1/companies to discover available
            org/company pairs.
          name: orgId
          in: query
        - schema:
            type: string
            description: >-
              Company ID. Use GET /v1/companies to discover available companies
              and their access levels.
            example: '1'
          required: true
          description: >-
            Company ID. Use GET /v1/companies to discover available companies
            and their access levels.
          name: companyId
          in: query
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/CreateQboAccountBody'
      responses:
        '200':
          description: QuickBooks account created
          content:
            application/json:
              schema:
                type: object
                properties:
                  success:
                    type: boolean
                    enum:
                      - true
                  data:
                    $ref: '#/components/schemas/AccountingAccount'
                required:
                  - success
                  - data
        '400':
          description: QuickBooks not linked or invalid input
          content:
            application/json:
              schema:
                type: object
                properties:
                  success:
                    type: boolean
                    enum:
                      - false
                  error:
                    type: object
                    properties:
                      code:
                        type: string
                      message:
                        type: string
                    required:
                      - code
                      - message
                required:
                  - success
                  - error
        '401':
          description: Invalid or missing API key
          content:
            application/json:
              schema:
                type: object
                properties:
                  success:
                    type: boolean
                    enum:
                      - false
                  error:
                    type: object
                    properties:
                      code:
                        type: string
                      message:
                        type: string
                    required:
                      - code
                      - message
                required:
                  - success
                  - error
        '403':
          description: >-
            API key has no access to this company, has read-only access where
            write was required, or the company subscription is inactive
          content:
            application/json:
              schema:
                type: object
                properties:
                  success:
                    type: boolean
                    enum:
                      - false
                  error:
                    type: object
                    properties:
                      code:
                        type: string
                      message:
                        type: string
                    required:
                      - code
                      - message
                required:
                  - success
                  - error
        '500':
          description: Internal server error
          content:
            application/json:
              schema:
                type: object
                properties:
                  success:
                    type: boolean
                    enum:
                      - false
                  error:
                    type: object
                    properties:
                      code:
                        type: string
                      message:
                        type: string
                    required:
                      - code
                      - message
                required:
                  - success
                  - error
      security:
        - BearerAuth: []
components:
  schemas:
    CreateQboAccountBody:
      type: object
      properties:
        name:
          type: string
          minLength: 1
          maxLength: 100
          description: Account display name.
        accountType:
          type: string
          enum:
            - Bank
            - Other Current Asset
            - Fixed Asset
            - Other Asset
            - Accounts Receivable
            - Equity
            - Expense
            - Other Expense
            - Cost of Goods Sold
            - Accounts Payable
            - Credit Card
            - Long Term Liability
            - Other Current Liability
            - Income
            - Other Income
          description: >-
            QuickBooks AccountType. Determines which classification the account
            falls under.
        accountSubType:
          type: string
          description: >-
            Optional QuickBooks AccountSubType (e.g. "Checking", "Savings",
            "CashOnHand"). Must be valid for the chosen accountType.
        acctNum:
          type: string
          description: Optional account number for the chart of accounts.
        description:
          type: string
          maxLength: 100
          description: Optional description.
      required:
        - name
        - accountType
    AccountingAccount:
      type: object
      properties:
        code:
          type: string
          nullable: true
          description: >-
            Account code/identifier. Use this exact value when setting
            `account`, `assetAccount`, or `feeAssetAccount` on a transaction or
            asset.
        name:
          type: string
          nullable: true
          description: Display name of the account.
        type:
          type: string
          description: >-
            Account type as reported by the accounting platform (e.g. "Bank",
            "Other Current Asset", "EXPENSE").
      required:
        - code
        - name
        - type

````