---
title: "Get the checklist due date rule"
method: GET
path: "/workflows/{workflowId}/revisions/{revisionId}/due-date-rule"
tags: ["Workflow Due Date Rules"]
---

# Get the checklist due date rule

`GET /workflows/{workflowId}/revisions/{revisionId}/due-date-rule`

Returns the checklist-level due date rule for a workflow revision. The `rule` field is `null` when no rule is set.

## Path parameters

- `workflowId` string, required
- `revisionId` string, required

## Response `200`

- GetChecklistDueDateRuleResponseResponse
  - `data` object, required — The resource returned by this request.
    - `rule` object — The checklist due date rule, or `null` if none is set.
      - `sourceType` 'FormFieldValue' | 'ChecklistStartDate', required — How the workflow run's due date is derived. `ChecklistStartDate` bases the due date on the workflow run's start date. `FormFieldValue` bases it on a Date form field value (requires `sourceWidgetId`).
      - `sourceWidgetId` string — For `sourceType=FormField`: the ID of the Members form field whose value drives the rule's assignees at runtime. Absent for `sourceType=ChecklistInitiator`.
      - `offsetDirection` 'Before' | 'After', required — Whether the offset applies before or after the source date.
      - `dueOffset` string, required — ISO-8601 duration (e.g. `P7D`, `PT4H30M`).
      - `businessDaysHandlingMode` 'AllDays' | 'BusinessDaysOnly' | 'ShiftToNextBusinessDay', required — How non-business days are handled when calculating the due date. `AllDays` counts every day. `BusinessDaysOnly` counts only Monday–Friday. `ShiftToNextBusinessDay` calculates using all days then moves a Saturday/Sunday result to the next Monday.
  - `links` object[] — Pagination links. When the result has more pages, look for an entry with `name: "next"` — its `href` is the URL to fetch the next page. Absence of `next` means there are no more pages. For single-resource responses this array is typically empty.
    - `name` string, required — Standard link relation name (RFC 5988) indicating this link's role. Common values include `self`, `edit`, `related`, `previous`, `next`.
    - `href` string, required — URL of the linked resource.
    - `rel` 'Approval Task' | 'Approvals' | 'Assignees' | 'Comment' | 'Data Set Records' | 'Data Sets' | 'Form Field Values' | 'Subject Task' | 'Task' | 'Tasks' | 'Users' | 'Webhook' | 'Workflow' | 'Workflow Run' — Optional. The kind of resource this link points to (e.g. `Workflow`, `Task`, `Comment`).
    - `type` 'Api' | 'App', required — Whether this link targets an API endpoint or a Process Street app URL. `Api` — a callable API endpoint you can fetch directly. `App` — a browser-facing URL in the Process Street UI.

## Other responses

- `default`

---

[API](https://skmtc.net/process/apis/process-street-public-api.md) · [All operations](https://skmtc.net/process/apis/process-street-public-api/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/process/process-street-public-api/revisions/6199a9464227/schema)
