> ## 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.

# Check decision section relationship



## OpenAPI

````yaml get /v1/decision-sections/{id}/check-relationships
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/{id}/check-relationships:
    get:
      tags:
        - decision-sections
      summary: Check decision section relationship
      operationId: TenantSectionsController_checkRelationships_v1
      parameters:
        - name: id
          required: true
          in: path
          description: Section ID
          schema:
            type: number
      responses:
        '200':
          description: Relationship check completed successfully
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/RelationshipCheckResponseDtoResponse'
      security:
        - accessToken: []
components:
  schemas:
    RelationshipCheckResponseDtoResponse:
      type: object
      properties:
        statusCode:
          type: number
          description: HTTP Status code
          example: 200
        timestamp:
          type: string
          description: Timestamp of the response
          example: '2026-01-08T06:33:20.711Z'
        message:
          type: string
          description: Response message
          example: Success
        data:
          description: Response data
          allOf:
            - $ref: '#/components/schemas/RelationshipCheckResponseDto'
      required:
        - statusCode
        - timestamp
        - message
        - data
    RelationshipCheckResponseDto:
      type: object
      properties:
        exists:
          type: boolean
          description: Whether relationships exist
          example: true
        count:
          type: number
          description: Count of related records
          example: 5
      required:
        - exists
  securitySchemes:
    accessToken:
      scheme: bearer
      bearerFormat: JWT
      type: http

````