Clone and send document from reusable template
documentedClone a document from the reusable template and send it for signature.
POST /public/v2/reusable_templates/{id}/send_documentReusable templatesno implementation yet0 runsNo implementation yet. Run it to have the agent write one, or open a pull request with your own.
Seed example (keychains curl)
npx -y keychains@latest curl "https://api.rightsignature.com/public/v2/reusable_templates/{{$id}}/send_document" \
-X POST \
-H "Authorization: Bearer {{OAUTH2_ACCESS_TOKEN}}" \
-H "Content-Type: application/json" \
-H "Accept: application/json" \
-d '{"name":"{{$title}}","message":"{{$message}}","expires_in":{{$expires_in}},"roles":[{"name":"{{$role1_name}}","signer_email":"{{$role1_email}}","signer_name":"{{$role1_signer_name}}"}],"reusable_template":{"roles":[{"name":"{{$role1_name}}","signer_email":"{{$role1_email}}","signer_name":"{{$role1_signer_name}}"}]}}'