withdraw_contract
Cancel a sent contract by providing its unique GUID. This feature on the MCP Server for eSignatures allows users to manage and withdraw contracts efficiently.
Instructions
Withdraws a sent contract.
Input Schema
| Name | Required | Description | Default | 
|---|---|---|---|
| contract_id | Yes | GUID of the contract to be withdrawn. | 
Input Schema (JSON Schema)
{
  "properties": {
    "contract_id": {
      "description": "GUID of the contract to be withdrawn.",
      "type": "string"
    }
  },
  "required": [
    "contract_id"
  ],
  "type": "object"
}