- Home [object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object]
- Manage types
- Global context and isolation
- Manage apps
- Work with external services
- Scripts in widgets
- Web components
- Access permissions
- Getting started with processes
- Getting started with signatures
- Getting started with file previews
- Getting started with the organizational chart
- Getting started with users and groups
-
Getting started with the
Table data type - Use cases
-
API
- Object types
- Data types
- Global constants
- Work with apps
- Web requests
- Access permissions
- Document flow
- Live Chats
- “Code” widget
-
Signatures
- DigitalSignIdentificationType
- DigitalSignRequestStatus
- EntitySignOperationStatus
- SignStatus
- SignType
- SignTypes
- CertData
- CertNames
- DigitalSign
- DigitalSignActualizationData
- DigitalSignItemData
- DigitalSignProviderRef
- DigitalSignRequest
- DigitalSignSearch
- DigitalSigns
- EntitySign
- EntitySignItem
- EntitySignSearch
- EntitySigns
- EntityVersion
- NewSign
- SignData
- SignDetails
- SignProvider
- SignProviderItem
- SignProviderSearch
- SignProviders
- Signs
- SignHash
- SignedContent
- Business calendars
- Integration with IP telephony
- Integration with email marketing services
Service for working with digital signature providers
Hierarchy
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
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:
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.
Methods