Blog
Home/

Common API Tasks🐈: Find a web form by name

Inbar Gazit
Inbar GazitSr. Manager, Developer Content
Summary3 min read

In his first Web Forms post, Inbar shows you how to use the Web Forms API to find one of your web forms by its name.

    • C#
    • Java
    • Node.js
    • PHP
    • Python
    • Ruby
    • Additional resources

    Table of contents

    Common API Tasks🐈: Find a web form by name

    Welcome to a crackerjack new edition of the CAT🐈 (Common API Tasks) blog series. The CAT blogs provide all you need to complete small, specific, SDK-supported tasks using one of our APIs. You can find all articles in this series on the Docusign Developer Blog.

    Last month we announced the release of new Web Forms features and a new public API called the Web Forms API. So, I’m excited to write one of my CAT blogs about this topic. While you may be new to the Docusign Web Forms feature, as you may imagine, this feature is not just super-useful, it has a variety of different use cases and capabilities. So, over time, your organization or your customers may create many web forms. Having an easy way to find a specific form is therefore an important capability. The Docusign web app has a feature that lets you search for web forms. You can also do the same thing from your own integration using the Web Forms API.

    Note that this blog post requires a different set of SDKs specifically for this new API, but we still support the same six coding languages you’re used to. So, here are the code snippets to find all the web forms that contain the word “cat” in their title.

    For each web form returned by the code below, you will find general information about the form, such as its name, ID (GUID), date when it was created, and whether or not it’s published.

    C#

    // This is the developer account basePath
    string basePath = "https://apps-d.docusign.com/api/webforms/v1.1/restapi";
    
    var docuSignClient = new DocuSignClient(basePath);
    // You will need to obtain an access token using your chosen authentication
    docuSignClient.Configuration.DefaultHeader.Add("Authorization", "Bearer " + accessToken);
    
    FormManagementApi formManagementApi = new FormManagementApi(docuSignClient);
    FormManagementApi.ListFormsOptions listFormsOptions = new FormManagementApi.ListFormsOptions();
    listFormsOptions.search = "cat";
    var filteredForms = formManagementApi.ListForms(accountId, listFormsOptions);
    
    

    Java

    // This is the developer account basePath
    String basePath = "https://apps-d.docusign.com/api/webforms/v1.1/restapi";
    
    ApiClient apiClient = new ApiClient(basePath);
    // You will need to obtain an access token using your chosen authentication method
    apiClient.addDefaultHeader("Authorization", "Bearer " + accessToken);
    
    FormManagementApi formManagementApi = new FormManagementApi(apiClient);
    var listFormsOption = formManagementApi.new ListFormsOptions();
    listFormsOption.setSearch("cat");
    var filteredForms = formManagementApi.listForms(accountId, listFormsOption);
    
    

    Node.js

    // This is the developer account basePath
    let basePath = 'https://apps-d.docusign.com/api/webforms/v1.1/restapi';
    
    let apiClient = new docusignWebForms.ApiClient();
    apiClient.setBasePath(basePath);
    // You will need to obtain an access token using your chosen authentication method
    apiClient.addDefaultHeader('Authorization', 'Bearer ' + accessToken);
    
    let formManagementApi = new docusignWebForms.FormManagementApi(apiClient);
    let filteredForms = formManagementApi.listForms(args.accountId, { search: 'cat' });
    
    

    PHP

    # This is the developer account basePath
    $base_path = 'https://apps-d.docusign.com/api/webforms/v1.1/restapi';
    
    $config = new \Docusign\eSign\Model\Configuration();
    $config->setHost($base_path);
    # You will need to obtain an access token using your chosen authentication method
    $config->addDefaultHeader('Authorization', 'Bearer ' . $access_token);
    $api_client = new \Docusign\eSign\client\ApiClient($config);
    
    $form_management_api = new \Docusign\WebForms\Api\FormManagementApi($api_client);
    $list_forms_options = new FormManagementApi\ListFormsOptions();
    $list_forms_options->setSearch('cat');
    $filtered_forms = $form_management_api->listForms($account_id, $list_forms_options);
    
    

    Python

    # This is the developer account basePath
    base_path = 'https://apps-d.docusign.com/api/webforms/v1.1/restapi'
    
    api_client = ApiClient()
    api_client.host = args[base_path]
    # You will need to obtain an access token using your chosen authentication method
    api_client.set_default_header(header_name='Authorization', header_value=f'Bearer {access_token}')
    
    form_management_api = FormManagementApi(api_client)
    filtered_forms = form_management_api.list_forms(account_id, 'cat')
    
    

    Ruby

    # This is the developer account basePath
    base_path = 'https://apps-d.docusign.com/api/webforms/v1.1/restapi'
    
    configuration = DocuSign_WebForms::Configuration.new
    api_client = DocuSign_WebForms::ApiClient.new(configuration)
    # You will need to obtain an access token using your chosen authentication method
    api_client.set_default_header('Authorization', "Bearer #{access_token}")
    
    form_management_api = DocuSign_WebForms::FormManagementApi.new(api_client)
    options = DocuSign_WebForms::ListFormsOptions.new
    options.search = args['cat']
    form_management_api.list_forms(account_id, options)
    
    

    That’s all, folks! I hope you found it useful. If you have any questions, comments, or suggestions for topics for future Common API Tasks posts, feel free to email me. Until next time…

    Additional resources

    Inbar Gazit
    Inbar GazitSr. Manager, Developer Content

    Inbar Gazit has been with Docusign since 2013 in various engineering roles. Since 2019 he has focused on developer content. Inbar works on code examples including the launchers, available on GitHub in eight languages, and helps build sample apps showcasing the various Docusign APIs. He is also active on StackOverflow, answering your questions. Inbar can be reached at inbar.gazit@docusign.com.

    More posts from this author

    Related posts

    • Common API Tasks

      Common API Tasks🐈: List all your Maestro workflows using the Maestro API

      Inbar Gazit
      Inbar Gazit
    • Common API Tasks🐈: Check if your access token has expired

      Common API Tasks🐈: Check if your access token has expired

      Inbar Gazit
      Inbar Gazit
    Common API Tasks🐈: Check if your access token has expired

    Common API Tasks🐈: Check if your access token has expired

    Inbar Gazit
    Inbar Gazit

    Discover what's new with Docusign IAM or start with eSignature for free

    Explore Docusign IAMTry eSignature for Free
    Person smiling while presenting