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

# adobe-sign

> eSignature

**Server path:** `/adobe-sign` | **Type:** Application | **PCID required:** Yes

## Tools

| Tool                                                                          | Description                                               |
| ----------------------------------------------------------------------------- | --------------------------------------------------------- |
| [`adobe-sign_get_agreement`](#adobe-sign_get_agreement)                       | Get the status and details of an Adobe Sign agreement     |
| [`adobe-sign_download_signed_document`](#adobe-sign_download_signed_document) | Download the signed document from an Adobe Sign agreement |
| [`adobe-sign_list_agreements`](#adobe-sign_list_agreements)                   | List Adobe Sign agreements                                |

***

## adobe-sign\_get\_agreement

Get the status and details of an Adobe Sign agreement

**Parameters:**

| Parameter     | Type   | Required | Default | Description              |
| ------------- | ------ | -------- | ------- | ------------------------ |
| `agreementId` | string | Yes      | —       | Agreement ID to retrieve |

<Expandable title="inputSchema">
  ```json theme={null}
  {
    "type": "object",
    "properties": {
      "PCID": {
        "type": "string",
        "description": "Pink Connect ID"
      },
      "agreementId": {
        "type": "string",
        "description": "Agreement ID to retrieve"
      }
    },
    "required": [
      "PCID",
      "agreementId"
    ]
  }
  ```
</Expandable>

***

## adobe-sign\_download\_signed\_document

Download the signed document from an Adobe Sign agreement

**Parameters:**

| Parameter           | Type    | Required | Default | Description                                |
| ------------------- | ------- | -------- | ------- | ------------------------------------------ |
| `agreementId`       | string  | Yes      | —       | Agreement ID to download document from     |
| `attachAuditReport` | boolean | No       | `false` | Whether to include audit trail in download |

<Expandable title="inputSchema">
  ```json theme={null}
  {
    "type": "object",
    "properties": {
      "PCID": {
        "type": "string",
        "description": "Pink Connect ID"
      },
      "agreementId": {
        "type": "string",
        "description": "Agreement ID to download document from"
      },
      "attachAuditReport": {
        "type": "boolean",
        "default": false,
        "description": "Whether to include audit trail in download"
      }
    },
    "required": [
      "PCID",
      "agreementId"
    ]
  }
  ```
</Expandable>

***

## adobe-sign\_list\_agreements

List Adobe Sign agreements

**Parameters:**

| Parameter | Type   | Required | Default | Description           |
| --------- | ------ | -------- | ------- | --------------------- |
| `cursor`  | string | No       | —       | Cursor for pagination |

<Expandable title="inputSchema">
  ```json theme={null}
  {
    "type": "object",
    "properties": {
      "PCID": {
        "type": "string",
        "description": "Pink Connect ID"
      },
      "cursor": {
        "type": "string",
        "description": "Cursor for pagination"
      }
    },
    "required": [
      "PCID"
    ]
  }
  ```
</Expandable>
