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

# List workflow triggers

> Get the triggers where the specified workflow is the source (`triggers`)
and the triggers where it is the target (`incoming`). Outgoing rows are
always returned; each carries `targetWorkflowName` when the caller can
access the target. Incoming rows are returned only when the caller can
access the source workflow, and each carries `sourceWorkflowName`.
`count` is the outgoing trigger count.




## OpenAPI

````yaml get /v4/workflows/{workflowId}/triggers
openapi: 3.0.3
info:
  title: Kadoa API
  version: 3.0.0
  contact:
    name: Support
    email: support@kadoa.com
servers:
  - url: https://api.kadoa.com
security: []
paths:
  /v4/workflows/{workflowId}/triggers:
    get:
      tags:
        - Workflow Triggers
      summary: List workflow triggers
      description: |
        Get the triggers where the specified workflow is the source (`triggers`)
        and the triggers where it is the target (`incoming`). Outgoing rows are
        always returned; each carries `targetWorkflowName` when the caller can
        access the target. Incoming rows are returned only when the caller can
        access the source workflow, and each carries `sourceWorkflowName`.
        `count` is the outgoing trigger count.
      parameters:
        - name: workflowId
          in: path
          required: true
          description: ID of the source workflow
          schema:
            type: string
        - name: x-api-key
          in: header
          required: false
          schema:
            type: string
        - name: Authorization
          in: header
          required: false
          schema:
            type: string
      responses:
        '200':
          description: Triggers retrieved successfully
        '400':
          description: Invalid workflow ID
        '401':
          description: Unauthorized
        '404':
          description: Workflow not found
        '500':
          description: Internal server error
      security:
        - ApiKeyAuth: []
        - BearerAuth: []
components:
  securitySchemes:
    ApiKeyAuth:
      type: apiKey
      in: header
      name: x-api-key
      description: API key for authentication
    BearerAuth:
      type: http
      scheme: bearer
      bearerFormat: JWT
      description: Bearer token for authentication

````