---
title: "List signing requests"
method: GET
path: "/attachments/signing-requests"
tags: ["Attachments"]
---

# List signing requests

`GET /attachments/signing-requests`

Returns a list of signing requests. Uses cursor pagination. Optionally filter by attachment IDs.

## Query parameters

- `limit` integer
- `cursor` string
- `modifiedSince` string, date-time
- `attachmentIds` string[]

## Response `200`

Successfully retrieved signing requests. Returns items with pagination info containing the cursor for the next page.

- GetSigningRequestsResponseDto
  - `items` AttachmentSigningRequestDto[], required
    - `id` string, required
    - `envelopeId` string, nullable, required
    - `status` 'CREATED' | 'SENT' | 'DELIVERED' | 'COMPLETED' | 'DECLINED' | 'VOIDED', required
    - `sender` UserBadgeDto, required
      - `id` string, required
      - `name` string, required
      - `avatarUrl` string, nullable, required
      - `deactivatedAt` string, date-time, required
    - `sentAt` string, date-time, required
    - `completedAt` string, date-time, required
    - `createdAt` string, date-time, required
    - `recipients` AttachmentSigningRecipientDto[], required
      - `id` string, required
      - `status` 'CREATED' | 'SENT' | 'DELIVERED' | 'SIGNED' | 'COMPLETED' | 'DECLINED' | 'AUTO_RESPONDED', required
      - `name` string, required
      - `emailAddress` string, required
      - `signedAt` string, date-time, required
      - `declinedAt` string, date-time, required
      - `candidate` IdDto, required
        - `id` string, required
      - `clientContact` IdDto, required
        - `id` string, required
    - `documents` AttachmentDto[], required
      - `attachmentId` string, required
      - `attachmentName` string, nullable, required
      - `type` 'UNASSIGNED' | 'CV', nullable, required
      - `customType` AttachmentCustomTypeDto, required
        - `id` string, required
        - `name` string, required
      - `createdAt` string, date-time, required
      - `extension` string, nullable, required
      - `size` number, nullable, required
  - `pagination` SigningRequestCursorPaginationDto, required
    - `cursor` string, nullable, required

## Other responses

- `400` — Bad request - invalid query parameters (e.g., limit out of range, invalid date format)
- `401` — Unauthorized - invalid or missing authentication
- `500` — Error response

---

[API](https://skmtc.net/spott/apis/spott-webhooks.md) · [All operations](https://skmtc.net/spott/apis/spott-webhooks/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/spott/spott-webhooks/versions/ad1f8c51cf0a/schema)
