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

# List decision section



## OpenAPI

````yaml get /v1/decision-sections
openapi: 3.0.0
info:
  title: Settings APIs Specification
  description: Section for description
  version: '1.0'
  contact: {}
servers:
  - url: https://staging.api.us.aptlydone.com/settings
  - url: https://staging.api.eu.aptlydone.com/settings
  - url: https://api.us.aptlydone.com/settings
  - url: https://api.eu.aptlydone.com/settings
security: []
tags: []
paths:
  /v1/decision-sections:
    get:
      tags:
        - decision-sections
      summary: List decision section
      operationId: TenantSectionsController_getSections_v1
      parameters:
        - name: page
          required: false
          in: query
          description: Page number
          schema:
            type: number
            example: 1
            minimum: 1
        - name: limit
          required: false
          in: query
          description: Number of items per page
          schema:
            minimum: 1
            maximum: 100
            example: 10
            type: number
        - name: tenantId
          required: true
          in: query
          description: Tenant ID
          schema:
            example: 4ac43265-8b85-46a4-935d-9f1b469a428e
            type: string
        - name: sectionIds
          required: false
          in: query
          description: Section IDs (comma separated)
          schema:
            example: >-
              7393280b-4fad-4eac-91ad-10978bc9b630,
              2b0325af-3908-4206-bd90-b34fcd7c60c5
            type: string
        - name: categoryIds
          required: false
          in: query
          description: Category IDs (comma separated)
          schema:
            example: >-
              e41b5aeb-4257-4ae8-9fa7-48ad22adc2e6,
              02ae51d3-5205-4720-9e10-c894bdce8bbc
            type: string
        - name: search
          required: false
          in: query
          description: Search
          schema:
            example: Finance
            type: string
        - name: sortBy
          required: false
          in: query
          description: Field to sort by
          schema:
            example: id
            type: string
        - name: sortOrder
          required: false
          in: query
          description: Sort order (asc/desc)
          schema:
            default: asc
            example: asc
            type: string
            enum:
              - asc
              - desc
      responses:
        '200':
          description: Decision sections list retrieved successfully
          content:
            application/json:
              schema:
                $ref: >-
                  #/components/schemas/PaginatedTenantSectionsResponseDtoResponse
      security:
        - accessToken: []
components:
  schemas:
    PaginatedTenantSectionsResponseDtoResponse:
      type: object
      properties:
        statusCode:
          type: number
          example: 200
        timestamp:
          type: string
          example: '2026-01-08T06:33:21.007Z'
        message:
          type: string
          example: Success
        data:
          type: object
          required:
            - page
            - limit
            - total
            - data
          properties:
            page:
              type: number
              example: 1
              minimum: 1
            limit:
              type: number
              example: 10
              minimum: 1
            total:
              type: number
              example: 100
              minimum: 0
            data:
              type: array
              items:
                $ref: '#/components/schemas/TenantSectionsResponseDto'
      required:
        - statusCode
        - timestamp
        - message
    TenantSectionsResponseDto:
      type: object
      properties:
        id:
          type: string
          example: ac9559f4-4e4e-4875-8fcd-ed14ad850183
          description: Unique identifier
        tenantId:
          type: string
          example: c00ff798-020d-4b15-bf55-fad29786c6cd
          description: Tenant ID
        sectionName:
          type: string
          example: Finance Department
          description: Section name
        isDeleted:
          type: boolean
          example: false
          description: Is deleted flag
        categories:
          description: Categories
          type: array
          items:
            $ref: '#/components/schemas/CategoryResponseDto'
        createdAt:
          format: date-time
          type: string
          example: '2024-01-15T12:00:00Z'
          description: Created at timestamp
      required:
        - id
        - tenantId
        - sectionName
        - isDeleted
        - categories
        - createdAt
    CategoryResponseDto:
      type: object
      properties:
        id:
          type: string
          example: 4a7ed297-338c-4f62-82ce-d5e865b50ccb
          description: Unique identifier
        tenantId:
          type: string
          example: 6a91b677-54b9-4ca0-b2d5-32c1d64f784f
          description: Tenant ID
        sectionId:
          type: string
          example: 34270cee-9e1c-40bc-a6b8-470b58e6e3eb
          description: Section ID
        categoryName:
          type: string
          example: Finance
          description: Category name
        isDeleted:
          type: boolean
          example: false
          description: Is deleted flag
      required:
        - id
        - tenantId
        - categoryName
        - isDeleted
  securitySchemes:
    accessToken:
      scheme: bearer
      bearerFormat: JWT
      type: http

````