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.
Server path: /adobe-sign | Type: Application | PCID required: Yes
| Tool | Description |
|---|
adobe-sign_get_agreement | Get the status and details of an Adobe Sign agreement |
adobe-sign_download_signed_document | Download the signed document from an Adobe Sign agreement |
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 |
{
"type": "object",
"properties": {
"PCID": {
"type": "string",
"description": "Pink Connect ID"
},
"agreementId": {
"type": "string",
"description": "Agreement ID to retrieve"
}
},
"required": [
"PCID",
"agreementId"
]
}
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 |
{
"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"
]
}
adobe-sign_list_agreements
List Adobe Sign agreements
Parameters:
| Parameter | Type | Required | Default | Description |
|---|
cursor | string | No | — | Cursor for pagination |
{
"type": "object",
"properties": {
"PCID": {
"type": "string",
"description": "Pink Connect ID"
},
"cursor": {
"type": "string",
"description": "Cursor for pagination"
}
},
"required": [
"PCID"
]
}