Hierarchy
- SignProviders
Methods
createDraft
-
Creates a draft of a digital signature provider.
A draft is created, allowing you to store the provider's code, which is needed to link electronic signatures to signatures of app items. All the external providers are located in one namespace, but each one is given a unique code. Example:
// Code of the created provider const code = Context.data.providerCode; const name = 'Digital signature provider'; const provider = await System.signs.providers.createDraft(code, name);
Parameters
-
code: string
Signature provider code.
-
Optional name: undefined | string
Name of the e-signature provider (optional parameter).
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.
Service for working with digital signature providers