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

# Fetch bookkeeping status

> Returns the bookkeeping status for the specified business.



## OpenAPI

````yaml get /v1/businesses/{businessId}/bookkeeping/status
openapi: 3.0.1
info:
  title: API
  version: latest
servers: []
security:
  - BearerAuth: []
tags: []
externalDocs:
  url: /
paths:
  /v1/businesses/{businessId}/bookkeeping/status:
    get:
      tags: []
      summary: Fetch bookkeeping status
      description: Returns the bookkeeping status for the specified business.
      operationId: business.bookkeeping.status.get
      parameters:
        - name: businessId
          in: path
          description: The UUID of the business to fetch the bookkeeping status for.
          required: true
          schema:
            type: string
            format: uuid
      responses:
        '200':
          description: Success.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ApiBookkeepingStatus'
components:
  schemas:
    ApiBookkeepingStatus:
      type: object
      properties:
        status:
          type: string
          enum:
            - NOT_PURCHASED
            - BOOKKEEPING_PAUSED
            - ACTIVE
  securitySchemes:
    BearerAuth:
      type: http
      scheme: bearer
      bearerFormat: JWT

````