Hierarchy

  • SignProviders

Methods

createDraft

  • Creates a draft of a digital signature provider.

    The method creates a draft of a digital signature provider that allows you to save the provider’s code needed to link a digital signature with an app item signature. All providers are placed in the same namespace, but each has a unique code. Example:

    // Code of the provider that  needs to be added to the system 
    code = Context.data.providerCode; 
    const  provider = await System.signs.providers.createDraft(code); 
    

    Parameters

    • code: string

      Signature provider code.

    Returns Promise<SignProviderItem>

    Object used to make requests for creating providers.

search

  • The method is used to search for digital signature providers.

    You can use this method to:

    • Filter providers using different parameters.
    • Search for signatures and get specific or first items from the search results.
    • Sort search results.
    • Limit the number of search results or see search results on several pages. Example:
      const  signProviders = await System.signs.providers.search().where(f => f.__id.eq( '<some id>')).first();
      

    Returns SignProviderSearch

    Object used to make search queries to search for providers.