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

# List Scheduled Workflows

> ```
GET api/v1/cdd/requests/schedules
```




## OpenAPI

````yaml cdd-model.json GET /cdd/requests/schedules
openapi: 3.1.0
info:
  title: Sigma CDD API
  description: Customer Due Diligence API documentation
  version: 1.0.0
  license:
    name: MIT
servers:
  - url: https://sigmacdd.sabipay.com/api/v1
    description: Production
security:
  - ApiKey: []
    ApiSecret: []
paths:
  /cdd/requests/schedules:
    get:
      summary: List scheduled workflows
      responses:
        '200':
          description: Scheduled workflows fetched
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/GenericListResponse'
              example:
                message: CDD scheduled workflows fetched successfully
                data:
                  - executionId: exec_9b12c4f0
                    name: Retail Customers - Lagos
                    type: individual
                    status: in progress
                    workflowName: Retail Individual Workflow
                    createdAt: '2026-03-25T11:00:00.000Z'
                count: 1
                pageNumber: 1
                totalCount: 1
components:
  schemas:
    GenericListResponse:
      type: object
      properties:
        message:
          type: string
        data:
          type: array
          items:
            type: object
            additionalProperties: true
        count:
          type: integer
        pageNumber:
          type: integer
        totalCount:
          type: integer
      example:
        message: fetched successfully
        data:
          - _id: 67f4f9b5c2a7d1f2b6e99122
            name: Sample record
        count: 1
        pageNumber: 1
        totalCount: 1
  securitySchemes:
    ApiKey:
      type: apiKey
      in: header
      name: apiKey
    ApiSecret:
      type: apiKey
      in: header
      name: apiSecret

````