- 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],[object Object],[object Object]
- Manage types
- Global context and isolation
- Manage apps
- Batch actions with app items
- Manage 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 - Dynamic calculation of event 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.
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
Optional name: undefined | 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