Sign in

Create Embedded Template Draft

documented

Creates an embedded draft template to be edited later.

POST /v3/template/create_embedded_draftTemplateno implementation yet0 runs
No 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.hellosign.com/v3/template/create_embedded_draft" \
  -X POST \
  -u '{{HELLOSIGN_API_KEY}}:' \
  -H "Accept: application/json" \
  -H "Content-Type: application/json" \
  -d '{"client_id": "{{$client_id}}", "title": "{{$title}}", "subject": "{{$subject}}", "message": "{{$message}}", "file_urls": ["{{$file_url}}"], "signer_roles": [{"name": "{{$signer1_name}}", "order": {{$signer1_order}}}], "merge_fields": [{"name": "{{$merge_field_1_name}}", "type": "{{$merge_field_1_type}}"}], "test_mode": {{$test_mode}} }'