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

# Get all transactions locking meta



## OpenAPI

````yaml api-reference/openapi.json get /api/transactions-locking
openapi: 3.0.0
info:
  title: Bigcapital
  description: Financial accounting software
  version: '1.0'
  contact: {}
servers: []
security: []
tags: []
paths:
  /api/transactions-locking:
    get:
      tags:
        - Transactions Locking
      summary: Get all transactions locking meta
      operationId: TransactionsLockingController_getTransactionLockingMetaList
      parameters:
        - name: Authorization
          in: header
          description: >-
            Value must be 'Bearer <token>' where <token> is an API key prefixed
            with 'bc_' or a JWT token.
          required: true
          schema:
            type: string
            example: Bearer bc_1234567890abcdef
        - name: organization-id
          in: header
          description: >-
            Required if Authorization is a JWT token. The organization ID to
            operate within.
          required: true
          schema:
            type: string
      responses:
        '200':
          description: The transactions locking meta has been successfully retrieved.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/TransactionLockingResponseDto'
components:
  schemas:
    TransactionLockingResponseDto:
      type: object
      properties:
        isEnabled:
          type: boolean
          description: Indicates whether transaction locking is enabled
          example: true
        isPartialUnlock:
          type: boolean
          description: Indicates whether partial unlock is enabled
          example: false
        lockToDate:
          format: date-time
          type: string
          description: The date until which transactions are locked
          example: '2024-12-31'
        unlockFromDate:
          type: string
          description: The start date of the unlock period
          example: '2025-01-01'
        unlockToDate:
          type: string
          description: The end date of the unlock period
          example: '2025-01-31'
        lockReason:
          type: string
          description: The reason for locking transactions
          example: Year-end closing
        unlockReason:
          type: string
          description: The reason for unlocking transactions
          example: New fiscal year
        partialUnlockReason:
          type: string
          description: The reason for partial unlock of transactions
          example: Special adjustment period
      required:
        - isEnabled
        - isPartialUnlock
        - lockToDate
        - unlockFromDate
        - unlockToDate
        - lockReason
        - unlockReason
        - partialUnlockReason

````