{
  "schemaVersion": "1.0",
  "item": {
    "slug": "signnow",
    "name": "SignNow",
    "source": "tencent",
    "type": "skill",
    "category": "开发工具",
    "sourceUrl": "https://clawhub.ai/byungkyu/signnow",
    "canonicalUrl": "https://clawhub.ai/byungkyu/signnow",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadMode": "redirect",
    "downloadUrl": "/downloads/signnow",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=signnow",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "installMethod": "Manual import",
    "extraction": "Extract archive",
    "prerequisites": [
      "OpenClaw"
    ],
    "packageFormat": "ZIP package",
    "includedAssets": [
      "SKILL.md",
      "LICENSE.txt"
    ],
    "primaryDoc": "SKILL.md",
    "quickSetup": [
      "Download the package from Yavira.",
      "Extract the archive and review SKILL.md first.",
      "Import or place the package into your OpenClaw setup."
    ],
    "agentAssist": {
      "summary": "Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.",
      "steps": [
        "Download the package from Yavira.",
        "Extract it into a folder your agent can access.",
        "Paste one of the prompts below and point your agent at the extracted folder."
      ],
      "prompts": [
        {
          "label": "New install",
          "body": "I downloaded a skill package from Yavira. Read SKILL.md from the extracted folder and install it by following the included instructions. Tell me what you changed and call out any manual steps you could not complete."
        },
        {
          "label": "Upgrade existing",
          "body": "I downloaded an updated skill package from Yavira. Read SKILL.md from the extracted folder, compare it with my current installation, and upgrade it while preserving any custom configuration unless the package docs explicitly say otherwise. Summarize what changed and any follow-up checks I should run."
        }
      ]
    },
    "sourceHealth": {
      "source": "tencent",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-05-07T17:22:31.273Z",
      "expiresAt": "2026-05-14T17:22:31.273Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=afrexai-annual-report",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=afrexai-annual-report",
        "contentDisposition": "attachment; filename=\"afrexai-annual-report-1.0.0.zip\"",
        "redirectLocation": null,
        "bodySnippet": null
      },
      "scope": "source",
      "summary": "Source download looks usable.",
      "detail": "Yavira can redirect you to the upstream package for this source.",
      "primaryActionLabel": "Download for OpenClaw",
      "primaryActionHref": "/downloads/signnow"
    },
    "validation": {
      "installChecklist": [
        "Use the Yavira download entry.",
        "Review SKILL.md after the package is downloaded.",
        "Confirm the extracted package contains the expected setup assets."
      ],
      "postInstallChecks": [
        "Confirm the extracted package includes the expected docs or setup files.",
        "Validate the skill or prompts are available in your target agent workspace.",
        "Capture any manual follow-up steps the agent could not complete."
      ]
    },
    "downloadPageUrl": "https://openagent3.xyz/downloads/signnow",
    "agentPageUrl": "https://openagent3.xyz/skills/signnow/agent",
    "manifestUrl": "https://openagent3.xyz/skills/signnow/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/signnow/agent.md"
  },
  "agentAssist": {
    "summary": "Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.",
    "steps": [
      "Download the package from Yavira.",
      "Extract it into a folder your agent can access.",
      "Paste one of the prompts below and point your agent at the extracted folder."
    ],
    "prompts": [
      {
        "label": "New install",
        "body": "I downloaded a skill package from Yavira. Read SKILL.md from the extracted folder and install it by following the included instructions. Tell me what you changed and call out any manual steps you could not complete."
      },
      {
        "label": "Upgrade existing",
        "body": "I downloaded an updated skill package from Yavira. Read SKILL.md from the extracted folder, compare it with my current installation, and upgrade it while preserving any custom configuration unless the package docs explicitly say otherwise. Summarize what changed and any follow-up checks I should run."
      }
    ]
  },
  "documentation": {
    "source": "clawhub",
    "primaryDoc": "SKILL.md",
    "sections": [
      {
        "title": "SignNow",
        "body": "Access the SignNow API with managed OAuth authentication. Upload documents, send signature invites, manage templates, and automate e-signature workflows."
      },
      {
        "title": "Quick Start",
        "body": "# Get current user info\npython <<'EOF'\nimport urllib.request, os, json\nreq = urllib.request.Request('https://gateway.maton.ai/signnow/user')\nreq.add_header('Authorization', f'Bearer {os.environ[\"MATON_API_KEY\"]}')\nprint(json.dumps(json.load(urllib.request.urlopen(req)), indent=2))\nEOF"
      },
      {
        "title": "Base URL",
        "body": "https://gateway.maton.ai/signnow/{resource}\n\nThe gateway proxies requests to api.signnow.com and automatically injects your OAuth token."
      },
      {
        "title": "Authentication",
        "body": "All requests require the Maton API key in the Authorization header:\n\nAuthorization: Bearer $MATON_API_KEY\n\nEnvironment Variable: Set your API key as MATON_API_KEY:\n\nexport MATON_API_KEY=\"YOUR_API_KEY\""
      },
      {
        "title": "Getting Your API Key",
        "body": "Sign in or create an account at maton.ai\nGo to maton.ai/settings\nCopy your API key"
      },
      {
        "title": "Connection Management",
        "body": "Manage your SignNow OAuth connections at https://ctrl.maton.ai."
      },
      {
        "title": "List Connections",
        "body": "python <<'EOF'\nimport urllib.request, os, json\nreq = urllib.request.Request('https://ctrl.maton.ai/connections?app=signnow&status=ACTIVE')\nreq.add_header('Authorization', f'Bearer {os.environ[\"MATON_API_KEY\"]}')\nprint(json.dumps(json.load(urllib.request.urlopen(req)), indent=2))\nEOF"
      },
      {
        "title": "Create Connection",
        "body": "python <<'EOF'\nimport urllib.request, os, json\ndata = json.dumps({'app': 'signnow'}).encode()\nreq = urllib.request.Request('https://ctrl.maton.ai/connections', data=data, method='POST')\nreq.add_header('Authorization', f'Bearer {os.environ[\"MATON_API_KEY\"]}')\nreq.add_header('Content-Type', 'application/json')\nprint(json.dumps(json.load(urllib.request.urlopen(req)), indent=2))\nEOF"
      },
      {
        "title": "Get Connection",
        "body": "python <<'EOF'\nimport urllib.request, os, json\nreq = urllib.request.Request('https://ctrl.maton.ai/connections/{connection_id}')\nreq.add_header('Authorization', f'Bearer {os.environ[\"MATON_API_KEY\"]}')\nprint(json.dumps(json.load(urllib.request.urlopen(req)), indent=2))\nEOF\n\nResponse:\n\n{\n  \"connection\": {\n    \"connection_id\": \"5ff5474b-5f21-41ba-8bf3-afb33cce5a75\",\n    \"status\": \"ACTIVE\",\n    \"creation_time\": \"2026-02-08T20:47:23.019763Z\",\n    \"last_updated_time\": \"2026-02-08T20:50:32.210896Z\",\n    \"url\": \"https://connect.maton.ai/?session_token=...\",\n    \"app\": \"signnow\",\n    \"metadata\": {}\n  }\n}\n\nOpen the returned url in a browser to complete OAuth authorization."
      },
      {
        "title": "Delete Connection",
        "body": "python <<'EOF'\nimport urllib.request, os, json\nreq = urllib.request.Request('https://ctrl.maton.ai/connections/{connection_id}', method='DELETE')\nreq.add_header('Authorization', f'Bearer {os.environ[\"MATON_API_KEY\"]}')\nprint(json.dumps(json.load(urllib.request.urlopen(req)), indent=2))\nEOF"
      },
      {
        "title": "Specifying Connection",
        "body": "If you have multiple SignNow connections, specify which one to use with the Maton-Connection header:\n\npython <<'EOF'\nimport urllib.request, os, json\nreq = urllib.request.Request('https://gateway.maton.ai/signnow/user')\nreq.add_header('Authorization', f'Bearer {os.environ[\"MATON_API_KEY\"]}')\nreq.add_header('Maton-Connection', '5ff5474b-5f21-41ba-8bf3-afb33cce5a75')\nprint(json.dumps(json.load(urllib.request.urlopen(req)), indent=2))\nEOF\n\nIf omitted, the gateway uses the default (oldest) active connection."
      },
      {
        "title": "User Operations",
        "body": "Get Current User\n\nGET /signnow/user\n\nResponse:\n\n{\n  \"id\": \"59cce130e93a4e9488522ca67e3a6779f3e48a72\",\n  \"first_name\": \"Chris\",\n  \"last_name\": \"Kim\",\n  \"active\": \"1\",\n  \"verified\": true,\n  \"emails\": [\"chris@example.com\"],\n  \"primary_email\": \"chris@example.com\",\n  \"document_count\": 0,\n  \"subscriptions\": [...],\n  \"teams\": [...],\n  \"organization\": {...}\n}\n\nGet User Documents\n\nGET /signnow/user/documents\n\nResponse:\n\n[\n  {\n    \"id\": \"c63a7bc73f03449c987bf0feaa36e96212408352\",\n    \"document_name\": \"Contract\",\n    \"page_count\": \"3\",\n    \"created\": \"1770598603\",\n    \"updated\": \"1770598603\",\n    \"original_filename\": \"contract.pdf\",\n    \"owner\": \"chris@example.com\",\n    \"template\": false,\n    \"roles\": [],\n    \"field_invites\": [],\n    \"signatures\": []\n  }\n]"
      },
      {
        "title": "Document Operations",
        "body": "Upload Document\n\nDocuments must be uploaded as multipart form data with a PDF file:\n\npython <<'EOF'\nimport urllib.request, os, json\n\ndef encode_multipart_formdata(files):\n    boundary = '----WebKitFormBoundary7MA4YWxkTrZu0gW'\n    lines = []\n    for (key, filename, content) in files:\n        lines.append(f'--{boundary}'.encode())\n        lines.append(f'Content-Disposition: form-data; name=\"{key}\"; filename=\"{filename}\"'.encode())\n        lines.append(b'Content-Type: application/pdf')\n        lines.append(b'')\n        lines.append(content)\n    lines.append(f'--{boundary}--'.encode())\n    lines.append(b'')\n    body = b'\\r\\n'.join(lines)\n    content_type = f'multipart/form-data; boundary={boundary}'\n    return content_type, body\n\nwith open('document.pdf', 'rb') as f:\n    file_content = f.read()\n\ncontent_type, body = encode_multipart_formdata([('file', 'document.pdf', file_content)])\nreq = urllib.request.Request('https://gateway.maton.ai/signnow/document', data=body, method='POST')\nreq.add_header('Authorization', f'Bearer {os.environ[\"MATON_API_KEY\"]}')\nreq.add_header('Content-Type', content_type)\nprint(json.dumps(json.load(urllib.request.urlopen(req)), indent=2))\nEOF\n\nResponse:\n\n{\n  \"id\": \"c63a7bc73f03449c987bf0feaa36e96212408352\"\n}\n\nGet Document\n\nGET /signnow/document/{document_id}\n\nResponse:\n\n{\n  \"id\": \"c63a7bc73f03449c987bf0feaa36e96212408352\",\n  \"document_name\": \"Contract\",\n  \"page_count\": \"3\",\n  \"created\": \"1770598603\",\n  \"updated\": \"1770598603\",\n  \"original_filename\": \"contract.pdf\",\n  \"owner\": \"chris@example.com\",\n  \"template\": false,\n  \"roles\": [],\n  \"viewer_roles\": [],\n  \"attachments\": [],\n  \"fields\": [],\n  \"signatures\": [],\n  \"texts\": [],\n  \"checks\": []\n}\n\nUpdate Document\n\nPUT /signnow/document/{document_id}\nContent-Type: application/json\n\n{\n  \"document_name\": \"Updated Contract Name\"\n}\n\nResponse:\n\n{\n  \"id\": \"c63a7bc73f03449c987bf0feaa36e96212408352\",\n  \"signatures\": [],\n  \"texts\": [],\n  \"checks\": []\n}\n\nDownload Document\n\nGET /signnow/document/{document_id}/download?type=collapsed\n\nReturns the PDF file as binary data.\n\nQuery parameters:\n\ntype - Download type: collapsed (flattened PDF), zip (all pages as images)\n\nGet Document History\n\nGET /signnow/document/{document_id}/historyfull\n\nResponse:\n\n[\n  {\n    \"unique_id\": \"c4eb89d84b2b407ba8ec1cf4d25b8b435bcef69d\",\n    \"user_id\": \"59cce130e93a4e9488522ca67e3a6779f3e48a72\",\n    \"document_id\": \"c63a7bc73f03449c987bf0feaa36e96212408352\",\n    \"email\": \"chris@example.com\",\n    \"created\": 1770598603,\n    \"event\": \"created_document\"\n  }\n]\n\nMove Document to Folder\n\nPOST /signnow/document/{document_id}/move\nContent-Type: application/json\n\n{\n  \"folder_id\": \"5e2798bdd3d642c3aefebe333bb5b723d6db01a4\"\n}\n\nResponse:\n\n{\n  \"result\": \"success\"\n}\n\nMerge Documents\n\nCombines multiple documents into a single PDF:\n\nPOST /signnow/document/merge\nContent-Type: application/json\n\n{\n  \"name\": \"Merged Document\",\n  \"document_ids\": [\"doc_id_1\", \"doc_id_2\"]\n}\n\nReturns the merged PDF as binary data.\n\nDelete Document\n\nDELETE /signnow/document/{document_id}\n\nResponse:\n\n{\n  \"status\": \"success\"\n}"
      },
      {
        "title": "Template Operations",
        "body": "Create Template from Document\n\nPOST /signnow/template\nContent-Type: application/json\n\n{\n  \"document_id\": \"c63a7bc73f03449c987bf0feaa36e96212408352\",\n  \"document_name\": \"Contract Template\"\n}\n\nResponse:\n\n{\n  \"id\": \"47941baee4f74784bc1d37c25e88836fc38ed501\"\n}\n\nCreate Document from Template\n\nPOST /signnow/template/{template_id}/copy\nContent-Type: application/json\n\n{\n  \"document_name\": \"New Contract from Template\"\n}\n\nResponse:\n\n{\n  \"id\": \"08f5f4a2cc1a4d6c8a986adbf90be2308807d4ae\",\n  \"name\": \"New Contract from Template\"\n}"
      },
      {
        "title": "Signature Invite Operations",
        "body": "Send Freeform Invite\n\nSend a document for signature:\n\nPOST /signnow/document/{document_id}/invite\nContent-Type: application/json\n\n{\n  \"to\": \"signer@example.com\",\n  \"from\": \"sender@example.com\"\n}\n\nResponse:\n\n{\n  \"result\": \"success\",\n  \"id\": \"c38a57f08f2e48d98b5de52f75f7b1dd0a074c00\",\n  \"callback_url\": \"none\"\n}\n\nNote: Custom subject and message require a paid subscription plan.\n\nCreate Signing Link\n\nCreate an embeddable signing link (requires document fields):\n\nPOST /signnow/link\nContent-Type: application/json\n\n{\n  \"document_id\": \"c63a7bc73f03449c987bf0feaa36e96212408352\"\n}\n\nNote: Document must have signature fields added before creating a signing link."
      },
      {
        "title": "Folder Operations",
        "body": "Get All Folders\n\nGET /signnow/folder\n\nResponse:\n\n{\n  \"id\": \"2ea71a3a9d06470d8e5ec0df6122971f47db7706\",\n  \"name\": \"Root\",\n  \"system_folder\": true,\n  \"folders\": [\n    {\n      \"id\": \"5e2798bdd3d642c3aefebe333bb5b723d6db01a4\",\n      \"name\": \"Documents\",\n      \"document_count\": \"5\",\n      \"template_count\": \"2\"\n    },\n    {\n      \"id\": \"fafdef6de6d947fc84627e4ddeed6987bfeee02d\",\n      \"name\": \"Templates\",\n      \"document_count\": \"0\",\n      \"template_count\": \"3\"\n    },\n    {\n      \"id\": \"6063688b1e724a25aa98befcc3f2cb7795be7da1\",\n      \"name\": \"Trash Bin\",\n      \"document_count\": \"0\"\n    }\n  ],\n  \"total_documents\": 0,\n  \"documents\": []\n}\n\nGet Folder by ID\n\nGET /signnow/folder/{folder_id}\n\nResponse:\n\n{\n  \"id\": \"5e2798bdd3d642c3aefebe333bb5b723d6db01a4\",\n  \"name\": \"Documents\",\n  \"user_id\": \"59cce130e93a4e9488522ca67e3a6779f3e48a72\",\n  \"parent_id\": \"2ea71a3a9d06470d8e5ec0df6122971f47db7706\",\n  \"system_folder\": true,\n  \"folders\": [],\n  \"total_documents\": 5,\n  \"documents\": [...]\n}"
      },
      {
        "title": "Webhook (Event Subscription) Operations",
        "body": "List Event Subscriptions\n\nGET /signnow/event_subscription\n\nResponse:\n\n{\n  \"subscriptions\": [\n    {\n      \"id\": \"b1d6700dfb0444ed9196e913b2515ae8d5f731a7\",\n      \"event\": \"document.complete\",\n      \"created\": \"1770598678\",\n      \"callback_url\": \"https://example.com/webhook\"\n    }\n  ]\n}\n\nCreate Event Subscription\n\nPOST /signnow/event_subscription\nContent-Type: application/json\n\n{\n  \"event\": \"document.complete\",\n  \"callback_url\": \"https://example.com/webhook\"\n}\n\nResponse:\n\n{\n  \"id\": \"b1d6700dfb0444ed9196e913b2515ae8d5f731a7\",\n  \"created\": 1770598678\n}\n\nAvailable Events:\n\ndocument.create - Document created\ndocument.update - Document updated\ndocument.delete - Document deleted\ndocument.complete - Document signed by all parties\ninvite.create - Invite sent\ninvite.update - Invite updated\n\nDelete Event Subscription\n\nDELETE /signnow/event_subscription/{subscription_id}\n\nResponse:\n\n{\n  \"id\": \"b1d6700dfb0444ed9196e913b2515ae8d5f731a7\",\n  \"status\": \"deleted\"\n}"
      },
      {
        "title": "JavaScript",
        "body": "const response = await fetch(\n  'https://gateway.maton.ai/signnow/user',\n  {\n    headers: {\n      'Authorization': `Bearer ${process.env.MATON_API_KEY}`\n    }\n  }\n);\nconst data = await response.json();"
      },
      {
        "title": "Python",
        "body": "import os\nimport requests\n\nresponse = requests.get(\n    'https://gateway.maton.ai/signnow/user',\n    headers={'Authorization': f'Bearer {os.environ[\"MATON_API_KEY\"]}'}\n)\ndata = response.json()"
      },
      {
        "title": "Python (Upload Document)",
        "body": "import os\nimport requests\n\nwith open('document.pdf', 'rb') as f:\n    response = requests.post(\n        'https://gateway.maton.ai/signnow/document',\n        headers={'Authorization': f'Bearer {os.environ[\"MATON_API_KEY\"]}'},\n        files={'file': ('document.pdf', f, 'application/pdf')}\n    )\ndoc = response.json()\nprint(f\"Uploaded document: {doc['id']}\")"
      },
      {
        "title": "Python (Send Invite)",
        "body": "import os\nimport requests\n\ndoc_id = \"c63a7bc73f03449c987bf0feaa36e96212408352\"\nresponse = requests.post(\n    f'https://gateway.maton.ai/signnow/document/{doc_id}/invite',\n    headers={\n        'Authorization': f'Bearer {os.environ[\"MATON_API_KEY\"]}',\n        'Content-Type': 'application/json'\n    },\n    json={\n        'to': 'signer@example.com',\n        'from': 'sender@example.com'\n    }\n)\nresult = response.json()\nprint(f\"Invite sent: {result['id']}\")"
      },
      {
        "title": "Notes",
        "body": "Documents must be in PDF format for upload\nSupported file types: PDF, DOC, DOCX, ODT, RTF, PNG, JPG\nSystem folders (Documents, Templates, Archive, Trash Bin) cannot be renamed or deleted\nCreating signing links requires documents to have signature fields\nCustom invite subject/message requires a paid subscription\nRate limit in development mode: 500 requests/hour per application\nIMPORTANT: When piping curl output to jq or other commands, environment variables like $MATON_API_KEY may not expand correctly in some shell environments"
      },
      {
        "title": "Error Handling",
        "body": "StatusMeaning400Missing SignNow connection or bad request401Invalid or missing Maton API key403Insufficient permissions or subscription required404Resource not found405Method not allowed429Rate limited4xx/5xxPassthrough error from SignNow API\n\nSignNow errors include detailed messages:\n\n{\n  \"errors\": [\n    {\n      \"code\": 65578,\n      \"message\": \"Invalid file type.\"\n    }\n  ]\n}"
      },
      {
        "title": "Troubleshooting: API Key Issues",
        "body": "Check that the MATON_API_KEY environment variable is set:\n\necho $MATON_API_KEY\n\nVerify the API key is valid by listing connections:\n\npython <<'EOF'\nimport urllib.request, os, json\nreq = urllib.request.Request('https://ctrl.maton.ai/connections')\nreq.add_header('Authorization', f'Bearer {os.environ[\"MATON_API_KEY\"]}')\nprint(json.dumps(json.load(urllib.request.urlopen(req)), indent=2))\nEOF"
      },
      {
        "title": "Troubleshooting: Invalid App Name",
        "body": "Ensure your URL path starts with signnow. For example:\n\nCorrect: https://gateway.maton.ai/signnow/user\nIncorrect: https://gateway.maton.ai/user"
      },
      {
        "title": "Resources",
        "body": "SignNow API Reference\nSignNow Developer Portal\nSignNow Postman Collection\nSignNow SDKs\nMaton Community\nMaton Support"
      }
    ],
    "body": "SignNow\n\nAccess the SignNow API with managed OAuth authentication. Upload documents, send signature invites, manage templates, and automate e-signature workflows.\n\nQuick Start\n# Get current user info\npython <<'EOF'\nimport urllib.request, os, json\nreq = urllib.request.Request('https://gateway.maton.ai/signnow/user')\nreq.add_header('Authorization', f'Bearer {os.environ[\"MATON_API_KEY\"]}')\nprint(json.dumps(json.load(urllib.request.urlopen(req)), indent=2))\nEOF\n\nBase URL\nhttps://gateway.maton.ai/signnow/{resource}\n\n\nThe gateway proxies requests to api.signnow.com and automatically injects your OAuth token.\n\nAuthentication\n\nAll requests require the Maton API key in the Authorization header:\n\nAuthorization: Bearer $MATON_API_KEY\n\n\nEnvironment Variable: Set your API key as MATON_API_KEY:\n\nexport MATON_API_KEY=\"YOUR_API_KEY\"\n\nGetting Your API Key\nSign in or create an account at maton.ai\nGo to maton.ai/settings\nCopy your API key\nConnection Management\n\nManage your SignNow OAuth connections at https://ctrl.maton.ai.\n\nList Connections\npython <<'EOF'\nimport urllib.request, os, json\nreq = urllib.request.Request('https://ctrl.maton.ai/connections?app=signnow&status=ACTIVE')\nreq.add_header('Authorization', f'Bearer {os.environ[\"MATON_API_KEY\"]}')\nprint(json.dumps(json.load(urllib.request.urlopen(req)), indent=2))\nEOF\n\nCreate Connection\npython <<'EOF'\nimport urllib.request, os, json\ndata = json.dumps({'app': 'signnow'}).encode()\nreq = urllib.request.Request('https://ctrl.maton.ai/connections', data=data, method='POST')\nreq.add_header('Authorization', f'Bearer {os.environ[\"MATON_API_KEY\"]}')\nreq.add_header('Content-Type', 'application/json')\nprint(json.dumps(json.load(urllib.request.urlopen(req)), indent=2))\nEOF\n\nGet Connection\npython <<'EOF'\nimport urllib.request, os, json\nreq = urllib.request.Request('https://ctrl.maton.ai/connections/{connection_id}')\nreq.add_header('Authorization', f'Bearer {os.environ[\"MATON_API_KEY\"]}')\nprint(json.dumps(json.load(urllib.request.urlopen(req)), indent=2))\nEOF\n\n\nResponse:\n\n{\n  \"connection\": {\n    \"connection_id\": \"5ff5474b-5f21-41ba-8bf3-afb33cce5a75\",\n    \"status\": \"ACTIVE\",\n    \"creation_time\": \"2026-02-08T20:47:23.019763Z\",\n    \"last_updated_time\": \"2026-02-08T20:50:32.210896Z\",\n    \"url\": \"https://connect.maton.ai/?session_token=...\",\n    \"app\": \"signnow\",\n    \"metadata\": {}\n  }\n}\n\n\nOpen the returned url in a browser to complete OAuth authorization.\n\nDelete Connection\npython <<'EOF'\nimport urllib.request, os, json\nreq = urllib.request.Request('https://ctrl.maton.ai/connections/{connection_id}', method='DELETE')\nreq.add_header('Authorization', f'Bearer {os.environ[\"MATON_API_KEY\"]}')\nprint(json.dumps(json.load(urllib.request.urlopen(req)), indent=2))\nEOF\n\nSpecifying Connection\n\nIf you have multiple SignNow connections, specify which one to use with the Maton-Connection header:\n\npython <<'EOF'\nimport urllib.request, os, json\nreq = urllib.request.Request('https://gateway.maton.ai/signnow/user')\nreq.add_header('Authorization', f'Bearer {os.environ[\"MATON_API_KEY\"]}')\nreq.add_header('Maton-Connection', '5ff5474b-5f21-41ba-8bf3-afb33cce5a75')\nprint(json.dumps(json.load(urllib.request.urlopen(req)), indent=2))\nEOF\n\n\nIf omitted, the gateway uses the default (oldest) active connection.\n\nAPI Reference\nUser Operations\nGet Current User\nGET /signnow/user\n\n\nResponse:\n\n{\n  \"id\": \"59cce130e93a4e9488522ca67e3a6779f3e48a72\",\n  \"first_name\": \"Chris\",\n  \"last_name\": \"Kim\",\n  \"active\": \"1\",\n  \"verified\": true,\n  \"emails\": [\"chris@example.com\"],\n  \"primary_email\": \"chris@example.com\",\n  \"document_count\": 0,\n  \"subscriptions\": [...],\n  \"teams\": [...],\n  \"organization\": {...}\n}\n\nGet User Documents\nGET /signnow/user/documents\n\n\nResponse:\n\n[\n  {\n    \"id\": \"c63a7bc73f03449c987bf0feaa36e96212408352\",\n    \"document_name\": \"Contract\",\n    \"page_count\": \"3\",\n    \"created\": \"1770598603\",\n    \"updated\": \"1770598603\",\n    \"original_filename\": \"contract.pdf\",\n    \"owner\": \"chris@example.com\",\n    \"template\": false,\n    \"roles\": [],\n    \"field_invites\": [],\n    \"signatures\": []\n  }\n]\n\nDocument Operations\nUpload Document\n\nDocuments must be uploaded as multipart form data with a PDF file:\n\npython <<'EOF'\nimport urllib.request, os, json\n\ndef encode_multipart_formdata(files):\n    boundary = '----WebKitFormBoundary7MA4YWxkTrZu0gW'\n    lines = []\n    for (key, filename, content) in files:\n        lines.append(f'--{boundary}'.encode())\n        lines.append(f'Content-Disposition: form-data; name=\"{key}\"; filename=\"{filename}\"'.encode())\n        lines.append(b'Content-Type: application/pdf')\n        lines.append(b'')\n        lines.append(content)\n    lines.append(f'--{boundary}--'.encode())\n    lines.append(b'')\n    body = b'\\r\\n'.join(lines)\n    content_type = f'multipart/form-data; boundary={boundary}'\n    return content_type, body\n\nwith open('document.pdf', 'rb') as f:\n    file_content = f.read()\n\ncontent_type, body = encode_multipart_formdata([('file', 'document.pdf', file_content)])\nreq = urllib.request.Request('https://gateway.maton.ai/signnow/document', data=body, method='POST')\nreq.add_header('Authorization', f'Bearer {os.environ[\"MATON_API_KEY\"]}')\nreq.add_header('Content-Type', content_type)\nprint(json.dumps(json.load(urllib.request.urlopen(req)), indent=2))\nEOF\n\n\nResponse:\n\n{\n  \"id\": \"c63a7bc73f03449c987bf0feaa36e96212408352\"\n}\n\nGet Document\nGET /signnow/document/{document_id}\n\n\nResponse:\n\n{\n  \"id\": \"c63a7bc73f03449c987bf0feaa36e96212408352\",\n  \"document_name\": \"Contract\",\n  \"page_count\": \"3\",\n  \"created\": \"1770598603\",\n  \"updated\": \"1770598603\",\n  \"original_filename\": \"contract.pdf\",\n  \"owner\": \"chris@example.com\",\n  \"template\": false,\n  \"roles\": [],\n  \"viewer_roles\": [],\n  \"attachments\": [],\n  \"fields\": [],\n  \"signatures\": [],\n  \"texts\": [],\n  \"checks\": []\n}\n\nUpdate Document\nPUT /signnow/document/{document_id}\nContent-Type: application/json\n\n{\n  \"document_name\": \"Updated Contract Name\"\n}\n\n\nResponse:\n\n{\n  \"id\": \"c63a7bc73f03449c987bf0feaa36e96212408352\",\n  \"signatures\": [],\n  \"texts\": [],\n  \"checks\": []\n}\n\nDownload Document\nGET /signnow/document/{document_id}/download?type=collapsed\n\n\nReturns the PDF file as binary data.\n\nQuery parameters:\n\ntype - Download type: collapsed (flattened PDF), zip (all pages as images)\nGet Document History\nGET /signnow/document/{document_id}/historyfull\n\n\nResponse:\n\n[\n  {\n    \"unique_id\": \"c4eb89d84b2b407ba8ec1cf4d25b8b435bcef69d\",\n    \"user_id\": \"59cce130e93a4e9488522ca67e3a6779f3e48a72\",\n    \"document_id\": \"c63a7bc73f03449c987bf0feaa36e96212408352\",\n    \"email\": \"chris@example.com\",\n    \"created\": 1770598603,\n    \"event\": \"created_document\"\n  }\n]\n\nMove Document to Folder\nPOST /signnow/document/{document_id}/move\nContent-Type: application/json\n\n{\n  \"folder_id\": \"5e2798bdd3d642c3aefebe333bb5b723d6db01a4\"\n}\n\n\nResponse:\n\n{\n  \"result\": \"success\"\n}\n\nMerge Documents\n\nCombines multiple documents into a single PDF:\n\nPOST /signnow/document/merge\nContent-Type: application/json\n\n{\n  \"name\": \"Merged Document\",\n  \"document_ids\": [\"doc_id_1\", \"doc_id_2\"]\n}\n\n\nReturns the merged PDF as binary data.\n\nDelete Document\nDELETE /signnow/document/{document_id}\n\n\nResponse:\n\n{\n  \"status\": \"success\"\n}\n\nTemplate Operations\nCreate Template from Document\nPOST /signnow/template\nContent-Type: application/json\n\n{\n  \"document_id\": \"c63a7bc73f03449c987bf0feaa36e96212408352\",\n  \"document_name\": \"Contract Template\"\n}\n\n\nResponse:\n\n{\n  \"id\": \"47941baee4f74784bc1d37c25e88836fc38ed501\"\n}\n\nCreate Document from Template\nPOST /signnow/template/{template_id}/copy\nContent-Type: application/json\n\n{\n  \"document_name\": \"New Contract from Template\"\n}\n\n\nResponse:\n\n{\n  \"id\": \"08f5f4a2cc1a4d6c8a986adbf90be2308807d4ae\",\n  \"name\": \"New Contract from Template\"\n}\n\nSignature Invite Operations\nSend Freeform Invite\n\nSend a document for signature:\n\nPOST /signnow/document/{document_id}/invite\nContent-Type: application/json\n\n{\n  \"to\": \"signer@example.com\",\n  \"from\": \"sender@example.com\"\n}\n\n\nResponse:\n\n{\n  \"result\": \"success\",\n  \"id\": \"c38a57f08f2e48d98b5de52f75f7b1dd0a074c00\",\n  \"callback_url\": \"none\"\n}\n\n\nNote: Custom subject and message require a paid subscription plan.\n\nCreate Signing Link\n\nCreate an embeddable signing link (requires document fields):\n\nPOST /signnow/link\nContent-Type: application/json\n\n{\n  \"document_id\": \"c63a7bc73f03449c987bf0feaa36e96212408352\"\n}\n\n\nNote: Document must have signature fields added before creating a signing link.\n\nFolder Operations\nGet All Folders\nGET /signnow/folder\n\n\nResponse:\n\n{\n  \"id\": \"2ea71a3a9d06470d8e5ec0df6122971f47db7706\",\n  \"name\": \"Root\",\n  \"system_folder\": true,\n  \"folders\": [\n    {\n      \"id\": \"5e2798bdd3d642c3aefebe333bb5b723d6db01a4\",\n      \"name\": \"Documents\",\n      \"document_count\": \"5\",\n      \"template_count\": \"2\"\n    },\n    {\n      \"id\": \"fafdef6de6d947fc84627e4ddeed6987bfeee02d\",\n      \"name\": \"Templates\",\n      \"document_count\": \"0\",\n      \"template_count\": \"3\"\n    },\n    {\n      \"id\": \"6063688b1e724a25aa98befcc3f2cb7795be7da1\",\n      \"name\": \"Trash Bin\",\n      \"document_count\": \"0\"\n    }\n  ],\n  \"total_documents\": 0,\n  \"documents\": []\n}\n\nGet Folder by ID\nGET /signnow/folder/{folder_id}\n\n\nResponse:\n\n{\n  \"id\": \"5e2798bdd3d642c3aefebe333bb5b723d6db01a4\",\n  \"name\": \"Documents\",\n  \"user_id\": \"59cce130e93a4e9488522ca67e3a6779f3e48a72\",\n  \"parent_id\": \"2ea71a3a9d06470d8e5ec0df6122971f47db7706\",\n  \"system_folder\": true,\n  \"folders\": [],\n  \"total_documents\": 5,\n  \"documents\": [...]\n}\n\nWebhook (Event Subscription) Operations\nList Event Subscriptions\nGET /signnow/event_subscription\n\n\nResponse:\n\n{\n  \"subscriptions\": [\n    {\n      \"id\": \"b1d6700dfb0444ed9196e913b2515ae8d5f731a7\",\n      \"event\": \"document.complete\",\n      \"created\": \"1770598678\",\n      \"callback_url\": \"https://example.com/webhook\"\n    }\n  ]\n}\n\nCreate Event Subscription\nPOST /signnow/event_subscription\nContent-Type: application/json\n\n{\n  \"event\": \"document.complete\",\n  \"callback_url\": \"https://example.com/webhook\"\n}\n\n\nResponse:\n\n{\n  \"id\": \"b1d6700dfb0444ed9196e913b2515ae8d5f731a7\",\n  \"created\": 1770598678\n}\n\n\nAvailable Events:\n\ndocument.create - Document created\ndocument.update - Document updated\ndocument.delete - Document deleted\ndocument.complete - Document signed by all parties\ninvite.create - Invite sent\ninvite.update - Invite updated\nDelete Event Subscription\nDELETE /signnow/event_subscription/{subscription_id}\n\n\nResponse:\n\n{\n  \"id\": \"b1d6700dfb0444ed9196e913b2515ae8d5f731a7\",\n  \"status\": \"deleted\"\n}\n\nCode Examples\nJavaScript\nconst response = await fetch(\n  'https://gateway.maton.ai/signnow/user',\n  {\n    headers: {\n      'Authorization': `Bearer ${process.env.MATON_API_KEY}`\n    }\n  }\n);\nconst data = await response.json();\n\nPython\nimport os\nimport requests\n\nresponse = requests.get(\n    'https://gateway.maton.ai/signnow/user',\n    headers={'Authorization': f'Bearer {os.environ[\"MATON_API_KEY\"]}'}\n)\ndata = response.json()\n\nPython (Upload Document)\nimport os\nimport requests\n\nwith open('document.pdf', 'rb') as f:\n    response = requests.post(\n        'https://gateway.maton.ai/signnow/document',\n        headers={'Authorization': f'Bearer {os.environ[\"MATON_API_KEY\"]}'},\n        files={'file': ('document.pdf', f, 'application/pdf')}\n    )\ndoc = response.json()\nprint(f\"Uploaded document: {doc['id']}\")\n\nPython (Send Invite)\nimport os\nimport requests\n\ndoc_id = \"c63a7bc73f03449c987bf0feaa36e96212408352\"\nresponse = requests.post(\n    f'https://gateway.maton.ai/signnow/document/{doc_id}/invite',\n    headers={\n        'Authorization': f'Bearer {os.environ[\"MATON_API_KEY\"]}',\n        'Content-Type': 'application/json'\n    },\n    json={\n        'to': 'signer@example.com',\n        'from': 'sender@example.com'\n    }\n)\nresult = response.json()\nprint(f\"Invite sent: {result['id']}\")\n\nNotes\nDocuments must be in PDF format for upload\nSupported file types: PDF, DOC, DOCX, ODT, RTF, PNG, JPG\nSystem folders (Documents, Templates, Archive, Trash Bin) cannot be renamed or deleted\nCreating signing links requires documents to have signature fields\nCustom invite subject/message requires a paid subscription\nRate limit in development mode: 500 requests/hour per application\nIMPORTANT: When piping curl output to jq or other commands, environment variables like $MATON_API_KEY may not expand correctly in some shell environments\nError Handling\nStatus\tMeaning\n400\tMissing SignNow connection or bad request\n401\tInvalid or missing Maton API key\n403\tInsufficient permissions or subscription required\n404\tResource not found\n405\tMethod not allowed\n429\tRate limited\n4xx/5xx\tPassthrough error from SignNow API\n\nSignNow errors include detailed messages:\n\n{\n  \"errors\": [\n    {\n      \"code\": 65578,\n      \"message\": \"Invalid file type.\"\n    }\n  ]\n}\n\nTroubleshooting: API Key Issues\nCheck that the MATON_API_KEY environment variable is set:\necho $MATON_API_KEY\n\nVerify the API key is valid by listing connections:\npython <<'EOF'\nimport urllib.request, os, json\nreq = urllib.request.Request('https://ctrl.maton.ai/connections')\nreq.add_header('Authorization', f'Bearer {os.environ[\"MATON_API_KEY\"]}')\nprint(json.dumps(json.load(urllib.request.urlopen(req)), indent=2))\nEOF\n\nTroubleshooting: Invalid App Name\nEnsure your URL path starts with signnow. For example:\nCorrect: https://gateway.maton.ai/signnow/user\nIncorrect: https://gateway.maton.ai/user\nResources\nSignNow API Reference\nSignNow Developer Portal\nSignNow Postman Collection\nSignNow SDKs\nMaton Community\nMaton Support"
  },
  "trust": {
    "sourceLabel": "tencent",
    "provenanceUrl": "https://clawhub.ai/byungkyu/signnow",
    "publisherUrl": "https://clawhub.ai/byungkyu/signnow",
    "owner": "byungkyu",
    "version": "1.0.2",
    "license": null,
    "verificationStatus": "Indexed source record"
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/signnow",
    "downloadUrl": "https://openagent3.xyz/downloads/signnow",
    "agentUrl": "https://openagent3.xyz/skills/signnow/agent",
    "manifestUrl": "https://openagent3.xyz/skills/signnow/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/signnow/agent.md"
  }
}