Docusign · Arazzo Workflow

DocuSign List Sent Envelopes and Check Status

Version 1.0.0

List envelopes sent in a date range, then fetch full status detail for the first matching envelope.

1 workflow 1 source API 1 provider
View Spec View on GitHub AgreementsContractsDigital Transaction ManagementDocumentsElectronic SignaturesE-SignatureArazzoWorkflows

Provider

docusign

Workflows

list-sent-envelopes-and-check-status
List envelopes by date and status, then detail the first match.
Queries envelopes within a date range and status filter, then retrieves the full status of the first envelope returned.
2 steps inputs: accountId, count, fromDate, status outputs: envelopeId, status, totalSetSize
1
listEnvelopes
List envelopes created on or after the start date matching the requested status, and capture the first envelope id.
2
getEnvelopeDetail
Retrieve full status detail for the first envelope returned, including its recipients.

Source API Descriptions

Arazzo Workflow Specification

Raw ↑
arazzo: 1.0.1
info:
  title: DocuSign List Sent Envelopes and Check Status
  summary: List envelopes sent in a date range, then fetch full status detail for the first matching envelope.
  description: >-
    A monitoring sweep over recent activity. The workflow lists envelopes
    filtered by a sent date range and status, captures the first matching
    envelope id, and then retrieves that envelope's full status detail
    including recipients so a dashboard or audit job can report on the most
    recent agreement. The flow only drills in when the list returns at least one
    envelope. Every step spells out its request inline so the flow can be read
    and executed without opening the underlying OpenAPI description.
  version: 1.0.0
  x-realizes-capability-ids:
  - BC-150.10
  x-capability-derivation:
    method: 'deterministic join: sourceDescriptions -> per-tag OpenAPI -> tag/capability edge. No classification at this step.'
    min_confidence: 0.7
    sources:
    - capability_id: BC-150.10
      capability_name: Contract Management
      spec: docusign-envelopes-api-openapi.yml
      confidence: 0.8
    model: Turbo EA Capabilities by Vincent Verdet — Turbo EA, https://github.com/vincentmakes/turbo-ea-capabilities, CC BY 4.0
sourceDescriptions:
- name: envelopesApi
  url: ../openapi/docusign-envelopes-api-openapi.yml
  type: openapi
workflows:
- workflowId: list-sent-envelopes-and-check-status
  summary: List envelopes by date and status, then detail the first match.
  description: >-
    Queries envelopes within a date range and status filter, then retrieves the
    full status of the first envelope returned.
  inputs:
    type: object
    required:
    - accountId
    - fromDate
    properties:
      accountId:
        type: string
        description: The DocuSign account ID (GUID or short account number).
      fromDate:
        type: string
        description: ISO 8601 start date for the envelope search.
      status:
        type: string
        description: Envelope status to filter on.
        default: sent
      count:
        type: integer
        description: Maximum number of envelopes to return.
        default: 10
  steps:
  - stepId: listEnvelopes
    description: >-
      List envelopes created on or after the start date matching the requested
      status, and capture the first envelope id.
    operationId: Envelopes_ListEnvelopes
    parameters:
    - name: accountId
      in: path
      value: $inputs.accountId
    - name: from_date
      in: query
      value: $inputs.fromDate
    - name: status
      in: query
      value: $inputs.status
    - name: count
      in: query
      value: $inputs.count
    - name: order_by
      in: query
      value: sent
    - name: order
      in: query
      value: desc
    successCriteria:
    - condition: $statusCode == 200
    outputs:
      envelopeId: $response.body#/envelopes/0/envelopeId
      totalSetSize: $response.body#/totalSetSize
    onSuccess:
    - name: hasResults
      type: goto
      stepId: getEnvelopeDetail
      criteria:
      - context: $response.body
        condition: $.envelopes.length > 0
        type: jsonpath
    - name: empty
      type: end
      criteria:
      - context: $response.body
        condition: $.envelopes.length == 0
        type: jsonpath
  - stepId: getEnvelopeDetail
    description: >-
      Retrieve full status detail for the first envelope returned, including its
      recipients.
    operationId: Envelopes_GetEnvelope
    parameters:
    - name: accountId
      in: path
      value: $inputs.accountId
    - name: envelopeId
      in: path
      value: $steps.listEnvelopes.outputs.envelopeId
    - name: include
      in: query
      value: recipients
    successCriteria:
    - condition: $statusCode == 200
    outputs:
      status: $response.body#/status
      statusChangedDateTime: $response.body#/statusChangedDateTime
  outputs:
    envelopeId: $steps.listEnvelopes.outputs.envelopeId
    status: $steps.getEnvelopeDetail.outputs.status
    totalSetSize: $steps.listEnvelopes.outputs.totalSetSize

Work with this as data

Every workflow here is available over the APIs.io API and to AI agents over MCP.

MCP server

One button, every client — Claude, Cursor, VS Code and the rest.

https://apis.io/mcp

Tools for arazzo workflows

4 MCP tools reach this
  • find_arazzoBrowse and filter every workflow in the catalog.
  • apis_io_searchSTART HERE — APIs, providers and tags for one query, each with its total.
  • resolveTurn a domain, URL or GitHub org into the provider it belongs to.
  • find_cohortsEvery scored population of providers in the catalog.
All 92 tools →

Call it yourself

curl for this page
This workflow
curl "https://apis.io/api/v1/arazzo/docusign-list-sent-envelopes-and-check-status-workflow"
All arazzo workflows
curl "https://apis.io/api/v1/arazzo?limit=25"

Discovery needs no key. Ratings and market analysis are Pro.

Get an API key

Free tier, no form to fill in. Signing in shares your email address with us — we store it to create your key and to recognise you if you sign in with another provider. See our Privacy Policy and Terms.

A second provider on the same verified email joins the account you already have.