Skip to content

Latest commit

 

History

History
32 lines (22 loc) · 1.36 KB

sign-templates.md

File metadata and controls

32 lines (22 loc) · 1.36 KB

Sign Templates

Box Sign enables you to create templates so you can automatically add the same fields and formatting to requests for signature. With templates, you don't need to repetitively add the same fields to each request every time you send a new document for signature.

Get All Sign Templates

Calling the SignTemplatesManager.GetSignTemplatesAsync(int limit = 100, string nextMarker = null, bool autoPaginate = false) method will return an iterable that will page through all the Sign Templates.

BoxCollectionMarkerBased<BoxSignTemplate> signTemplates = await client.SignTemplatesManager.GetSignTemplatesAsync();

Get Sign Template by ID

Calling the SignTemplatesManager.GetSignTemplateByIdAsync(string signTemplateId) method will return the Sign Template with the given ID.

BoxSignTemplate signTemplate = await client.SignTemplatesManager.GetSignTemplateByIdAsync("12345");