All tools

Human resources · request_signature

Request e-signature

Send a document for e-signature (built-in, DocuSign, Yousign).

Price
included
Requirements
No connector
runs on platform keys
Human approval
Yes, by default
outside-facing write: a human validates

Input

FieldTypeDescription
requestsarrayBatch mode: the FULL list of signature requests to send in one call (preferred whenever there is more than one). Each item takes the same fields as a single request. When provided, the top-level single-request fields are ignored.
recipientEmailstringRecipient email address
recipientNamestringRecipient full name
documentNamestringDocument display name (e.g. "Contrat de travail")
documentBase64stringBase64-encoded document content (PDF)
documentUrlstringPublicly accessible URL of the document
fileIdstringfileId of a document already stored on the platform (e.g. returned by generate_document) — preferred
messagestringOptional message for the recipient

Call this tool

Through the HTTP API, or from the MCP server with the run meta-tool.

curl https://api.ezyagents.fr/gateway/v1/run \
  -H "Authorization: Bearer ezk_…" -H "Content-Type: application/json" \
  -d '{"tool":"request_signature","input":{"requests":[],"recipientEmail":"…","recipientName":"…","documentName":"…"}}'
$run({ "tool": "request_signature", "input": {"requests":[],"recipientEmail":"…","recipientName":"…","documentName":"…"} })