Ryan Lyu
Ryan Lyu

Reputation: 5135

HelloSign: how to duplicate a template though API?

The following screenshot is the manual approach to duplicate a template.

enter image description here

Is there an API to do it?

# API like this

HelloSignClient.duplicate_template(template_id)

Upvotes: 1

Views: 211

Answers (1)

hhamed
hhamed

Reputation: 21

This is Hazem from HelloSign API Support team.

Take a look at the /template endpoints - to replicate the "Duplicate" feature on hellosign.com for templates, you'd use GET /template/files (if you need the original files), and then POST /template/update_files. That creates a new template using the original template's overlay, and the "new" or the same documents that you pass in (which in this case would be files from your GET /template/files call).

For more details about this endpoint, please check the links below:

*Update Template Files https://app.hellosign.com/api/reference#update_template_files

*Get Template Files https://app.hellosign.com/api/reference#get_template_files

Upvotes: 2

Related Questions