We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1ea2ae2 commit 2c298dfCopy full SHA for 2c298df
launcher-csharp/WebForms/Examples/CreateAndEmbedFormService.cs
@@ -18,7 +18,9 @@ public static class CreateAndEmbedFormService
18
public static WebFormSummaryList GetForms(Client.DocuSignClient docuSignClient, string accountId)
19
{
20
FormManagementApi formManagementApi = new FormManagementApi(docuSignClient);
21
- return formManagementApi.ListForms(accountId);
+ FormManagementApi.ListFormsOptions listFormsOptions = new FormManagementApi.ListFormsOptions();
22
+ listFormsOptions.search = "Web Form Example Template";
23
+ return formManagementApi.ListForms(accountId, listFormsOptions);
24
}
25
26
public static void AddTemplateIdToForm(string fileLocation, string templateId)
0 commit comments