This API expose all the functionnalities for the eZmax and eZsign applications.
We publish everything related to our API on github at this location: https://github.com/eZmaxinc. You'll find git repos for the specification, documentation, SDKs and samples.
Documentation, SDKs and samples are provided in English only for easier maintenance, but we also have French speaking integrators that can help you out.
If you find any mistake or omission in the documentation, please notify us. We'll quickly fix the issue.
We highly recommend to schedule an online meeting with your technical team and an eZmax integrator. During this meeting, we go through requirements, business logic, configuration, api key generation, and we go through the list of functions you might need to implement to achieve your goals. Make sure you take this opportunity to speed up your integration project.
If you need help understanding how to use this API, don't waste too much time searching in it. Contact support-api@ezmax.ca, we're here to help. We are developpers so we know programmers don't like to waste time in documentation. If you don't find what you need in the documentation, let us know, we'll improve it and put you rapidly up on track.
We highly believe in open standards and open source. We have adopted the Open API vision where all of the functionnalities of our applications are accessible with open source definition files. We use our own public API's to build our interfaces so you can do pretty much everything we can do. Open API has a rich toolset from editor, generators, mock servers, validators, etc. Learn more at OpenAPI Initiative
If you need our Open API Spec files to use in your toolset, you can find them in the specs folder.
We provide SDKs for customers. They are generated using OpenAPI Generator, we encourage customers to use them as we also provide samples for them.
Most of our SDKs provide language specific documentation, but you'll find more details on this page about the general use of the API. Both the SDK's specific document (if you choose to use a SDK) and this documentation can be used in complementarity.
We try to make it as easy as possible for you to use our SDKs so we publish packages on NPM and Composer. If you don't find your favorite language supported or it we could make your life easier by automating package distribution, let us know !
You can choose to automatically build and personnalize your own SDK by using any compatible OpenAPI 3.0 generator like OpenAPI Generator, Swagger Codegen or any commercial generators.
To do so, you just need to pass the specification file to your generator. You can find the latest version in the specs folder.
We are integrated into commercial automation platforms that allow users to create workflows to automate tasks and processes We currently support:
Various software vendors have seamlessly integrated our API into their solutions, simplifying the adoption process for their customers by eliminating the need for manual integration efforts. If you're utilizing one of these integrated solutions, feel free to reach out to the respective software vendor to activate the functionality.
Below is a partial list of these integrations:
Contact us if you're interested in being included in this list.
Occasionally, customers may find themselves utilizing a programming language that lacks support from any generator. Alternatively, some may prefer the straightforwardness of directly calling API endpoints without relying on an SDK.
Fortunately, as our API adheres to standard REST principles, you have the freedom to invoke the GET/POST/PUT/PATCH/DELETE methods with appropriate parameters and payloads. Following this approach allows you to handle responses by parsing them manually, offering a flexible and adaptable method for interacting with our services.
When you send your API requests, you'll need to send them in the proper region and proper environment where your customer data are stored. Based on your requirements (proximity and legislation), we will create your environment in one of our supported region's.
The general format of the URL where to send requests is: https://{sInfrastructureenvironmenttypeDescription}.api.appcluster01.{sInfrastructureregionCode}.ezmax.com/rest/
Where "{sInfrastructureenvironmenttypeDescription}" and "{sInfrastructureregionCode}" need to be replaced with one of the values in the table below.
Some of the functions needs to be called on the global infrastructure instead of the regional servers. These functions are all located in the Global section of the documentation.
The general format of the URL where to send requests is: https://{sInfrastructureenvironmenttypeDescription}.api.global.ezmax.com/
Where "{sInfrastructureenvironmenttypeDescription}" needs to be replaced with one of the values in the tables below.
When you send your Websocket requests, you'll need to send them in the proper region and proper environment where your customer data are stored. Based on your requirements (proximity and legislation), we will create your environment in one of our supported region's.
The general format of the URL where to send requests is: wss://ws.{sInfrastructureregionCode}.ezmax.com/{sInfrastructureenvironmenttypeDescription}/
Where "{sInfrastructureregionCode}" and "{sInfrastructureenvironmenttypeDescription}" need to be replaced with one of the values in the tables below.
sInfrastructureenvironmenttypeDescription | Description |
---|---|
iso | Isolated Customers |
prod | Production |
stg | Staging |
qa | Quality Assurance |
dev | Development |
Note: You should always use "prod" for the environment unless otherwise instructed by eZmax's support.
sInfrastructureregionCode | Description |
---|---|
af-south-1 | Africa (Cape Town) |
ap-east-1 | Asia Pacific (Hong Kong) |
ap-northeast-1 | Asia Pacific (Tokyo) |
ap-northeast-2 | Asia Pacific (Seoul) |
ap-northeast-3 | Asia Pacific (Osaka) |
ap-south-1 | Asia Pacific (Mumbai) |
ap-south-2 | Asia Pacific (Hyderabad) |
ap-southeast-1 | Asia Pacific (Singapore) |
ap-southeast-2 | Asia Pacific (Sydney) |
ap-southeast-3 | Asia Pacific (Jakarta) |
ap-southeast-4 | Asia Pacific (Melbourne) |
ca-central-1 | Canada (Central) |
ca-west-1 | Canada West (Calgary) |
eu-central-1 | Europe (Frankfurt) |
eu-central-2 | Europe (Zurich) |
eu-north-1 | Europe (Stockholm) |
eu-south-1 | Europe (Milan) |
eu-south-2 | Europe (Spain) |
eu-west-1 | Europe (Ireland) |
eu-west-2 | Europe (London) |
eu-west-3 | Europe (Paris) |
il-central-1 | Israel (Tel Aviv) |
me-central-1 | Middle East (UAE) |
me-south-1 | Middle East (Bahrain) |
sa-east-1 | South America (São Paulo) |
us-east-1 | US East (N. Virginia) |
us-east-2 | US East (Ohio) |
us-west-1 | US West (N. California) |
us-west-2 | US West (Oregon) |
Note Our SDKs have a default value of "ca-central-1". You will need to call "setHost" to change the default value if needed.
Except for a few functions that do not require authorization, most of the functions require an API key that is sent in the request headers. The header name is "Authorization".
There are 6 types of API Key that can be used to make requests to the API.
API type key which is static and not session based. It can be generated from the admin console. This is the most common type of authentication for "server to server" kind of integration. Never use this in a web based (client) application as the key could be leaked. This type of key begins with the letter A.
Delegated type key which has an expiration time. It is commonly used in mobile or web application where you cannot use an API type key that could be leaked. The application would query a server part that will generate a Delegated type key using an API type key. The Delegated type key could now be used by the mobile or web page application without leaking the API type key. This type of key begins with the letter D.
User type key which are session based and can be retrieved after a successful authentication. This type of key is reserved to specific situations where the other types of key are not desirable. This type of key begins with the letter U.
Presigned type key which are used to presign a url. These keys have an expiration date configured at signing time. This type of key begins with the letter P.
Special type key which are for special cases where other types of keys cannot be used. This type of key is reserved to specific situations. This type of key begins with the letter S.
Webhook type key which is used when a webhook is sent to your server if request signing is enabled. This type of key begins with the letter W.
Each API key can be restricted to specific IP addresse(s). This is an optional but recommended security feature you should put in place if all your requests will be coming from a specific range. You can configure the allowed ranges from the eZmax administration console.
Each API Key can be configured to have specific permission(s) so we highly recommend to use the "Least privileges" principle. For example, instead of allowing all permissions to an API Key, you should perhaps create an API Keys each for each of your application having just the specific permissions needed. You can configure the API Key's permission in eZmax's administration console.
Request Signing is a process of signing the request with a Secret that is not transmitted over the Wire. The signing process improves security in case your API Key is leaked or during a MITM attack (Man in the Middle). It will also prevent request manipulation or replay attack. Since all requests must use https these kinds of attacks are hard to conduct but sometimes customers might not be aware their underlying library does not verify SSL Certs validity or that their application can disclose their API key if it's not well secured. It takes a bit of effort to sign requests but it's highly recommended to do so.
Mandatory requirements of signing varies by used key type. For API type keys (most common type), you can configure if signing is mandatory or not in eZmax's administration console. Delegated, User and Special type keys must sign requests otherwise requests will fail.
To apply a signature to your request you will need to send 3 or 4 additional HTTP Headers to the request:
Ezmax-Date Is the date/time when you send the request. It needs to be a ISO 8601 formatted date/time. It's a format that supports timezones so you can either use your local timezone or GMT. Be aware certain implementation adds milliseconds to the formatted date which won't be accepted by the API (ex: Javascript's toISOString function).
There is a tolerance of ±5 minutes clock skew between the date/time you specify and the server's time so make sure your time is correct. Usage of a NTP server is recommended. Compute the date/time as close as possible to the actual sending of the request. For example, don't set the current time at the beginning of a long running script that sends 50 requests to the server with the same time/date as you might receive errors related to clock skew.
Examples:
Ezmax-Expiration Is optional. It must be a positive integer representing the number of minutes (starting from Ezmax-Date) after which the signed request will be considered expired.
Ezmax-Fingerprint Is a fingerprint (aka hash) representing the request you are sending. Any alteration in any part of the request would produce a different fingerprint. The hash is computed using SHA256. Most programming languages offer an implementation of SHA256. To make sure your implementation is producing expected values, try to hash the value "foo", it should produce the value "2c26b46b68ffc68ff99b453c1d30413413422d706483bfa0f98a5e886266e7ae".
To compute the Fingerprint, you'll need to concatenate the Method, the URL, the Body, the API Key, the Date and the Expiration (Expiration must be appended only if defined). All these values will need to be separated by a line Feed caracter (\n). Make sure your Method is Uppercase (Shoud be "GET", not "Get" or "get"). Make sure your URL Scheme and Host or the URL are lowercase (Should be "https://www.example.com", not "HTTPS://WWW.EXAMPLE.COM"). Also make sure the the URI part of the URL is properly URL encoded (Should be "/Path%20with%20Spaces/?Key=Value%20with%20Spaces", not "/Path with Spaces/?Key=Value with Spaces". If the Body is empty (ex: GET request don't have a body), use an empty string.
Once the SHA256 hash is computed, prefix it with "v1=" which is future proofing version identifier.
Here is an example implementation in PHP:
public static function getFingerprintV1 ($sAuthorization, $dtDate, $sMethod, $sURL, $sBody = '', $iExpiration = null) {
$sContentToHash = "$sMethod\n$sURL\n$sBody\n$sAuthorization\n$dtDate" . (is_null($iExpiration) ? '' : "\n$iExpiration");
return 'v1='.hash('sha256', $sContentToHash);
}
Here are two examples of what a GET and POST requests Fingerprints could look like. You can validate if your algorithm work by using these sample values and comparing them to the expected values. In the example below the litteral "\n" should be replaced with a linefeed character.
GET\n
https://prod.api.appcluster01.ca-central-1.ezmax.com/rest/1/object/activesession/getCurrent\n
\n
ThisIsMyAuthorizationKey\n
2000-12-31T23:59:59Z
Expected result for Ezmax-Fingerprint (GET): v1=8f6f3ed75edb6e2cbe777b4fda5cab1a6adaebadc758780eb82c3d49934f354a
POST\n
https://prod.api.global.ezmax.com/1/module/sspr/sendUsernames\n
{"pksCustomerCode": "demo","fkiLanguageID": "2","eUserTypeSSPR": "Native","sEmailAddress": "email@example.com"}\n
ThisIsMyAuthorizationKey\n
2000-12-31T23:59:59Z
Expected result for Ezmax-Fingerprint (POST): v1=da829efd4c2a8722ce17d3cf977c4e86adf7d2dbaa47e1b2ee3b4ade6c9cb642
Ezmax-Signature Is the actual signature proving the request was generated by the key owner using its secret. The signature is computed using HMAC and SHA256. Don't confuse SHA256 (aka SHA2-256) and SHA3-256, these are 2 distinct algorithms. Most programming languages offer an implementation of HMAC with SHA256. To make sure your implementation is producing expected values, try to hash the value "foo" with the key "bar", it should produce the value "147933218aaabc0b8b10a2b3a5c34684c8d94341bcf10a4736dc7270f7741851".
To compute the Signature, you'll need to concatenate the Ezmax-Fingerprint, the API Key and the Ezmax-Date. The 3 values are concatenated WITHOUT separators. Then calculate the HMAC using SHA256 using your Secret as the key.
Once the HMAC-SHA256 hash is computed, prefix it with "v1=" which is future proofing version identifier.
Here is an example implementation in PHP:
public static function getSignatureV1 ($sAuthorization, $dtDate, $sFingerprint, $sSecret) {
$sContentToSign = "$sFingerprint$sAuthorization$dtDate";
return 'v1='.hash_hmac('sha256', $sContentToSign, $sSecret);
}
Here are two examples of what the GET and POST requests Signature would be. You can validate if your algorithm work by using these sample values and comparing them to the expected values. For the below examples, we have used the same API Key, Fingerprint and Date as in the Fingerprint section above. The only new variable is the Secret which is "ThisIsTheSecretAssociatedToTheAuthorizationKey" for this example.
v1=8f6f3ed75edb6e2cbe777b4fda5cab1a6adaebadc758780eb82c3d49934f354aThisIsMyAuthorizationKey2000-12-31T23:59:59Z
Expected result for Ezmax-Signature (GET): v1=3a95fde64d27527745bcb0dd91be8caf7917c6778197e22d1d56c87245f979f5
v1=da829efd4c2a8722ce17d3cf977c4e86adf7d2dbaa47e1b2ee3b4ade6c9cb642ThisIsMyAuthorizationKey2000-12-31T23:59:59Z
Expected result for Ezmax-Signature (POST): v1=b924269145ff74f64985992325e82e79445bbe3aa994b90d2f24b3023b8d5f09
The whole process was detailed above but here is summary of what your http headers should look like to sign these example requests considering the following common variables:
Variable | Example value |
---|---|
Date | 2000-12-31T23:59:59Z |
Authorization | ThisIsMyAuthorizationKey |
Secret | ThisIsTheSecretAssociatedToTheAuthorizationKey |
For a GET request to https://prod.api.appcluster01.ca-central-1.ezmax.com/rest/1/object/activesession/getCurrent:
Authorization: ThisIsMyAuthorizationKey
Ezmax-Date: 2000-12-31T23:59:59Z
Ezmax-Fingerprint: v1=8f6f3ed75edb6e2cbe777b4fda5cab1a6adaebadc758780eb82c3d49934f354a
Ezmax-Signature: v1=3a95fde64d27527745bcb0dd91be8caf7917c6778197e22d1d56c87245f979f5
For a POST request to https://prod.api.global.ezmax.com/1/module/sspr/sendUsernames with this body content = '{"pksCustomerCode": "demo","fkiLanguageID": "2","eUserTypeSSPR": "Native","sEmailAddress": "emain@example.com"}' :
Authorization: ThisIsMyAuthorizationKey
Ezmax-Date: 2000-12-31T23:59:59Z
Ezmax-Fingerprint: v1=da829efd4c2a8722ce17d3cf977c4e86adf7d2dbaa47e1b2ee3b4ade6c9cb642
Ezmax-Signature: v1=b924269145ff74f64985992325e82e79445bbe3aa994b90d2f24b3023b8d5f09
We use a custom type base naming convention for variables.
Each variable name is composed of up to 6 indicators
Here is a summary table explaining the convention.
Array | Key | Type | Table | Field | Discriminator | |
---|---|---|---|---|---|---|
Optional | Yes | Yes | No | No | Yes | Yes |
Naming | Fixed | Fixed | Lowercase | First letter is uppercase and the rest is lowercase | First letter is uppercase and the rest is lowercase except for the Field ID wich is always uppercase | First letter is uppercase and the rest is lowercase |
Values | a_ | pk fk efk |
s (string) t (text) c (char) sha (sha-1 string) md5 (md5 string) bin (binary string) i (integer) f (float) d (decimal) e (enum) dt (date or datetime) b (boolean) obj (object) m (mixed) |
Any | Any | Any |
Here are examples of typical variables' names
Variable name | Array | key | Type | Table | Field | Discriminator | Explanation | Example |
---|---|---|---|---|---|---|---|---|
pkiContactID | pk | i | Contact | ID | Primary key of type integer for the field name ID in table Contact | 133 | ||
fkiContactID | fk | i | Contact | ID | Foreign key of type integer pointing to the field pkiContactID in table Contact | 133 | ||
efkiContactID | efk | i | Contact | ID | External foreign key of type integer pointing to the field pkiContactID in table Contact | 133 | ||
fkiContactIDOwner | fk | i | Contact | ID | Owner | Foreign key of type integer pointing to the field pkiContactID in table Contact with a discriminator of Owner | 266 | |
sContactFirstname | s | Contact | Firstname | String for the Field Firstname in table Contact | John | |||
bPurchaseIspaid | b | Purchase | Ispaid | Boolean for the field Ispaid in table Purchase | true | |||
dPurchaseTotal | d | Purchase | Total | Decimal number for the field Total in table Purchase | 2199.78 | |||
objEzsignfolder | obj | Esignfolder | Object of type Ezsignfolder | {"pkiEzsignfolderID": 122, "sEzsignfolderName": "Test"} | ||||
a_objEzsignfolder | a_ | obj | Ezsignfolder | Array of objects of type Ezsignfolder | [{"pkiEzsignfolderID": 122, "sEzsignfolderName": "Test"}, {"pkiEzsignfolderID": 234, "sEzsignfolderName": "Test 2"}] | |||
a_sContactFirstname | a_ | s | Contact | Firstname | An array of string for the field Firstname in table Contact | ['John', 'Mary', 'Jane'] | ||
a_pkiContactIDOwner | a_ | pk | i | Contact | ID | Owner | An array of foreign keys of type integer pointing to the field pkiContactID in table Contact with a discriminator of Owner | [266, 277, 288] |
Every GetList Endpoint has a sFilter query parameter that can be used to filter the returned elements.
The sFilter parameter's syntax is not documented at the endpoint's level since it would be redundant. This section documents the syntax.
Valid operators for boolean values:
Operator | Description | Examples |
---|---|---|
eq | Equals | bEzsigndocumentEzsignclause eq true bEzsigndocumentEzsignclause eq false |
Valid operators for integer values:
Operator | Description | Examples |
---|---|---|
eq | Equals | iEzsigndocumentPagetotal eq 10 |
gt | Greater than | iEzsigndocumentPagetotal gt 10 |
gte | Greater than or equal to | iEzsigndocumentPagetotal gte 10 |
lt | Less than | iEzsigndocumentPagetotal lt 100 |
lte | Less than or equal to | iEzsigndocumentPagetotal lte 100 |
in | in list | fkiEzsignfoldertypeID in '1,2,3' |
Valid operators for date and datetime values:
Operator | Description | Examples |
---|---|---|
eq | Equals | dtEzsigndocumentDuedate eq '2005-07-01 18:15:59' dtEzsigndocumentDuedate eq '2005-07-01' |
gt | Greater than | dtEzsigndocumentDuedate gt '2001-01-01 00:00:00' dtEzsigndocumentDuedate gt '2001-01-01' |
gte | Greater than or equal to | dtEzsigndocumentDuedate gte '2001-01-01 00:00:00' dtEzsigndocumentDuedate gte '2001-01-01' |
lt | Less than | dtEzsigndocumentDuedate lt '2025-12-31 23:59:59' dtEzsigndocumentDuedate lt '2025-12-31' |
lte | Less than or equal to | dtEzsigndocumentDuedate lte '2025-12-31 23:59:59' dtEzsigndocumentDuedate lte '2025-12-31' |
rg | In the range of see range documentation |
dtEzsigndocumentDuedate rg '=m,=m+7d' |
Valid operators for string values:
Operator | Description | Examples |
---|---|---|
eq | Equals | sEzsigndocumentName eq 'Test contract' |
like | Search for a partial string with % wildcard | sEzsigndocumentName like 'Test contra%' sEzsigndocumentName like '%contract' sEzsigndocumentName like '%con%' |
Valid operators for enum values (valid values are documented at the endpoint's level):
Operator | Description | Examples |
---|---|---|
eq | Equals | eEzsigndocumentStep eq 'PartiallySigned' |
in | in list | eEzsigndocumentStep in 'PartiallySigned,Archived' |
Example of combining multiple filter together:
sFilter=bEzsigndocumentEzsignclause eq true and iEzsigndocumentPagetotal gt 10 and iEzsigndocumentPagetotal lte 100 and dtEzsigndocumentDuedate gt '2001-01-01 00:00:00' and dtEzsigndocumentDuedate lte '2025-12-31 23:59:59' and sEzsigndocumentName like '%con%' and eEzsigndocumentStep eq 'PartiallySigned' and fkiEzsignfoldertypeID in '1,2,3' and dtEzsigndocumentDuedate rg '=m,=m+7d'
Same example, but properly url encoded:
sFilter=bEzsigndocumentEzsignclause%20eq%20true%20and%20iEzsigndocumentPagetotal%20gt%2010%20and%20iEzsigndocumentPagetotal%20lte%20100%20and%20dtEzsigndocumentDuedate%20gt%20%272001-01-01%2000%3A00%3A00%27%20and%20dtEzsigndocumentDuedate%20lte%20%272025-12-31%2023%3A59%3A59%27%20and%20sEzsigndocumentName%20%20like%20%27%25con%25%27%20and%20eEzsigndocumentStep%20eq%20%27PartiallySigned%27%20and%20fkiEzsignfoldertypeID%20in%20%271%2C2%2C3%27%20and%20dtEzsigndocumentDuedate%20rg%20%27%3Dm%2C%3Dm%2B7d%27
Dates in list filter can use a "rg" operator for ranges. This allows to filter data based on relative dates. The range operator is just another way to compute filters dates.
For the rest of this section, let's assume today's date is February 25th 2019 and the time is 10:15:37. Let's assume that we want to filter on dtInvoiceDate.
If we wanted to get all the invoices that were generated in the previous month, we could do (not url encoded for readability purposes): sFilter=dtInvoiceDate gte '2019-01-01 00:00:00' and dtInvoiceDate lte '2019-01-31 23:59:59'
Range operator is useful to transfer the complexity of date computation to the api instead of the calling application.
The general format of the range operator is: dtInvoiceDate rg '[STARTDATE],[ENDDATE]'
Both [STARTDATE] and [ENDDATE] use the same format which is a sequence of 1 or more [SUBSECTION] so for example, we could have: dtInvoiceDate rg '[SUBSECTION],[SUBSECTION][SUBSECTION][SUBSECTION][SUBSECTION]'
Both [STARTDATE] and [ENDDATE] have a starting time equal to current time (so in this example 2019-02-25 10:15:37)
[SUBSECTION] start with an operator which can be either = to reset the pointer, + to move forward in time or - to move backward in time.
The = operator can be directly followed by a letter representing the [PERIOD] (ex: =m) to initialize the date to the start or end of the period or by a number and a letter representing the [PERIOD] (ex: =7m) to set the [PERIOD] to a specific value.
The + and - operators are followed by a number then by a letter representing the [PERIOD] (ex: +7d or -1m)
Here is a list of valid [PERIOD]
[Period] | Description |
---|---|
y | year |
m | month |
w | week |
d | day |
h | hour |
i | minute |
s | second |
= operator without a number resets the pointer to either the beginning or the end of the [Period] depending if it's being used in the [STARTDATE] or [ENDDATE]. This table shows the time when the pointer is reset
Syntax | Description | [STARTDATE] | [ENDDATE] |
---|---|---|---|
=y | year | 2019-01-01 00:00:00 | 2019-12-31 23:59:59 |
=m | month | 2019-02-01 00:00:00 | 2019-02-28 23:59:59 |
=w | week* | 2019-02-24 00:00:00 | 2019-03-02 23:59:59 |
=d | day | 2019-02-25 00:00:00 | 2019-02-25 23:59:59 |
=h | hour | 2019-02-25 10:00:00 | 2019-02-25 10:59:59 |
=i | minute | 2019-02-25 10:15:00 | 2019-02-25 10:15:59 |
=s | second | 2019-02-25 10:15:37 | 2019-02-25 10:15:37 |
* Week start day is configurable per user
= operator with a number resets the [PERIOD] to a specific value and works the same for both [STARTDATE] or [ENDDATE]. Here are some example. Please note it's not possible to reset the week like this (ex: =7w)
Syntax | Description | New Date |
---|---|---|
=2025y | year | 2025-02-25 10:15:37 |
=11m | month | 2019-11-25 10:15:37 |
=7d | day | 2019-02-07 10:15:37 |
=17h | hour | 2019-02-25 17:15:37 |
=1i | minute | 2019-02-25 10:01:37 |
=18s | second | 2019-02-25 10:15:18 |
You can combine multiple [SUBSECTION] under the same operator. For example:
[STARTDATE] and [ENDDATE] are evaluated from left to right. The order is important. For example, these values would give different results in [ENDDATE]:
Syntax | Explanation | Date From | Date To |
---|---|---|---|
sFilter=dtInvoice rg '-7d,=s' | Invoices in the last 7 days up to now | 2019-02-18 10:15:37 | 2019-02-25 10:15:37 |
sFilter=dtInvoice rg '=d-7d,=s' | Invoices in the last 7 days starting at 00:00:00 up to now | 2019-02-18 00:00:00 | 2019-02-25 10:15:37 |
sFilter=dtInvoice rg '=m-1m,=m-1m' | Invoices in the last month | 2019-01-01 00:00:00 | 2019-01-31 23:59:59 |
sFilter=dtInvoice rg '=m,=m' | Invoices in this month | 2019-02-01 00:00:00 | 2019-02-28 23:59:59 |
sFilter=dtInvoice rg '=m-1m+10d,=s' | Invoices since the 10th of last month up to now | 2019-01-10 00:00:00 | 2019-02-25 10:15:37 |
sFilter=dtInvoice rg '-10h,=d8h+1d1s' | Invoices in the last 10 hours up to 9h00 tomorrow morning | 2019-02-25 00:15:37 | 2019-02-26 09:00:00 |
sFilter=dtInvoice rg '-1y=4mm,=3mm' | Invoices from last year second semester up to this year first quarter | 2018-04-01 00:00:00 | 2019-03-31 23:59:59 |
sFilter=dtInvoice rg '=w-3w,=w' | Invoices in the last 3 weeks (calendar week start day = Sunday) up to the end of the week | 2019-02-03 00:00:00 | 2019-03-02 23:59:59 |
sFilter=dtInvoice rg '=y,=3mm' | Invoices in the first semester | 2019-01-01 00:00:00 | 2019-03-31 23:59:59 |
sFilter=dtInvoice rg '=4mm,=6mm' | Invoices in the second semester | 2019-04-01 00:00:00 | 2019-06-30 23:59:59 |
sFilter=dtInvoice rg '=7mm,=9mm' | Invoices in the third semester | 2019-07-01 00:00:00 | 2019-09-30 23:59:59 |
sFilter=dtInvoice rg '=10mm,=y' | Invoices in the last semester | 2019-10-01 00:00:00 | 2019-12-31 23:59:59 |
We use standard HTTP Status Codes to return details about completed function calls.
You should always validate the HTTP response's status code before trying to read the content of the body. Our SDKs do this automatically. In each of the documented function, we document only the function's specific return code to facilitate the reading of the documentation. Even if a generic return code is not documented at the function's level, it could be returned by the API.
HTTP Status Code | Meaning | Detail |
---|---|---|
200 | OK | The request completed successfully and valid data was returned in the body |
201 | Created | The request completed successfully. Some elements were created and details about the created items was returned in the body |
204 | No Content | The request completed successfully. There was no need to return any data in the body |
403 | Forbidden | The request is not allowed to be executed. Look for detail about the error in the body |
404 | Not Found | The request failed. The element on which you were trying to work does not exists. Look for detail about the error in the body |
406 | Not Acceptable | The URL is valid, but one of the Accept header is not defined or invalid. For example, you set the header "Accept: application/json" but the function can only return "Content-type: image/png" |
422 | Unprocessable entity | The request was syntactically valid but failed because of an interdependance condition. Look for detail about the error in the body |
HTTP Status Code | Meaning | Detail |
---|---|---|
400 | Bad Request | The request does not meet specifications. For example: an invalid type for a variable, a value that does not pass validation or a protocol violation. Look for details about the error in the response's body |
401 | Unauthorized | The API Key is either not present, expired, invalid or inactive. It could also mean you are calling the API from an unauthorized IP address |
403 | Forbidden | The Provided API Key is valid, but it is not allowed to execute the request. Verify the Key's permissions |
404 | Not Found | Your request was sent to a URL that does not exist. Make sure you are calling the proper version number of the function and look for typos in the URL |
405 | Method Not Allowed | The URL is valid, but the Method is not allowed. For example, have you call a GET while the function expects a POST ? |
406 | Not Acceptable | The URL is valid, but one of the Accept header is not defined or invalid. For example, you set the header "Accept: application/json" but the function can only return "Content-type: image/png" |
429 | Too Many Requests | Too many requests were received from your API Key/IP address. Make sure to optimize your requests or ask for a limit increase. For example, make a single request to create 100 objects instead of calling 100 requests each creating a single objet |
500 | Internal Server Error | This should never happen. There is either a temporary problem that should resolve quickly or an error you should report to technical support. |
501 | Not Implemented | Endpoint not yet available in your region or environment |
503 | Service Unavailable | This should never happen. There is either a temporary problem that should resolve quickly or an error you should report to technical support |
These codes can only be generated for User type API Key. The API, Delegated and Special types keys will never return such codes. (See Authorization section for more information). Most users should not be concerned with these status codes.
These codes are documented in the Activesession getCurrent endpoint only to simplify the documentation but they can be returned in any of the endpoints.
HTTP Status Code | Meaning | Detail |
---|---|---|
350 | Authentication required | User must authenticate because session is invalid |
351 | Phone Validation required | (2FA) User needs to complete a Voice Call or SMS challenge |
352 | Question Validation required | (2FA) User needs to complete a question/answer challenge |
353 | Clause Acceptance required | User need to accept electronic signature terms and conditions |
354 | Computer Validation required | User's computer is not authorized |
355 | Password Change required | User must change it's password |
356 | Native Application Version Check | The user is not running the latest version of the native application |
These codes will be considered as a succesful delivery when they are returned by your webpage during a Webhook delivery.
HTTP Status Code | Meaning | Detail |
---|---|---|
202 | Accepted | The request has been received but not yet acted upon. It is intended for cases where another process or server handles the request, or for batch processing. |
204 | No Content | The request completed successfully. There was no need to return any data in the body |
When the API returns an HTTP status code in the range 200-299, a property could be returned indicating one or more warnings occured. The array contain objects with 2 properties:
We highly suggest you use eWarningCode to do any warning validation logic in your code or to create your own warning message for your users. sWarningMessage has more detail for a human to read, but is intended for the developper and is always returned in English.
Here is the complete list of eWarningCode you could receive.
eWarningCode | Examples |
---|---|
MUSTVERIFY | An object was changed and a verification is recommended |
When the API returns an HTTP status code in the range 400-599, a JSON object will be returned with 2 properties:
We highly suggest you use eErrorCode to do any error validation logic in your code or to create your own error message for your users. sErrorMessage has more detail for a human to read, but is intended for the developper and is always returned in English.
Here is the complete list of eErrorCode you could receive for each HTTP status code and examples of situations where they could be returned.
eErrorCode | Examples |
---|---|
BADREQUEST | Unserializable JSON, invalid parameter, invalid signature, invalid fingerprint |
BADREQUEST_CLOCKSKEW | The time on the client computer is wrong |
eErrorCode | Examples |
---|---|
UNAUTHORIZED_BADAUTH | Invalid credentials during Authentication |
UNAUTHORIZED_BADMFA | Invalid response to the MFA challenge |
UNAUTHORIZED_EXPIRED | Credentials have expired |
UNAUTHORIZED_REQUEST | The request is invalid (bad ip source, fingerprint, signature, etc) |
UNAUTHORIZED_REQUEST_APIKEY | The API Key is invalid |
UNAUTHORIZED_REQUEST_PRESIGNED | The presigned URL is invalid |
eErrorCode | Examples |
---|---|
FORBIDDEN | Generic Forbidden |
FORBIDDEN_CONFIGURATION | A configured setting prevent access to the element |
FORBIDDEN_MODULE | Module is not activated |
FORBIDDEN_NOACCESS | Not allowed to access the element |
FORBIDDEN_PERMISSION | Missing a permission to access the route |
FORBIDDEN_SUBSCRIPTION | Your plan does not allow access to this feature |
FORBIDDEN_SUBSCRIPTION_EZSIGN_PLAN | Your Ezsign plan does not allow access to this feature |
FORBIDDEN_USERTYPE | This type of User is forbidden for the route |
FORBIDDEN_USER_ORIGIN_EXTERNAL | Can't modify user informations. |
eErrorCode | Examples |
---|---|
NOTFOUND | Generic not found |
NOTFOUND_OBJECT | Object does not exist in database |
NOTFOUND_ROUTE | The route does not exist (url, API version) |
eErrorCode | Examples |
---|---|
METHODNOTALLOWED | The route is valid but the method is not allowed ex: POST on a GET only route |
eErrorCode | Examples |
---|---|
NOTACCEPTABLE_CONTENT | The route is valid but the Accept header is not allowed ex: "application/json" vs "image/png" |
NOTACCEPTABLE_LANGUAGE | The route is valid but the Accept-Language header is not allowed ex: "en" vs "es" |
eErrorCode | Examples |
---|---|
CONTENT_TOO_LARGE | The content of the request is too large |
eErrorCode | Examples |
---|---|
UNPROCESSABLEENTITY_ACTIVESESSION_ALREADY_CLONING | The user is already cloning another user |
UNPROCESSABLEENTITY_CANNOTDELETE | The element cannot be deleted |
UNPROCESSABLEENTITY_CANNOTMODIFY | The element cannot be modified |
UNPROCESSABLEENTITY_CHANGEPASSWORD_INVALID_CURRENT | The old password supplied does not match the user's current password |
UNPROCESSABLEENTITY_CHANGEPASSWORD_SAME | The new password is the same as the old password |
UNPROCESSABLEENTITY_DATA_MISSING | Some data is missing |
UNPROCESSABLEENTITY_DATA_UNIQUE | The data fails unique check : value exist in other element |
UNPROCESSABLEENTITY_DATA_VALIDATION | The data fails some validation |
UNPROCESSABLEENTITY_DATA_OUTOFBOUND | The data contains a value that is out of bound |
UNPROCESSABLEENTITY_DOWNLOAD_ERROR | We cannot retrieve ressource at supplied url |
UNPROCESSABLEENTITY_EZSIGNFORM_VALIDATION | The validation of the Ezsignform returned some errors |
UNPROCESSABLEENTITY_EZSIGNELEMENTDEPENDENCY_LOOP | We detected a loop in the Ezsignelementdependcy |
UNPROCESSABLEENTITY_EZSIGNELEMENTDEPENDENCY_MISSINGEZSIGNTEMPLATESIGNERREFERENCE | An Ezsignelementdependency has an Ezsigntemplatesigner not assigned |
UNPROCESSABLEENTITY_EZSIGNSIGNATURE_SIGNED | The Ezsignsignature is already signed |
UNPROCESSABLEENTITY_EZSIGNSIGNERCONNECTED | The Ezsignsigner is connected |
UNPROCESSABLEENTITY_NOTHINGTODO | The request was valid, but no action was necessary |
UNPROCESSABLEENTITY_NOTREADY | The element is not in a state that allows the action (Sending a document without signature, downloading an unsigned document) |
UNPROCESSABLEENTITY_PDF_FORM | The pdf document contains a form |
UNPROCESSABLEENTITY_PDF_SIGNATURE | The pdf document contains a signature(s) |
UNPROCESSABLEENTITY_PDF_FORM_AND_SIGNATURE | The pdf document contains a form and signature(s) |
UNPROCESSABLEENTITY_PDF_INCOMPATIBLE | The pdf document cannot be signed |
UNPROCESSABLEENTITY_PDF_PASSWORD | The pdf document contains a password and cannot be signed |
UNPROCESSABLEENTITY_PDF_WRONG_PASSWORD | The password cannot open the pdf document since it's incorrect |
UNPROCESSABLEENTITY_PDF_REPAIRABLE | The pdf document contains errors and can be repaired |
UNPROCESSABLEENTITY_PDF_XFA | The pdf document contains XFA form and cannot be signed |
UNPROCESSABLEENTITY_TEMPLATE_MISMATCH | The number of pages between the document and the template do not match |
UNPROCESSABLEENTITY_UNMODIFIABLE_FIELD | The field is not modifiable in the current state |
UNPROCESSABLEENTITY_USER_STAGED | The user can't connect since it's currently staged |
eErrorCode | Examples |
---|---|
TOOMANYREQUESTS | The client reached the maximum number of requests allowed in the specific time |
TOOMANYREQUESTS_THIRDPARTY | Our server encountered a 'Too Many Requests' error from a third party |
eErrorCode | Examples |
---|---|
ERROR_INTERNAL | Unhandled error on server |
ERROR_CONFIGURATION | A parameter on the server is not configured properly |
eErrorCode | Examples |
---|---|
ERROR_NOTIMPLEMENTED | Endpoint not yet available in your region or environment |
A Webhook (also called a web callback or HTTP push API) is a way for your application to be notified of an event in real time.
For example, if you send a contract for signing and need to be notified as soon as it get signed.
You could program a loop to query the document status every 5 minutes for many days until you receive a response saying the document is signed. This is a bad approach as it will waste a lot of resources everytime you make a call to the API for no reason.
A better approach would be to configure a webhook in the eZmax's administration console to watch for a specific event. In this exemple, the event to monitor is "DocumentCompleted" from the module "Ezsign". This way, as soon as the document gets signed, a request will be made to YOUR server to let you know about the event that just happened.
When you configure eZmax to notify you of events, you must provide your server's URL and a fallback email address. The URL provided must use HTTPS for security reasons.
Look for red indicators with the word "EVENT" throughout the documentation to see currently available Webhooks events you can subscribe to. If you have a need for an event that is not available, please send a feature request to technical support.
You can enable request signing in the webhook configuration section. This will add an extra layer of security by adding an Authorization, a Date, a Fingerprint and a Signature to each request that you can validate. This can help to authenticate the request, prevent forgery and prevent replay attacks.
The following HTTP headers will be added to each request:
You can read more on Request Signing in the Security section of the documentation.
In eZmax's administration module, you'll find a "Test" button that you can use as many time as you need to test your server code easily with a sample event.
eZmax will attempt to deliver the event to your server instantly but will retry many times if your server does not respond successfully for some reason (see schedule below). After all attempts are exhausted, the event will be forwarded to the configured fallback email in the same format as the webhook. The email body will contain the JSON request in the same format as the webhook. This way, you'll be able to send the request to your server using Postman, Curl or similar tool.
This is the approximate retry schedule. Since there is a 30 seconds timeout on each try, there could be a cumulative overhead up to 3½ minutes.
Minutes after previous step | Minutes after event | Method |
---|---|---|
N/A | 0 | HTTPS |
1 | 1 | HTTPS |
5 | 6 | HTTPS |
15 | 21 | HTTPS |
15 | 36 | HTTPS |
15 | 51 | HTTPS |
15 | 66 | HTTPS |
0 | 66 |
If you don't receive the event on the first attempt, there will be debugging information about each previous attempt in the body of the event. You'll be able to see the timestamp of each previous attempt and the return code returned by your server or a timeout indication if your server hasn't replied.
All notable changes to this project will be documented in this section.
Version numbers are using MAJOR.MINOR.PATCH numbering format for example 1.2.23
MAJOR will be incremented only if there is an incompatible breaking change. New distinct documentation and specification files will be published.
MINOR will be incremented only if a function becomes deprecated or deleted (after being deprecated in a previous version)
PATCH will be incremented everytime changes and additions are released.
For each version, there will be the list of changes:
Removal lifecycle
Once a function becomes Deprecated, we monitor its usage to track how many users are still using it.
After a long period of time, if a minority of users are still using the function, we might ask users to update to the newer version of the function and give them ample time to do so.
Only after that delay expires (or no more users are still using it), we will have the function Removed.
Documentation and changelog for older releases can be found here
Retrieve the customer's specific server endpoint where to send requests. This will help locate the proper region (ie: sInfrastructureregionCode) and the proper environment (ie: sInfrastructureenvironmenttypeDescription) where the customer's data is stored.
pksCustomerCode required | string (Field-pksCustomerCode) [ 2 .. 6 ] characters Example: demo The customer code assigned to your account |
sInfrastructureproductCode | string Enum: "appcluster01" "ezsignuser" The infrastructure product Code If undefined, "appcluster01" is assumed |
{
}
Retrieve the ezmaxcustomer's specific configuration. This will help locate the proper region (ie: sInfrastructureregionCode) and the proper environment (ie: sInfrastructureenvironmenttypeDescription) where the customer's data is stored.
pksEzmaxcustomerCode required | string (Field-pksEzmaxcustomerCode) [ 2 .. 6 ] characters ^[a-z\d]{2,6}$ Example: demo The Ezmaxcustomer code |
{- "sInfrastructureregionCode": "ca-central-1",
- "sInfrastructureregionCodeWeb": "ca-central-1",
- "sInfrastructureenvironmenttypeDescription": "prod",
- "sCognitoClientIDExternal": "6kivk421lhteuktijfsvv4r1cl",
- "sCognitoClientIDEzmaxpublic": "6kivk421lhteuktijfsvv4r1cl"
}
Retrieve the latest version of the Ezmaxclient that is available on the store.
pksEzmaxclientOs required | string (Field-pksEzmaxclientOs) Enum: "iOS" "iPadOS" "macOS" "Windows" Example: Windows The OS of the system running the application |
{- "sEzmaxclientVersion": "4.2.2.0"
}
Retrieve previously used Ezsignsigners and all users from the system
{- "mPayload": {
- "a_objEzsignfoldersignerassociation": [
- {
- "pkiEzsignfoldersignerassociationID": 20,
- "fkiEzsignfolderID": 33,
- "bEzsignfoldersignerassociationDelayedsend": true,
- "bEzsignfoldersignerassociationReceivecopy": true,
- "tEzsignfoldersignerassociationMessage": "Hi John,\n\nThis is the document I need you to review.\n\nCould you sign it before Monday please.\n\nBest Regards.\n\nMary",
- "bEzsignfoldersignerassociationAllowsigninginperson": true,
- "objEzsignsignergroup": {
- "pkiEzsignsignergroupID": 27,
- "objEzsignsignergroupDescription": {
- "sEzsignsignergroupDescription1": "RH",
- "sEzsignsignergroupDescription2": "HR"
}, - "sEzsignsignergroupDescriptionX": "HR"
}, - "objUser": {
- "pkiUserID": 70,
- "fkiLanguageID": 2,
- "sUserFirstname": "John",
- "sUserLastname": "Doe",
- "sEmailAddress": "email@example.com"
}, - "objEzsignsigner": {
- "pkiEzsignsignerID": 89,
- "fkiTaxassignmentID": 1,
- "fkiSecretquestionID": 7,
- "fkiUserlogintypeID": 2,
- "sUserlogintypeDescriptionX": "Email and phone or SMS",
- "objContact": {
- "pkiContactID": 21,
- "sContactFirstname": "John",
- "sContactLastname": "Doe",
- "fkiLanguageID": 2,
- "sEmailAddress": "email@example.com",
- "sPhoneE164": "+15149901516",
- "sPhoneExtension": "123",
- "sPhoneE164Cell": "+15149901516"
}
}
}
], - "a_objUserTeam": [
- {
- "pkiUserID": 70,
- "sUserLastname": "Doe",
- "sUserFirstname": "John",
- "sEmailAddress": "email@example.com"
}
], - "a_objUser": [
- {
- "pkiUserID": 70,
- "sUserLastname": "Doe",
- "sUserFirstname": "John",
- "sEmailAddress": "email@example.com"
}
]
}, - "objDebugPayload": {
- "iVersionMin": 1,
- "iVersionMax": 2,
- "a_RequiredPermission": [
- 117
], - "bVersionDeprecated": false,
- "dtResponseDate": "2020-12-31 23:59:59"
}, - "objDebug": {
- "sMemoryUsage": "11,923MB",
- "sRunTime": "0.6084s",
- "iSQLSelects": 3,
- "iSQLQueries": 6,
- "a_objSQLQuery": [
- {
- "sQuery": "SELECT * FROM table",
- "fDuration": 0.0001
}, - {
- "sQuery": "SELECT * FROM table",
- "fDuration": 0.0001
}
]
}
}
Retrieve Ezsigntemplates and Ezsigntemplatepackages that can be imported in a Ezsignfolder
fkiEzsignfoldertypeID | integer (Field-pkiEzsignfoldertypeID) [ 0 .. 65535 ] Example: fkiEzsignfoldertypeID=5 The unique ID of the Ezsignfoldertype. |
{- "mPayload": {
- "a_objEzsigntemplate": [
- {
- "pkiEzsigntemplateID": 36,
- "fkiEzsigntemplatedocumentID": 133,
- "fkiEzsignfoldertypeID": 5,
- "fkiLanguageID": 2,
- "sLanguageNameX": "English",
- "sEzsigntemplateDescription": "Standard Contract",
- "sEzsigntemplateFilenamepattern": "Contract",
- "bEzsigntemplateAdminonly": true,
- "sEzsignfoldertypeNameX": "Default",
- "objAudit": {
- "objAuditdetailCreated": {
- "fkiUserID": 70,
- "fkiApikeyID": 99,
- "sUserLoginname": "JohnDoe",
- "sUserLastname": "Doe",
- "sUserFirstname": "John",
- "sApikeyDescriptionX": "Project X",
- "dtAuditdetailDate": "2020-12-31 23:59:59"
}, - "objAuditdetailModified": {
- "fkiUserID": 70,
- "fkiApikeyID": 99,
- "sUserLoginname": "JohnDoe",
- "sUserLastname": "Doe",
- "sUserFirstname": "John",
- "sApikeyDescriptionX": "Project X",
- "dtAuditdetailDate": "2020-12-31 23:59:59"
}
}, - "bEzsigntemplateEditallowed": true,
- "eEzsigntemplateType": "Usergroup",
- "objEzsigntemplatedocument": {
- "pkiEzsigntemplatedocumentID": 133,
- "fkiEzsigntemplateID": 36,
- "sEzsigntemplatedocumentName": "Standard Contract",
- "iEzsigntemplatedocumentPagetotal": 5,
- "iEzsigntemplatedocumentSignaturetotal": 8,
- "bEzsigntemplatedocumentHassignedsignatures": true
}, - "a_objEzsigntemplatesigner": [
- {
- "pkiEzsigntemplatesignerID": 9,
- "fkiEzsigntemplateID": 36,
- "sEzsigntemplatesignerDescription": "Customer"
}
]
}
], - "a_objEzsigntemplatepackage": [
- {
- "pkiEzsigntemplatepackageID": 99,
- "fkiEzsignfoldertypeID": 5,
- "fkiLanguageID": 2,
- "sLanguageNameX": "English",
- "sEzsigntemplatepackageDescription": "Package for new clients",
- "bEzsigntemplatepackageAdminonly": true,
- "bEzsigntemplatepackageNeedvalidation": true,
- "bEzsigntemplatepackageIsactive": true,
- "sEzsignfoldertypeNameX": "Default",
- "bEzsigntemplatepackageEditallowed": true,
- "a_objEzsigntemplatepackagesigner": [
- {
- "pkiEzsigntemplatepackagesignerID": 174,
- "fkiEzsigntemplatepackageID": 99,
- "sEzsigntemplatepackagesignerDescription": "Customer"
}
], - "a_objEzsigntemplatepackagemembership": [
- {
- "pkiEzsigntemplatepackagemembershipID": 194,
- "fkiEzsigntemplatepackageID": 99,
- "fkiEzsigntemplateID": 36,
- "iEzsigntemplatepackagemembershipOrder": 1,
- "objEzsigntemplate": {
- "pkiEzsigntemplateID": 36,
- "fkiEzsigntemplatedocumentID": 133,
- "fkiEzsignfoldertypeID": 5,
- "fkiLanguageID": 2,
- "sLanguageNameX": "English",
- "sEzsigntemplateDescription": "Standard Contract",
- "sEzsigntemplateFilenamepattern": "Contract",
- "bEzsigntemplateAdminonly": true,
- "sEzsignfoldertypeNameX": "Default",
- "objAudit": {
- "objAuditdetailCreated": {
- "fkiUserID": 70,
- "fkiApikeyID": 99,
- "sUserLoginname": "JohnDoe",
- "sUserLastname": "Doe",
- "sUserFirstname": "John",
- "sApikeyDescriptionX": "Project X",
- "dtAuditdetailDate": "2020-12-31 23:59:59"
}, - "objAuditdetailModified": {
- "fkiUserID": 70,
- "fkiApikeyID": 99,
- "sUserLoginname": "JohnDoe",
- "sUserLastname": "Doe",
- "sUserFirstname": "John",
- "sApikeyDescriptionX": "Project X",
- "dtAuditdetailDate": "2020-12-31 23:59:59"
}
}, - "bEzsigntemplateEditallowed": true,
- "eEzsigntemplateType": "Usergroup",
- "objEzsigntemplatedocument": {
- "pkiEzsigntemplatedocumentID": 133,
- "fkiEzsigntemplateID": 36,
- "sEzsigntemplatedocumentName": "Standard Contract",
- "iEzsigntemplatedocumentPagetotal": 5,
- "iEzsigntemplatedocumentSignaturetotal": 8,
- "bEzsigntemplatedocumentHassignedsignatures": true
}, - "a_objEzsigntemplatesigner": [
- {
- "pkiEzsigntemplatesignerID": 9,
- "fkiEzsigntemplateID": 36,
- "sEzsigntemplatesignerDescription": "Customer"
}
]
}, - "a_objEzsigntemplatepackagesignermembership": [
- {
- "pkiEzsigntemplatepackagesignermembershipID": 237,
- "fkiEzsigntemplatepackagemembershipID": 194,
- "fkiEzsigntemplatepackagesignerID": 174,
- "fkiEzsigntemplatesignerID": 9,
- "iEzsigntemplatepackagesignermembershipCopy": 1
}
]
}
]
}
], - "a_objEzsigntemplateglobal": [
- {
- "pkiEzsigntemplateglobalID": 36,
- "fkiEzsigntemplateglobaldocumentID": 133,
- "fkiModuleID": 40,
- "sModuleNameX": "Purchase",
- "fkiLanguageID": 2,
- "sLanguageNameX": "English",
- "eEzsigntemplateglobalModule": "All",
- "eEzsigntemplateglobalSupplier": "Centris",
- "sEzsigntemplateglobalCode": "DR-FR",
- "sEzsigntemplateglobalDescription": "Standard Contract",
- "objEzsigntemplateglobaldocument": {
- "pkiEzsigntemplateglobaldocumentID": 133,
- "sEzsigntemplateglobaldocumentName": "Standard Contract",
- "iEzsigntemplateglobaldocumentPagetotal": 5,
- "iEzsigntemplateglobaldocumentSignaturetotal": 8
}, - "a_objEzsigntemplateglobalsigner": [
- {
- "pkiEzsigntemplateglobalsignerID": 9,
- "fkiEzsigntemplateglobalID": 36,
- "sEzsigntemplateglobalsignerDescription": "Customer"
}
]
}
]
}, - "objDebugPayload": {
- "iVersionMin": 1,
- "iVersionMax": 2,
- "a_RequiredPermission": [
- 117
], - "bVersionDeprecated": false,
- "dtResponseDate": "2020-12-31 23:59:59"
}, - "objDebug": {
- "sMemoryUsage": "11,923MB",
- "sRunTime": "0.6084s",
- "iSQLSelects": 3,
- "iSQLQueries": 6,
- "a_objSQLQuery": [
- {
- "sQuery": "SELECT * FROM table",
- "fDuration": 0.0001
}, - {
- "sQuery": "SELECT * FROM table",
- "fDuration": 0.0001
}
]
}
}
Retrieve a report that was previously generated and cached
sReportgroupCacheID required | string (Field-sReportgroupCacheID) ^[a-f\\d]{64}$ Example: 0123456789abcdef0123456789abcdef0123456789abcdef0123456789abcdef A cache ID to regenerate the same report without computing the data again. |
{- "mPayload": {
- "objReportgroup": {
- "a_objReport": [
- {
- "a_objReportsection": [
- {
- "a_objReportsubsection": [
- {
- "objReportsubsectionpartHeader": {
- "eReportsubsectionpartType": null,
- "a_objReportrow": [ ]
}, - "objReportsubsectionpartBody": {
- "eReportsubsectionpartType": null,
- "a_objReportrow": [ ]
}, - "objReportsubsectionpartFooter": {
- "eReportsubsectionpartType": null,
- "a_objReportrow": [ ]
}
}
], - "a_objReportcolumn": [
- {
- "objReportcellstyleDefault": {
- "bReportcellstyleBordertop": null,
- "bReportcellstyleBorderbottom": null,
- "bReportcellstyleBorderleft": null,
- "bReportcellstyleBorderright": null,
- "eReportcellHorizontalalignment": null,
- "eReportcellVerticalalignment": null,
- "eReportcellFontweight": null,
- "eReportcellFontunderline": null
}, - "iReportcolumnWidth": 120
}
], - "eReportsectionHorizontalalignment": "Center",
- "iReportsectionColumncount": 5,
- "iReportsectionWidth": 1200
}
]
}
], - "a_objReportcellstyleCustom": [
- {
- "bReportcellstyleBordertop": true,
- "bReportcellstyleBorderbottom": true,
- "bReportcellstyleBorderleft": true,
- "bReportcellstyleBorderright": true,
- "eReportcellHorizontalalignment": "Center",
- "eReportcellVerticalalignment": "Bottom",
- "eReportcellFontweight": "Normal",
- "eReportcellFontunderline": "None"
}
]
}
}, - "objDebugPayload": {
- "iVersionMin": 1,
- "iVersionMax": 2,
- "a_RequiredPermission": [
- 117
], - "bVersionDeprecated": false,
- "dtResponseDate": "2020-12-31 23:59:59"
}, - "objDebug": {
- "sMemoryUsage": "11,923MB",
- "sRunTime": "0.6084s",
- "iSQLSelects": 3,
- "iSQLQueries": 6,
- "a_objSQLQuery": [
- {
- "sQuery": "SELECT * FROM table",
- "fDuration": 0.0001
}, - {
- "sQuery": "SELECT * FROM table",
- "fDuration": 0.0001
}
]
}
}
The endpoint allows to initiate the creation or a user of type Ezsignuser.
The user will be created only once the email verification process will be completed
fkiLanguageID required | integer (Field-pkiLanguageID) [ 1 .. 2 ] The unique ID of the Language. Valid values:
| ||||||
sUserFirstname required | string (Field-sUserFirstname) The first name of the user | ||||||
sUserLastname required | string (Field-sUserLastname) The last name of the user | ||||||
sEmailAddress required | string (Field-sEmailAddress) ^[\w.%+\-!#$%&'*+\/=?^`{|}~]+@[a-zA-Z0-9.-]+\... The email address. | ||||||
sPhoneRegion required | string (Field-sPhoneRegion) Deprecated The region of the phone number. (For a North America Number only) The region is the "514" section in this sample phone number: (514) 990-1516 x123 | ||||||
sPhoneExchange required | string (Field-sPhoneExchange) Deprecated The exchange of the phone number. (For a North America Number only) The exchange is the "990" section in this sample phone number: (514) 990-1516 x123 | ||||||
sPhoneNumber required | string (Field-iPhoneNumber) Deprecated The number of the phone number. (For a North America Number only) The number is the "1516" section in this sample phone number: (514) 990-1516 x123 | ||||||
sPhoneExtension | string (Field-sPhoneExtension) The extension of the phone number. The extension is the "123" section in this sample phone number: (514) 990-1516 x123. It can also be used with international phone numbers |
[- {
- "fkiLanguageID": 2,
- "sUserFirstname": "John",
- "sUserLastname": "Doe",
- "sEmailAddress": "email@example.com",
- "sPhoneRegion": "514",
- "sPhoneExchange": "990",
- "sPhoneNumber": "1516",
- "sPhoneExtension": "123"
}
]
{- "mPayload": {
- "a_sEmailAddressSuccess": [
- "someone@example.com",
- "someone2@example.com"
], - "a_sEmailAddressFailure": [
- "UserAlreadyExists@example.com"
]
}, - "objDebugPayload": {
- "iVersionMin": 1,
- "iVersionMax": 2,
- "a_RequiredPermission": [
- 117
], - "bVersionDeprecated": false,
- "dtResponseDate": "2020-12-31 23:59:59"
}, - "objDebug": {
- "sMemoryUsage": "11,923MB",
- "sRunTime": "0.6084s",
- "iSQLSelects": 3,
- "iSQLQueries": 6,
- "a_objSQLQuery": [
- {
- "sQuery": "SELECT * FROM table",
- "fDuration": 0.0001
}, - {
- "sQuery": "SELECT * FROM table",
- "fDuration": 0.0001
}
]
}
}
Retrieve the details about the current activesession
{- "mPayload": {
- "eActivesessionUsertype": "Normal",
- "eActivesessionOrigin": "BuiltIn",
- "eActivesessionWeekdaystart": "Sunday",
- "fkiLanguageID": 2,
- "sCompanyNameX": "Acme inc.",
- "sDepartmentNameX": "Head Office",
- "bActivesessionDebug": false,
- "bActivesessionIssuperadmin": false,
- "pksCustomerCode": "demo",
- "fkiSystemconfigurationtypeID": 28,
- "fkiSignatureID": 12,
- "bSystemconfigurationEzsignpaidbyoffice": "true",
- "eSystemconfigurationEzsignofficeplan": "Standard",
- "eUserEzsignaccess": "PaidByOffice",
- "eUserEzsignprepaid": "Basic",
- "dtUserEzsignprepaidexpiration": "2020-12-31",
- "a_pkiPermissionID": [
- 53
], - "objUserReal": {
- "pkiUserID": 70,
- "fkiTimezoneID": 247,
- "sUserFirstname": "John",
- "sUserLastname": "Doe",
- "sEmailAddress": "email@example.com",
- "eUserEzsignsendreminderfrequency": "None",
- "iUserInterfacecolor": 3752795,
- "bUserInterfacedark": false,
- "iUserListresult": 25
}, - "objUserCloned": {
- "pkiUserID": 70,
- "fkiTimezoneID": 247,
- "sUserFirstname": "John",
- "sUserLastname": "Doe",
- "sEmailAddress": "email@example.com",
- "eUserEzsignsendreminderfrequency": "None",
- "iUserInterfacecolor": 3752795,
- "bUserInterfacedark": false,
- "iUserListresult": 25
}, - "objApikey": {
- "pkiApikeyID": 99,
- "sApikeyDescriptionX": "Project X"
}, - "a_eModuleInternalname": [
- "Purchases"
]
}, - "objDebugPayload": {
- "iVersionMin": 1,
- "iVersionMax": 2,
- "a_RequiredPermission": [
- 117
], - "bVersionDeprecated": false,
- "dtResponseDate": "2020-12-31 23:59:59"
}, - "objDebug": {
- "sMemoryUsage": "11,923MB",
- "sRunTime": "0.6084s",
- "iSQLSelects": 3,
- "iSQLQueries": 6,
- "a_objSQLQuery": [
- {
- "sQuery": "SELECT * FROM table",
- "fDuration": 0.0001
}, - {
- "sQuery": "SELECT * FROM table",
- "fDuration": 0.0001
}
]
}
}
eOrderBy | string Enum: "pkiActivesessionID_ASC" "pkiActivesessionID_DESC" "fkiUserID_ASC" "fkiUserID_DESC" "fkiComputerID_ASC" … 19 more Specify how you want the results to be sorted |
iRowMax | integer (Field-iRowMax) [ 1 .. 10000 ] Example: iRowMax=100 The maximum numbers of results to be returned. When the content-type is application/json there is an implicit default of 10 000. When it's application/vnd.openxmlformats-officedocument.spreadsheetml.sheet the is no implicit default so if you do not specify iRowMax, all records will be returned. |
iRowOffset | integer (Field-iRowOffset) >= 0 Default: 0 Example: iRowOffset=0 The starting element from where to start retrieving the results. For example if you started at iRowOffset=0 and asked for iRowMax=100, to get the next 100 results, you could specify iRowOffset=100&iRowMax=100, |
sFilter | string (Field-sFilter) Example: sFilter=bField1 eq true and iField2 gte 0 and iField2 lte 1000 and sField3 eq 'Other' and eField4 eq 'Paid' and sField5 like '%needle%' and iField6 in '1,2,3' and dtField7 rg '=m,=3mm' The filter to apply to the request to limit results. |
Accept-Language | string (Header-Accept-Language) Enum: "*" "en" "fr" Example: en The language of the returned content.
|
{- "mPayload": {
- "a_objActivesession": [
- {
- "pkiActivesessionID": 16,
- "fkiUserID": 70,
- "fkiComputerID": 249,
- "fkiCompanyID": 1,
- "fkiDepartmentID": 21,
- "sCompanyNameX": "Acme inc.",
- "sDepartmentNameX": "Head Office",
- "sActivesessionLoginname": "doej",
- "sComputerDescription": "PC001",
- "dtActivesessionFirsthit": "2020-12-31 23:59:59",
- "dtActivesessionLasthit": "2020-12-31 23:59:59",
- "sActivesessionIP": "127.0.0.1"
}
], - "iRowReturned": 100,
- "iRowFiltered": 533
}, - "objDebugPayload": {
- "iVersionMin": 1,
- "iVersionMax": 2,
- "a_RequiredPermission": [
- 117
], - "bVersionDeprecated": false,
- "dtResponseDate": "2020-12-31 23:59:59",
- "a_Filter": {
- "a_AutoType": {
- "property1": "string",
- "property2": "string"
}, - "a_AutoTypeHaving": {
- "property1": "string",
- "property2": "string"
}, - "a_Enum": {
- "property1": {
- "property1": "string",
- "property2": "string"
}, - "property2": {
- "property1": "string",
- "property2": "string"
}
}
}, - "a_OrderBy": {
- "property1": "string",
- "property2": "string"
}, - "iRowMax": 100,
- "iRowOffset": 0
}, - "objDebug": {
- "sMemoryUsage": "11,923MB",
- "sRunTime": "0.6084s",
- "iSQLSelects": 3,
- "iSQLQueries": 6,
- "a_objSQLQuery": [
- {
- "sQuery": "SELECT * FROM table",
- "fDuration": 0.0001
}, - {
- "sQuery": "SELECT * FROM table",
- "fDuration": 0.0001
}
]
}
}
The endpoint allows to create one or many elements at once.
required | Array of objects (apikey-RequestCompound) non-empty |
{- "a_objApikey": [
- {
- "pkiApikeyID": 99,
- "fkiUserID": 70,
- "objApikeyDescription": {
- "sApikeyDescription1": "Projet X",
- "sApikeyDescription2": "Project X"
}, - "bApikeyIsactive": true,
- "bApikeyIssigned": true
}
]
}
{- "mPayload": {
- "a_objApikey": [
- {
- "pkiApikeyID": 99,
- "fkiUserID": 70,
- "objApikeyDescription": {
- "sApikeyDescription1": "Projet X",
- "sApikeyDescription2": "Project X"
}, - "objContactName": {
- "sContactFirstname": "John",
- "sContactLastname": "Doe",
- "sContactCompany": "eZmax Solutions Inc."
}, - "sApikeyApikey": "string",
- "sApikeySecret": "string",
- "bApikeyIsactive": true,
- "bApikeyIssigned": true,
- "objAudit": {
- "objAuditdetailCreated": {
- "fkiUserID": 70,
- "fkiApikeyID": 99,
- "sUserLoginname": "JohnDoe",
- "sUserLastname": "Doe",
- "sUserFirstname": "John",
- "sApikeyDescriptionX": "Project X",
- "dtAuditdetailDate": "2020-12-31 23:59:59"
}, - "objAuditdetailModified": {
- "fkiUserID": 70,
- "fkiApikeyID": 99,
- "sUserLoginname": "JohnDoe",
- "sUserLastname": "Doe",
- "sUserFirstname": "John",
- "sApikeyDescriptionX": "Project X",
- "dtAuditdetailDate": "2020-12-31 23:59:59"
}
}
}
]
}, - "objDebugPayload": {
- "iVersionMin": 1,
- "iVersionMax": 2,
- "a_RequiredPermission": [
- 117
], - "bVersionDeprecated": false,
- "dtResponseDate": "2020-12-31 23:59:59"
}, - "objDebug": {
- "sMemoryUsage": "11,923MB",
- "sRunTime": "0.6084s",
- "iSQLSelects": 3,
- "iSQLQueries": 6,
- "a_objSQLQuery": [
- {
- "sQuery": "SELECT * FROM table",
- "fDuration": 0.0001
}, - {
- "sQuery": "SELECT * FROM table",
- "fDuration": 0.0001
}
]
}
}
pkiApikeyID required | integer (Field-pkiApikeyID) >= 0 Example: 99 The unique ID of the Apikey |
required | object (apikey-RequestCompound) An Apikey Object and children to create a complete structure |
{- "objApikey": {
- "pkiApikeyID": 99,
- "fkiUserID": 70,
- "objApikeyDescription": {
- "sApikeyDescription1": "Projet X",
- "sApikeyDescription2": "Project X"
}, - "bApikeyIsactive": true,
- "bApikeyIssigned": true
}
}
{- "objDebugPayload": {
- "iVersionMin": 1,
- "iVersionMax": 2,
- "a_RequiredPermission": [
- 117
], - "bVersionDeprecated": false,
- "dtResponseDate": "2020-12-31 23:59:59"
}, - "objDebug": {
- "sMemoryUsage": "11,923MB",
- "sRunTime": "0.6084s",
- "iSQLSelects": 3,
- "iSQLQueries": 6,
- "a_objSQLQuery": [
- {
- "sQuery": "SELECT * FROM table",
- "fDuration": 0.0001
}, - {
- "sQuery": "SELECT * FROM table",
- "fDuration": 0.0001
}
]
}
}
Using this endpoint, you can edit multiple Permissions at the same time.
pkiApikeyID required | integer (Field-pkiApikeyID) >= 0 Example: 99 The unique ID of the Apikey |
required | Array of objects (permission-RequestCompound) |
{- "a_objPermission": [
- {
- "pkiPermissionID": 31,
- "fkiUserID": 70,
- "fkiApikeyID": 99,
- "fkiUsergroupID": 2,
- "fkiCompanyID": 1,
- "fkiModulesectionID": 53
}
]
}
{- "mPayload": {
- "a_pkiPermissionID": [
- 31
]
}, - "objDebugPayload": {
- "iVersionMin": 1,
- "iVersionMax": 2,
- "a_RequiredPermission": [
- 117
], - "bVersionDeprecated": false,
- "dtResponseDate": "2020-12-31 23:59:59"
}, - "objDebug": {
- "sMemoryUsage": "11,923MB",
- "sRunTime": "0.6084s",
- "iSQLSelects": 3,
- "iSQLQueries": 6,
- "a_objSQLQuery": [
- {
- "sQuery": "SELECT * FROM table",
- "fDuration": 0.0001
}, - {
- "sQuery": "SELECT * FROM table",
- "fDuration": 0.0001
}
]
}
}
pkiApikeyID required | integer (Field-pkiApikeyID) >= 0 Example: 99 The unique ID of the Apikey |
bApikeyIssigned | boolean (Field-bApikeyIssigned) Whether the apikey is signed or not |
{- "bApikeyIssigned": true
}
{- "mPayload": {
- "objApikey": {
- "pkiApikeyID": 99,
- "fkiUserID": 70,
- "objApikeyDescription": {
- "sApikeyDescription1": "Projet X",
- "sApikeyDescription2": "Project X"
}, - "objContactName": {
- "sContactFirstname": "John",
- "sContactLastname": "Doe",
- "sContactCompany": "eZmax Solutions Inc."
}, - "sApikeyApikey": "string",
- "sApikeySecret": "string",
- "bApikeyIsactive": true,
- "bApikeyIssigned": true,
- "objAudit": {
- "objAuditdetailCreated": {
- "fkiUserID": 70,
- "fkiApikeyID": 99,
- "sUserLoginname": "JohnDoe",
- "sUserLastname": "Doe",
- "sUserFirstname": "John",
- "sApikeyDescriptionX": "Project X",
- "dtAuditdetailDate": "2020-12-31 23:59:59"
}, - "objAuditdetailModified": {
- "fkiUserID": 70,
- "fkiApikeyID": 99,
- "sUserLoginname": "JohnDoe",
- "sUserLastname": "Doe",
- "sUserFirstname": "John",
- "sApikeyDescriptionX": "Project X",
- "dtAuditdetailDate": "2020-12-31 23:59:59"
}
}
}
}, - "objDebugPayload": {
- "iVersionMin": 1,
- "iVersionMax": 2,
- "a_RequiredPermission": [
- 117
], - "bVersionDeprecated": false,
- "dtResponseDate": "2020-12-31 23:59:59"
}, - "objDebug": {
- "sMemoryUsage": "11,923MB",
- "sRunTime": "0.6084s",
- "iSQLSelects": 3,
- "iSQLQueries": 6,
- "a_objSQLQuery": [
- {
- "sQuery": "SELECT * FROM table",
- "fDuration": 0.0001
}, - {
- "sQuery": "SELECT * FROM table",
- "fDuration": 0.0001
}
]
}
}
pkiApikeyID required | integer (Field-pkiApikeyID) >= 0 Example: 99 The unique ID of the Apikey |
{- "mPayload": {
- "objApikey": {
- "pkiApikeyID": 99,
- "fkiUserID": 70,
- "objApikeyDescription": {
- "sApikeyDescription1": "Projet X",
- "sApikeyDescription2": "Project X"
}, - "objContactName": {
- "sContactFirstname": "John",
- "sContactLastname": "Doe",
- "sContactCompany": "eZmax Solutions Inc."
}, - "sApikeyApikey": "string",
- "sApikeySecret": "string",
- "bApikeyIsactive": true,
- "bApikeyIssigned": true,
- "objAudit": {
- "objAuditdetailCreated": {
- "fkiUserID": 70,
- "fkiApikeyID": 99,
- "sUserLoginname": "JohnDoe",
- "sUserLastname": "Doe",
- "sUserFirstname": "John",
- "sApikeyDescriptionX": "Project X",
- "dtAuditdetailDate": "2020-12-31 23:59:59"
}, - "objAuditdetailModified": {
- "fkiUserID": 70,
- "fkiApikeyID": 99,
- "sUserLoginname": "JohnDoe",
- "sUserLastname": "Doe",
- "sUserFirstname": "John",
- "sApikeyDescriptionX": "Project X",
- "dtAuditdetailDate": "2020-12-31 23:59:59"
}
}
}
}, - "objDebugPayload": {
- "iVersionMin": 1,
- "iVersionMax": 2,
- "a_RequiredPermission": [
- 117
], - "bVersionDeprecated": false,
- "dtResponseDate": "2020-12-31 23:59:59"
}, - "objDebug": {
- "sMemoryUsage": "11,923MB",
- "sRunTime": "0.6084s",
- "iSQLSelects": 3,
- "iSQLQueries": 6,
- "a_objSQLQuery": [
- {
- "sQuery": "SELECT * FROM table",
- "fDuration": 0.0001
}, - {
- "sQuery": "SELECT * FROM table",
- "fDuration": 0.0001
}
]
}
}
pkiApikeyID required | integer (Field-pkiApikeyID) >= 0 Example: 99 The unique ID of the Apikey |
{- "mPayload": {
- "a_objCors": [
- {
- "pkiCorsID": 228,
- "fkiApikeyID": 99,
- "sCorsEntryurl": "Https://www.example.com"
}
]
}, - "objDebugPayload": {
- "iVersionMin": 1,
- "iVersionMax": 2,
- "a_RequiredPermission": [
- 117
], - "bVersionDeprecated": false,
- "dtResponseDate": "2020-12-31 23:59:59"
}, - "objDebug": {
- "sMemoryUsage": "11,923MB",
- "sRunTime": "0.6084s",
- "iSQLSelects": 3,
- "iSQLQueries": 6,
- "a_objSQLQuery": [
- {
- "sQuery": "SELECT * FROM table",
- "fDuration": 0.0001
}, - {
- "sQuery": "SELECT * FROM table",
- "fDuration": 0.0001
}
]
}
}
pkiApikeyID required | integer (Field-pkiApikeyID) >= 0 Example: 99 The unique ID of the Apikey |
{- "mPayload": {
- "a_objModulegroup": [
- {
- "pkiModulegroupID": 46,
- "sModulegroupNameX": "Management",
- "a_objModule": [
- {
- "pkiModuleID": 40,
- "fkiModulegroupID": 46,
- "eModuleInternalname": "Purchases",
- "sModuleNameX": "Purchase",
- "bModuleRegistered": true,
- "bModuleRegisteredapi": true,
- "a_objModulesection": [
- {
- "pkiModulesectionID": 53,
- "fkiModuleID": 40,
- "sModulesectionInternalname": "Access",
- "sModulesectionNameX": "Access",
- "a_objPermission": [
- {
- "pkiPermissionID": null,
- "fkiUserID": null,
- "fkiApikeyID": null,
- "fkiUsergroupID": null,
- "fkiCompanyID": null,
- "fkiModulesectionID": null,
- "sCompanyNameX": null
}
]
}
]
}
]
}
]
}, - "objDebugPayload": {
- "iVersionMin": 1,
- "iVersionMax": 2,
- "a_RequiredPermission": [
- 117
], - "bVersionDeprecated": false,
- "dtResponseDate": "2020-12-31 23:59:59"
}, - "objDebug": {
- "sMemoryUsage": "11,923MB",
- "sRunTime": "0.6084s",
- "iSQLSelects": 3,
- "iSQLQueries": 6,
- "a_objSQLQuery": [
- {
- "sQuery": "SELECT * FROM table",
- "fDuration": 0.0001
}, - {
- "sQuery": "SELECT * FROM table",
- "fDuration": 0.0001
}
]
}
}
pkiApikeyID required | integer (Field-pkiApikeyID) >= 0 Example: 99 The unique ID of the Apikey |
{- "mPayload": {
- "a_objSubnet": [
- {
- "pkiSubnetID": 3,
- "fkiUserID": 70,
- "fkiApikeyID": 99,
- "objSubnetDescription": {
- "sSubnetDescription1": "Bureau chef",
- "sSubnetDescription2": "Head office"
}, - "iSubnetNetwork": 134744064,
- "iSubnetMask": 4294967040
}
]
}, - "objDebugPayload": {
- "iVersionMin": 1,
- "iVersionMax": 2,
- "a_RequiredPermission": [
- 117
], - "bVersionDeprecated": false,
- "dtResponseDate": "2020-12-31 23:59:59"
}, - "objDebug": {
- "sMemoryUsage": "11,923MB",
- "sRunTime": "0.6084s",
- "iSQLSelects": 3,
- "iSQLQueries": 6,
- "a_objSQLQuery": [
- {
- "sQuery": "SELECT * FROM table",
- "fDuration": 0.0001
}, - {
- "sQuery": "SELECT * FROM table",
- "fDuration": 0.0001
}
]
}
}
Enum values that can be filtered in query parameter sFilter:
Variable | Valid values |
---|
eOrderBy | string Enum: "pkiApikeyID_ASC" "pkiApikeyID_DESC" "sApikeyDescriptionX_ASC" "sApikeyDescriptionX_DESC" "bApikeyIssigned_ASC" … 7 more Specify how you want the results to be sorted |
iRowMax | integer (Field-iRowMax) [ 1 .. 10000 ] Example: iRowMax=100 The maximum numbers of results to be returned. When the content-type is application/json there is an implicit default of 10 000. When it's application/vnd.openxmlformats-officedocument.spreadsheetml.sheet the is no implicit default so if you do not specify iRowMax, all records will be returned. |
iRowOffset | integer (Field-iRowOffset) >= 0 Default: 0 Example: iRowOffset=0 The starting element from where to start retrieving the results. For example if you started at iRowOffset=0 and asked for iRowMax=100, to get the next 100 results, you could specify iRowOffset=100&iRowMax=100, |
sFilter | string (Field-sFilter) Example: sFilter=bField1 eq true and iField2 gte 0 and iField2 lte 1000 and sField3 eq 'Other' and eField4 eq 'Paid' and sField5 like '%needle%' and iField6 in '1,2,3' and dtField7 rg '=m,=3mm' The filter to apply to the request to limit results. |
Accept-Language | string (Header-Accept-Language) Enum: "*" "en" "fr" Example: en The language of the returned content.
|
{- "mPayload": {
- "a_objApikey": [
- {
- "pkiApikeyID": 99,
- "sApikeyDescriptionX": "Project X",
- "sUserFirstname": "John",
- "sUserLastname": "Doe",
- "bApikeyIsactive": true,
- "bApikeyIssigned": true
}
], - "iRowReturned": 100,
- "iRowFiltered": 533
}, - "objDebugPayload": {
- "iVersionMin": 1,
- "iVersionMax": 2,
- "a_RequiredPermission": [
- 117
], - "bVersionDeprecated": false,
- "dtResponseDate": "2020-12-31 23:59:59",
- "a_Filter": {
- "a_AutoType": {
- "property1": "string",
- "property2": "string"
}, - "a_AutoTypeHaving": {
- "property1": "string",
- "property2": "string"
}, - "a_Enum": {
- "property1": {
- "property1": "string",
- "property2": "string"
}, - "property2": {
- "property1": "string",
- "property2": "string"
}
}
}, - "a_OrderBy": {
- "property1": "string",
- "property2": "string"
}, - "iRowMax": 100,
- "iRowOffset": 0
}, - "objDebug": {
- "sMemoryUsage": "11,923MB",
- "sRunTime": "0.6084s",
- "iSQLSelects": 3,
- "iSQLQueries": 6,
- "a_objSQLQuery": [
- {
- "sQuery": "SELECT * FROM table",
- "fDuration": 0.0001
}, - {
- "sQuery": "SELECT * FROM table",
- "fDuration": 0.0001
}
]
}
}
This endpoint returns an URL to download the attachment.
These links will expire after 5 minutes so the download of the file should be made soon after retrieving the link.
pkiAttachmentID required | integer (Field-pkiAttachmentID) >= 0 Example: 1 The unique ID of the Attachment. |
{- "objDebugPayload": {
- "iVersionMin": 1,
- "iVersionMax": 2,
- "a_RequiredPermission": [
- 117
], - "bVersionDeprecated": false,
- "dtResponseDate": "2020-12-31 23:59:59"
}, - "objDebug": {
- "sMemoryUsage": "11,923MB",
- "sRunTime": "0.6084s",
- "iSQLSelects": 3,
- "iSQLQueries": 6,
- "a_objSQLQuery": [
- {
- "sQuery": "SELECT * FROM table",
- "fDuration": 0.0001
}, - {
- "sQuery": "SELECT * FROM table",
- "fDuration": 0.0001
}
]
}
}
Using this endpoint, you can retrieve the Attachmentlogs of an attachment.
pkiAttachmentID required | integer (Field-pkiAttachmentID) >= 0 Example: 1 The unique ID of the Attachment. |
{- "mPayload": {
- "a_objAttachmentlog": [
- {
- "fkiAttachmentID": 1,
- "fkiUserID": 70,
- "dtAttachmentlogDatetime": "2020-12-31 23:59:59",
- "eAttachmentlogType": "AutoValidation",
- "sAttachmentlogDetail": "System"
}
]
}, - "objDebugPayload": {
- "iVersionMin": 1,
- "iVersionMax": 2,
- "a_RequiredPermission": [
- 117
], - "bVersionDeprecated": false,
- "dtResponseDate": "2020-12-31 23:59:59"
}, - "objDebug": {
- "sMemoryUsage": "11,923MB",
- "sRunTime": "0.6084s",
- "iSQLSelects": 3,
- "iSQLQueries": 6,
- "a_objSQLQuery": [
- {
- "sQuery": "SELECT * FROM table",
- "fDuration": 0.0001
}, - {
- "sQuery": "SELECT * FROM table",
- "fDuration": 0.0001
}
]
}
}
Using this endpoint, you can retrieve the content of an attachment.
pkiAttachmentID required | integer (Field-pkiAttachmentID) >= 0 Example: 1 The unique ID of the Attachment. |
{- "sErrorMessage": "Invalid Signature Headers",
- "eErrorCode": "BADREQUEST"
}
Billingentityexternal is used to automatically send the invoice to a customer's system.
Get the list of Billingentityexternal to be used in a dropdown or autocomplete control.
sSelector required | string Value: "All" The type of Billingentityexternals to return |
eFilterActive | string Default: "Active" Enum: "All" "Active" "Inactive" Specify which results we want to display. |
sQuery | string Allow to filter the returned results |
Accept-Language | string (Header-Accept-Language) Enum: "*" "en" "fr" Example: en The language of the returned content.
|
{- "mPayload": {
- "a_objBillingentityexternal": [
- {
- "pkiBillingentityexternalID": 83,
- "sBillingentityexternalDescription": "ACME Inc",
- "bBillingentityexternalIsactive": true
}
]
}, - "objDebugPayload": {
- "iVersionMin": 1,
- "iVersionMax": 2,
- "a_RequiredPermission": [
- 117
], - "bVersionDeprecated": false,
- "dtResponseDate": "2020-12-31 23:59:59"
}, - "objDebug": {
- "sMemoryUsage": "11,923MB",
- "sRunTime": "0.6084s",
- "iSQLSelects": 3,
- "iSQLQueries": 6,
- "a_objSQLQuery": [
- {
- "sQuery": "SELECT * FROM table",
- "fDuration": 0.0001
}, - {
- "sQuery": "SELECT * FROM table",
- "fDuration": 0.0001
}
]
}
}
The endpoint allows to create one or many elements at once.
required | Array of objects (billingentityinternal-RequestCompound) non-empty |
{- "a_objBillingentityinternal": [
- {
- "pkiBillingentityinternalID": 1,
- "objBillingentityinternalDescription": {
- "sBillingentityinternalDescription1": "Défaut",
- "sBillingentityinternalDescription2": "Default"
}, - "a_objBillingentityinternalproduct": [
- {
- "pkiBillingentityinternalproductID": 254,
- "fkiEzmaxproductID": 172,
- "fkiBillingentityexternalID": 83
}
]
}
]
}
{- "mPayload": {
- "a_pkiBillingentityinternalID": [
- 1
]
}, - "objDebugPayload": {
- "iVersionMin": 1,
- "iVersionMax": 2,
- "a_RequiredPermission": [
- 117
], - "bVersionDeprecated": false,
- "dtResponseDate": "2020-12-31 23:59:59"
}, - "objDebug": {
- "sMemoryUsage": "11,923MB",
- "sRunTime": "0.6084s",
- "iSQLSelects": 3,
- "iSQLQueries": 6,
- "a_objSQLQuery": [
- {
- "sQuery": "SELECT * FROM table",
- "fDuration": 0.0001
}, - {
- "sQuery": "SELECT * FROM table",
- "fDuration": 0.0001
}
]
}
}
pkiBillingentityinternalID required | integer (Field-pkiBillingentityinternalID) >= 0 Example: 1 The unique ID of the Billingentityinternal. |
required | object (billingentityinternal-RequestCompound) A Billingentityinternal Object and children |
{- "objBillingentityinternal": {
- "pkiBillingentityinternalID": 1,
- "objBillingentityinternalDescription": {
- "sBillingentityinternalDescription1": "Défaut",
- "sBillingentityinternalDescription2": "Default"
}, - "a_objBillingentityinternalproduct": [
- {
- "pkiBillingentityinternalproductID": 254,
- "fkiEzmaxproductID": 172,
- "fkiBillingentityexternalID": 83
}
]
}
}
{- "objDebugPayload": {
- "iVersionMin": 1,
- "iVersionMax": 2,
- "a_RequiredPermission": [
- 117
], - "bVersionDeprecated": false,
- "dtResponseDate": "2020-12-31 23:59:59"
}, - "objDebug": {
- "sMemoryUsage": "11,923MB",
- "sRunTime": "0.6084s",
- "iSQLSelects": 3,
- "iSQLQueries": 6,
- "a_objSQLQuery": [
- {
- "sQuery": "SELECT * FROM table",
- "fDuration": 0.0001
}, - {
- "sQuery": "SELECT * FROM table",
- "fDuration": 0.0001
}
]
}
}
pkiBillingentityinternalID required | integer (Field-pkiBillingentityinternalID) >= 0 Example: 1 The unique ID of the Billingentityinternal. |
{- "mPayload": {
- "objBillingentityinternal": {
- "pkiBillingentityinternalID": 1,
- "objBillingentityinternalDescription": {
- "sBillingentityinternalDescription1": "Défaut",
- "sBillingentityinternalDescription2": "Default"
}, - "a_objBillingentityinternalproduct": [
- {
- "pkiBillingentityinternalproductID": 254,
- "fkiBillingentityinternalID": 1,
- "sBillingentityinternalDescriptionX": "Default",
- "fkiEzmaxproductID": 172,
- "sEzmaxproductDescriptionX": "eZmax (License)",
- "fkiBillingentityexternalID": 83,
- "sBillingentityexternalDescription": "ACME Inc"
}
]
}
}, - "objDebugPayload": {
- "iVersionMin": 1,
- "iVersionMax": 2,
- "a_RequiredPermission": [
- 117
], - "bVersionDeprecated": false,
- "dtResponseDate": "2020-12-31 23:59:59"
}, - "objDebug": {
- "sMemoryUsage": "11,923MB",
- "sRunTime": "0.6084s",
- "iSQLSelects": 3,
- "iSQLQueries": 6,
- "a_objSQLQuery": [
- {
- "sQuery": "SELECT * FROM table",
- "fDuration": 0.0001
}, - {
- "sQuery": "SELECT * FROM table",
- "fDuration": 0.0001
}
]
}
}
eOrderBy | string Enum: "pkiBillingentityinternalID_ASC" "pkiBillingentityinternalID_DESC" "sBillingentityinternalDescriptionX_ASC" "sBillingentityinternalDescriptionX_DESC" Specify how you want the results to be sorted |
iRowMax | integer (Field-iRowMax) [ 1 .. 10000 ] Example: iRowMax=100 The maximum numbers of results to be returned. When the content-type is application/json there is an implicit default of 10 000. When it's application/vnd.openxmlformats-officedocument.spreadsheetml.sheet the is no implicit default so if you do not specify iRowMax, all records will be returned. |
iRowOffset | integer (Field-iRowOffset) >= 0 Default: 0 Example: iRowOffset=0 The starting element from where to start retrieving the results. For example if you started at iRowOffset=0 and asked for iRowMax=100, to get the next 100 results, you could specify iRowOffset=100&iRowMax=100, |
sFilter | string (Field-sFilter) Example: sFilter=bField1 eq true and iField2 gte 0 and iField2 lte 1000 and sField3 eq 'Other' and eField4 eq 'Paid' and sField5 like '%needle%' and iField6 in '1,2,3' and dtField7 rg '=m,=3mm' The filter to apply to the request to limit results. |
Accept-Language | string (Header-Accept-Language) Enum: "*" "en" "fr" Example: en The language of the returned content.
|
{- "mPayload": {
- "a_objBillingentityinternal": [
- {
- "pkiBillingentityinternalID": 1,
- "sBillingentityinternalDescriptionX": "Default"
}
], - "iRowReturned": 100,
- "iRowFiltered": 533
}, - "objDebugPayload": {
- "iVersionMin": 1,
- "iVersionMax": 2,
- "a_RequiredPermission": [
- 117
], - "bVersionDeprecated": false,
- "dtResponseDate": "2020-12-31 23:59:59",
- "a_Filter": {
- "a_AutoType": {
- "property1": "string",
- "property2": "string"
}, - "a_AutoTypeHaving": {
- "property1": "string",
- "property2": "string"
}, - "a_Enum": {
- "property1": {
- "property1": "string",
- "property2": "string"
}, - "property2": {
- "property1": "string",
- "property2": "string"
}
}
}, - "a_OrderBy": {
- "property1": "string",
- "property2": "string"
}, - "iRowMax": 100,
- "iRowOffset": 0
}, - "objDebug": {
- "sMemoryUsage": "11,923MB",
- "sRunTime": "0.6084s",
- "iSQLSelects": 3,
- "iSQLQueries": 6,
- "a_objSQLQuery": [
- {
- "sQuery": "SELECT * FROM table",
- "fDuration": 0.0001
}, - {
- "sQuery": "SELECT * FROM table",
- "fDuration": 0.0001
}
]
}
}
Get the list of Billingentityinternal to be used in a dropdown or autocomplete control.
sSelector required | string Value: "All" The type of Billingentityinternals to return |
eFilterActive | string Default: "Active" Enum: "All" "Active" "Inactive" Specify which results we want to display. |
sQuery | string Allow to filter the returned results |
Accept-Language | string (Header-Accept-Language) Enum: "*" "en" "fr" Example: en The language of the returned content.
|
{- "mPayload": {
- "a_objBillingentityinternal": [
- {
- "pkiBillingentityinternalID": 1,
- "sBillingentityinternalDescriptionX": "Default",
- "bBillingentityinternalIsactive": true
}
]
}, - "objDebugPayload": {
- "iVersionMin": 1,
- "iVersionMax": 2,
- "a_RequiredPermission": [
- 117
], - "bVersionDeprecated": false,
- "dtResponseDate": "2020-12-31 23:59:59"
}, - "objDebug": {
- "sMemoryUsage": "11,923MB",
- "sRunTime": "0.6084s",
- "iSQLSelects": 3,
- "iSQLQueries": 6,
- "a_objSQLQuery": [
- {
- "sQuery": "SELECT * FROM table",
- "fDuration": 0.0001
}, - {
- "sQuery": "SELECT * FROM table",
- "fDuration": 0.0001
}
]
}
}
The endpoint allows to create one or many elements at once.
required | Array of objects (branding-RequestCompound) non-empty |
{- "a_objBranding": [
- {
- "pkiBrandingID": 78,
- "objBrandingDescription": {
- "sBrandingDescription1": "Compagnie X",
- "sBrandingDescription2": "Company X"
}, - "eBrandingLogo": "Default",
- "sBrandingBase64": "iVBORw0KGgoAAAANSUhEUgAAAEAAAABACAYAAACqaXHeAAAAY0lEQVR42u3QAREAAAQEMJKL/nI4W4R1JVOPtQABAgQIECBAgAABAgQIECBAgAABAgQIECBAgAABAgQIECBAgAABAgQIECBAgAABAgQIECBAgAABAgQIECBAgAABAgQIEHDfArMdn4FHyLy9AAAAAElFTkSuQmCC",
- "eBrandingLogointerface": "Default",
- "sBrandingLogointerfaceBase64": "iVBORw0KGgoAAAANSUhEUgAAAEAAAABACAYAAACqaXHeAAAAY0lEQVR42u3QAREAAAQEMJKL/nI4W4R1JVOPtQABAgQIECBAgAABAgQIECBAgAABAgQIECBAgAABAgQIECBAgAABAgQIECBAgAABAgQIECBAgAABAgQIECBAgAABAgQIEHDfArMdn4FHyLy9AAAAAElFTkSuQmCC",
- "iBrandingColortext": 3752795,
- "iBrandingColortextlinkbox": 0,
- "iBrandingColortextbutton": 16777215,
- "iBrandingColorbackground": 15658734,
- "iBrandingColorbackgroundbutton": 13577007,
- "iBrandingColorbackgroundsmallbox": 16777215,
- "iBrandingInterfacecolor": 15658734,
- "sBrandingName": "eZmax (Corp)",
- "sEmailAddress": "email@example.com",
- "bBrandingIsactive": true
}
]
}
{- "mPayload": {
- "a_pkiBrandingID": [
- 78
]
}, - "objDebugPayload": {
- "iVersionMin": 1,
- "iVersionMax": 2,
- "a_RequiredPermission": [
- 117
], - "bVersionDeprecated": false,
- "dtResponseDate": "2020-12-31 23:59:59"
}, - "objDebug": {
- "sMemoryUsage": "11,923MB",
- "sRunTime": "0.6084s",
- "iSQLSelects": 3,
- "iSQLQueries": 6,
- "a_objSQLQuery": [
- {
- "sQuery": "SELECT * FROM table",
- "fDuration": 0.0001
}, - {
- "sQuery": "SELECT * FROM table",
- "fDuration": 0.0001
}
]
}
}
pkiBrandingID required | integer (Field-pkiBrandingID) >= 0 Example: 78 The unique ID of the Branding |
required | object (branding-RequestCompound) A Branding Object and children |
{- "objBranding": {
- "pkiBrandingID": 78,
- "objBrandingDescription": {
- "sBrandingDescription1": "Compagnie X",
- "sBrandingDescription2": "Company X"
}, - "eBrandingLogo": "Default",
- "sBrandingBase64": "iVBORw0KGgoAAAANSUhEUgAAAEAAAABACAYAAACqaXHeAAAAY0lEQVR42u3QAREAAAQEMJKL/nI4W4R1JVOPtQABAgQIECBAgAABAgQIECBAgAABAgQIECBAgAABAgQIECBAgAABAgQIECBAgAABAgQIECBAgAABAgQIECBAgAABAgQIEHDfArMdn4FHyLy9AAAAAElFTkSuQmCC",
- "eBrandingLogointerface": "Default",
- "sBrandingLogointerfaceBase64": "iVBORw0KGgoAAAANSUhEUgAAAEAAAABACAYAAACqaXHeAAAAY0lEQVR42u3QAREAAAQEMJKL/nI4W4R1JVOPtQABAgQIECBAgAABAgQIECBAgAABAgQIECBAgAABAgQIECBAgAABAgQIECBAgAABAgQIECBAgAABAgQIECBAgAABAgQIEHDfArMdn4FHyLy9AAAAAElFTkSuQmCC",
- "iBrandingColortext": 3752795,
- "iBrandingColortextlinkbox": 0,
- "iBrandingColortextbutton": 16777215,
- "iBrandingColorbackground": 15658734,
- "iBrandingColorbackgroundbutton": 13577007,
- "iBrandingColorbackgroundsmallbox": 16777215,
- "iBrandingInterfacecolor": 15658734,
- "sBrandingName": "eZmax (Corp)",
- "sEmailAddress": "email@example.com",
- "bBrandingIsactive": true
}
}
{- "objDebugPayload": {
- "iVersionMin": 1,
- "iVersionMax": 2,
- "a_RequiredPermission": [
- 117
], - "bVersionDeprecated": false,
- "dtResponseDate": "2020-12-31 23:59:59"
}, - "objDebug": {
- "sMemoryUsage": "11,923MB",
- "sRunTime": "0.6084s",
- "iSQLSelects": 3,
- "iSQLQueries": 6,
- "a_objSQLQuery": [
- {
- "sQuery": "SELECT * FROM table",
- "fDuration": 0.0001
}, - {
- "sQuery": "SELECT * FROM table",
- "fDuration": 0.0001
}
]
}
}
pkiBrandingID required | integer (Field-pkiBrandingID) >= 0 Example: 78 The unique ID of the Branding |
{- "mPayload": {
- "objBranding": {
- "pkiBrandingID": 78,
- "fkiEmailID": 22,
- "objBrandingDescription": {
- "sBrandingDescription1": "Compagnie X",
- "sBrandingDescription2": "Company X"
}, - "sBrandingDescriptionX": "Company X",
- "sBrandingName": "eZmax (Corp)",
- "sEmailAddress": "email@example.com",
- "eBrandingLogo": "Default",
- "eBrandingLogointerface": "Default",
- "iBrandingColortext": 3752795,
- "iBrandingColortextlinkbox": 0,
- "iBrandingColortextbutton": 16777215,
- "iBrandingColorbackground": 15658734,
- "iBrandingColorbackgroundbutton": 13577007,
- "iBrandingColorbackgroundsmallbox": 16777215,
- "iBrandingInterfacecolor": 15658734,
- "bBrandingIsactive": true,
}
}, - "objDebugPayload": {
- "iVersionMin": 1,
- "iVersionMax": 2,
- "a_RequiredPermission": [
- 117
], - "bVersionDeprecated": false,
- "dtResponseDate": "2020-12-31 23:59:59"
}, - "objDebug": {
- "sMemoryUsage": "11,923MB",
- "sRunTime": "0.6084s",
- "iSQLSelects": 3,
- "iSQLQueries": 6,
- "a_objSQLQuery": [
- {
- "sQuery": "SELECT * FROM table",
- "fDuration": 0.0001
}, - {
- "sQuery": "SELECT * FROM table",
- "fDuration": 0.0001
}
]
}
}
Enum values that can be filtered in query parameter sFilter:
Variable | Valid values |
---|---|
eBrandingLogo | Default JPEG PNG |
eBrandingLogointerface | Default JPEG PNG |
eOrderBy | string Enum: "pkiBrandingID_ASC" "pkiBrandingID_DESC" "sBrandingDescriptionX_ASC" "sBrandingDescriptionX_DESC" "iBrandingColortext_ASC" … 13 more Specify how you want the results to be sorted |
iRowMax | integer (Field-iRowMax) [ 1 .. 10000 ] Example: iRowMax=100 The maximum numbers of results to be returned. When the content-type is application/json there is an implicit default of 10 000. When it's application/vnd.openxmlformats-officedocument.spreadsheetml.sheet the is no implicit default so if you do not specify iRowMax, all records will be returned. |
iRowOffset | integer (Field-iRowOffset) >= 0 Default: 0 Example: iRowOffset=0 The starting element from where to start retrieving the results. For example if you started at iRowOffset=0 and asked for iRowMax=100, to get the next 100 results, you could specify iRowOffset=100&iRowMax=100, |
sFilter | string (Field-sFilter) Example: sFilter=bField1 eq true and iField2 gte 0 and iField2 lte 1000 and sField3 eq 'Other' and eField4 eq 'Paid' and sField5 like '%needle%' and iField6 in '1,2,3' and dtField7 rg '=m,=3mm' The filter to apply to the request to limit results. |
Accept-Language | string (Header-Accept-Language) Enum: "*" "en" "fr" Example: en The language of the returned content.
|
{- "mPayload": {
- "a_objBranding": [
- {
- "pkiBrandingID": 78,
- "sBrandingDescriptionX": "Company X",
- "iBrandingColortext": 3752795,
- "iBrandingColortextlinkbox": 0,
- "iBrandingColortextbutton": 16777215,
- "iBrandingColorbackground": 15658734,
- "iBrandingColorbackgroundbutton": 13577007,
- "iBrandingColorbackgroundsmallbox": 16777215,
- "bBrandingIsactive": true
}
], - "iRowReturned": 100,
- "iRowFiltered": 533
}, - "objDebugPayload": {
- "iVersionMin": 1,
- "iVersionMax": 2,
- "a_RequiredPermission": [
- 117
], - "bVersionDeprecated": false,
- "dtResponseDate": "2020-12-31 23:59:59",
- "a_Filter": {
- "a_AutoType": {
- "property1": "string",
- "property2": "string"
}, - "a_AutoTypeHaving": {
- "property1": "string",
- "property2": "string"
}, - "a_Enum": {
- "property1": {
- "property1": "string",
- "property2": "string"
}, - "property2": {
- "property1": "string",
- "property2": "string"
}
}
}, - "a_OrderBy": {
- "property1": "string",
- "property2": "string"
}, - "iRowMax": 100,
- "iRowOffset": 0
}, - "objDebug": {
- "sMemoryUsage": "11,923MB",
- "sRunTime": "0.6084s",
- "iSQLSelects": 3,
- "iSQLQueries": 6,
- "a_objSQLQuery": [
- {
- "sQuery": "SELECT * FROM table",
- "fDuration": 0.0001
}, - {
- "sQuery": "SELECT * FROM table",
- "fDuration": 0.0001
}
]
}
}
Get the list of Branding to be used in a dropdown or autocomplete control.
sSelector required | string Value: "All" The type of Brandings to return |
eFilterActive | string Default: "Active" Enum: "All" "Active" "Inactive" Specify which results we want to display. |
sQuery | string Allow to filter the returned results |
Accept-Language | string (Header-Accept-Language) Enum: "*" "en" "fr" Example: en The language of the returned content.
|
{- "mPayload": {
- "a_objBranding": [
- {
- "sBrandingDescriptionX": "Company X",
- "pkiBrandingID": 78,
- "bBrandingIsactive": true
}
]
}, - "objDebugPayload": {
- "iVersionMin": 1,
- "iVersionMax": 2,
- "a_RequiredPermission": [
- 117
], - "bVersionDeprecated": false,
- "dtResponseDate": "2020-12-31 23:59:59"
}, - "objDebug": {
- "sMemoryUsage": "11,923MB",
- "sRunTime": "0.6084s",
- "iSQLSelects": 3,
- "iSQLQueries": 6,
- "a_objSQLQuery": [
- {
- "sQuery": "SELECT * FROM table",
- "fDuration": 0.0001
}, - {
- "sQuery": "SELECT * FROM table",
- "fDuration": 0.0001
}
]
}
}
pkiBuyercontractID required | integer (Field-pkiBuyercontractID) [ 1 .. 65535 ] Example: 38 The unique ID of the Buyercontract |
{- "mPayload": {
- "a_objCommunication": [
- {
- "pkiCommunicationID": 1,
- "dtCreatedDate": "2020-12-31 23:59:59",
- "eCommunicationDirection": "Outbound",
- "eCommunicationImportance": "Normal",
- "eCommunicationType": "Email",
- "iCommunicationrecipientCount": 8,
- "sCommunicationSubject": "This is an example of subject",
- "sCommunicationSender": "John Doe",
- "sCommunicationRecipient": "Jane Doe"
}
]
}, - "objDebugPayload": {
- "iVersionMin": 1,
- "iVersionMax": 2,
- "a_RequiredPermission": [
- 117
], - "bVersionDeprecated": false,
- "dtResponseDate": "2020-12-31 23:59:59",
- "a_Filter": {
- "a_AutoType": {
- "property1": "string",
- "property2": "string"
}, - "a_AutoTypeHaving": {
- "property1": "string",
- "property2": "string"
}, - "a_Enum": {
- "property1": {
- "property1": "string",
- "property2": "string"
}, - "property2": {
- "property1": "string",
- "property2": "string"
}
}
}, - "a_OrderBy": {
- "property1": "string",
- "property2": "string"
}, - "iRowMax": 100,
- "iRowOffset": 0
}, - "objDebug": {
- "sMemoryUsage": "11,923MB",
- "sRunTime": "0.6084s",
- "iSQLSelects": 3,
- "iSQLQueries": 6,
- "a_objSQLQuery": [
- {
- "sQuery": "SELECT * FROM table",
- "fDuration": 0.0001
}, - {
- "sQuery": "SELECT * FROM table",
- "fDuration": 0.0001
}
]
}
}
eOrderBy | string Enum: "pkiClonehistoryID_ASC" "pkiClonehistoryID_DESC" "fkiUserIDCloning_ASC" "fkiUserIDCloning_DESC" "fkiUserIDCloned_ASC" … 17 more Specify how you want the results to be sorted |
iRowMax | integer (Field-iRowMax) [ 1 .. 10000 ] Example: iRowMax=100 The maximum numbers of results to be returned. When the content-type is application/json there is an implicit default of 10 000. When it's application/vnd.openxmlformats-officedocument.spreadsheetml.sheet the is no implicit default so if you do not specify iRowMax, all records will be returned. |
iRowOffset | integer (Field-iRowOffset) >= 0 Default: 0 Example: iRowOffset=0 The starting element from where to start retrieving the results. For example if you started at iRowOffset=0 and asked for iRowMax=100, to get the next 100 results, you could specify iRowOffset=100&iRowMax=100, |
sFilter | string (Field-sFilter) Example: sFilter=bField1 eq true and iField2 gte 0 and iField2 lte 1000 and sField3 eq 'Other' and eField4 eq 'Paid' and sField5 like '%needle%' and iField6 in '1,2,3' and dtField7 rg '=m,=3mm' The filter to apply to the request to limit results. |
Accept-Language | string (Header-Accept-Language) Enum: "*" "en" "fr" Example: en The language of the returned content.
|
{- "mPayload": {
- "a_objClonehistory": [
- {
- "pkiClonehistoryID": 12,
- "fkiUserIDCloning": 70,
- "fkiUserIDCloned": 70,
- "dtClonehistoryFirsthit": "2020-12-31 23:59:59",
- "dtClonehistoryLasthit": "2020-12-31 23:59:59",
- "sUserLoginnameCloning": "JohnDoe",
- "sUserFirstnameCloning": "John",
- "sUserLastnameCloning": "Doe",
- "sUserLoginnameCloned": "JohnDoe",
- "sUserFirstnameCloned": "John",
- "sUserLastnameCloned": "Doe"
}
], - "iRowReturned": 100,
- "iRowFiltered": 533
}, - "objDebugPayload": {
- "iVersionMin": 1,
- "iVersionMax": 2,
- "a_RequiredPermission": [
- 117
], - "bVersionDeprecated": false,
- "dtResponseDate": "2020-12-31 23:59:59",
- "a_Filter": {
- "a_AutoType": {
- "property1": "string",
- "property2": "string"
}, - "a_AutoTypeHaving": {
- "property1": "string",
- "property2": "string"
}, - "a_Enum": {
- "property1": {
- "property1": "string",
- "property2": "string"
}, - "property2": {
- "property1": "string",
- "property2": "string"
}
}
}, - "a_OrderBy": {
- "property1": "string",
- "property2": "string"
}, - "iRowMax": 100,
- "iRowOffset": 0
}, - "objDebug": {
- "sMemoryUsage": "11,923MB",
- "sRunTime": "0.6084s",
- "iSQLSelects": 3,
- "iSQLQueries": 6,
- "a_objSQLQuery": [
- {
- "sQuery": "SELECT * FROM table",
- "fDuration": 0.0001
}, - {
- "sQuery": "SELECT * FROM table",
- "fDuration": 0.0001
}
]
}
}
The endpoint allows to send one or many elements at once.
required | Array of objects (communication-RequestCompound) non-empty |
{- "a_objCommunication": [
- {
- "pkiCommunicationID": 1,
- "eCommunicationImportance": "Normal",
- "eCommunicationType": "Email",
- "objCommunicationsender": {
- "fkiAgentID": 1,
- "fkiBrokerID": 26,
- "fkiMailboxsharedID": 47,
- "fkiPhonelinesharedID": 47,
- "fkiUserID": 70
}, - "sCommunicationSubject": "This is an example of subject",
- "tCommunicationBody": "string",
- "bCommunicationPrivate": false,
- "eCommunicationAttachmenttype": "Attachment",
- "iCommunicationAttachmentlinkexpiration": 1,
- "bCommunicationReadreceipt": true,
- "a_objCommunicationattachment": [
- {
- "objCommunicationattachment": {
- "pkiCommunicationattachmentID": 203,
- "fkiAttachmentID": 1,
- "fkiInvoiceID": 1,
- "fkiSalarypreparationID": 1
}, - "objCommunicationexternalattachment": {
- "sFileName": "example.pdf",
- "sFileBase64": "JVBERi0xLjENCiXCpcKxw6sNCg0KMSAwIG9iag0KICA8PCAvVHlwZSAvQ2F0YWxvZw0KICAgICAvUGFnZXMgMiAwIFINCiAgPj4NCmVuZG9iag0KDQoyIDAgb2JqDQogIDw8IC9UeXBlIC9QYWdlcw0KICAgICAvS2lkcyBbMyAwIFJdDQogICAgIC9Db3VudCAxDQogICAgIC9NZWRpYUJveCBbMCAwIDMwMCAxNDRdDQogID4+DQplbmRvYmoNCg0KMyAwIG9iag0KICA8PCAgL1R5cGUgL1BhZ2UNCiAgICAgIC9QYXJlbnQgMiAwIFINCiAgICAgIC9SZXNvdXJjZXMNCiAgICAgICA8PCAvRm9udA0KICAgICAgICAgICA8PCAvRjENCiAgICAgICAgICAgICAgIDw8IC9UeXBlIC9Gb250DQogICAgICAgICAgICAgICAgICAvU3VidHlwZSAvVHlwZTENCiAgICAgICAgICAgICAgICAgIC9CYXNlRm9udCAvVGltZXMtUm9tYW4NCiAgICAgICAgICAgICAgID4+DQogICAgICAgICAgID4+DQogICAgICAgPj4NCiAgICAgIC9Db250ZW50cyA0IDAgUg0KICA+Pg0KZW5kb2JqDQoNCjQgMCBvYmoNCiAgPDwgL0xlbmd0aCA1NSA+Pg0Kc3RyZWFtDQogIEJUDQogICAgL0YxIDE4IFRmDQogICAgMCAwIFRkDQogICAgKEhlbGxvIFdvcmxkKSBUag0KICBFVA0KZW5kc3RyZWFtDQplbmRvYmoNCg0KeHJlZg0KMCA1DQowMDAwMDAwMDAwIDY1NTM1IGYgDQowMDAwMDAwMDE4IDAwMDAwIG4gDQowMDAwMDAwMDc3IDAwMDAwIG4gDQowMDAwMDAwMTc4IDAwMDAwIG4gDQowMDAwMDAwNDU3IDAwMDAwIG4gDQp0cmFpbGVyDQogIDw8ICAvUm9vdCAxIDAgUg0KICAgICAgL1NpemUgNQ0KICA+Pg0Kc3RhcnR4cmVmDQo1NjUNCiUlRU9G",
- "eFileSource": "Base64"
}
}
], - "a_objCommunicationrecipient": [
- {
- "pkiCommunicationrecipientID": 1,
- "fkiAgentID": 1,
- "fkiBrokerID": 26,
- "fkiContactID": 21,
- "fkiCustomerID": 18,
- "fkiEmployeeID": 31,
- "fkiAssistantID": 1,
- "fkiExternalbrokerID": 1,
- "fkiEzsignsignerID": 89,
- "fkiNotaryID": 1,
- "fkiSupplierID": 1,
- "fkiUserID": 70,
- "fkiMailboxsharedID": 47,
- "fkiPhonelinesharedID": 47,
- "eCommunicationrecipientType": "To"
}
], - "a_objCommunicationreference": [
- {
- "pkiCommunicationreferenceID": 1263,
- "fkiBuyercontractID": 38,
- "fkiEzsignfolderID": 33,
- "fkiInscriptionID": 17,
- "fkiInscriptiontempID": 2445,
- "fkiInvoiceID": 1,
- "fkiOtherincomeID": 142,
- "fkiElectronicfundstransferID": 1262,
- "fkiRejectedoffertopurchaseID": 532
}
], - "a_objCommunicationexternalrecipient": [
- {
- "pkiCommunicationexternalrecipientID": 9,
- "sEmailAddress": "email@example.com",
- "sPhoneE164": "+15149901516",
- "eCommunicationexternalrecipientType": "To",
- "sCommunicationexternalrecipientName": "John Doe"
}
]
}
]
}
{- "mPayload": {
- "a_pkiCommunicationID": [
- 1
]
}, - "objDebugPayload": {
- "iVersionMin": 1,
- "iVersionMax": 2,
- "a_RequiredPermission": [
- 117
], - "bVersionDeprecated": false,
- "dtResponseDate": "2020-12-31 23:59:59"
}, - "objDebug": {
- "sMemoryUsage": "11,923MB",
- "sRunTime": "0.6084s",
- "iSQLSelects": 3,
- "iSQLQueries": 6,
- "a_objSQLQuery": [
- {
- "sQuery": "SELECT * FROM table",
- "fDuration": 0.0001
}, - {
- "sQuery": "SELECT * FROM table",
- "fDuration": 0.0001
}
]
}
}
Get the list of Company to be used in a dropdown or autocomplete control.
sSelector required | string Value: "All" The type of Companys to return |
eFilterActive | string Default: "Active" Enum: "All" "Active" "Inactive" Specify which results we want to display. |
sQuery | string Allow to filter the returned results |
Accept-Language | string (Header-Accept-Language) Enum: "*" "en" "fr" Example: en The language of the returned content.
|
{- "mPayload": {
- "a_objCompany": [
- {
- "pkiCompanyID": 1,
- "sCompanyNameX": "Acme inc.",
- "bCompanyIsactive": true
}
]
}, - "objDebugPayload": {
- "iVersionMin": 1,
- "iVersionMax": 2,
- "a_RequiredPermission": [
- 117
], - "bVersionDeprecated": false,
- "dtResponseDate": "2020-12-31 23:59:59"
}, - "objDebug": {
- "sMemoryUsage": "11,923MB",
- "sRunTime": "0.6084s",
- "iSQLSelects": 3,
- "iSQLQueries": 6,
- "a_objSQLQuery": [
- {
- "sQuery": "SELECT * FROM table",
- "fDuration": 0.0001
}, - {
- "sQuery": "SELECT * FROM table",
- "fDuration": 0.0001
}
]
}
}
The endpoint allows to create one or many elements at once.
required | Array of objects (cors-RequestCompound) non-empty |
{- "a_objCors": [
- {
- "pkiCorsID": 228,
- "fkiApikeyID": 99,
- "sCorsEntryurl": "Https://www.example.com"
}
]
}
{- "mPayload": {
- "a_pkiCorsID": [
- 228
]
}, - "objDebugPayload": {
- "iVersionMin": 1,
- "iVersionMax": 2,
- "a_RequiredPermission": [
- 117
], - "bVersionDeprecated": false,
- "dtResponseDate": "2020-12-31 23:59:59"
}, - "objDebug": {
- "sMemoryUsage": "11,923MB",
- "sRunTime": "0.6084s",
- "iSQLSelects": 3,
- "iSQLQueries": 6,
- "a_objSQLQuery": [
- {
- "sQuery": "SELECT * FROM table",
- "fDuration": 0.0001
}, - {
- "sQuery": "SELECT * FROM table",
- "fDuration": 0.0001
}
]
}
}
pkiCorsID required | integer (Field-pkiCorsID) [ 0 .. 65535 ] Example: 228 The unique ID of the Cors |
{- "objDebugPayload": {
- "iVersionMin": 1,
- "iVersionMax": 2,
- "a_RequiredPermission": [
- 117
], - "bVersionDeprecated": false,
- "dtResponseDate": "2020-12-31 23:59:59"
}, - "objDebug": {
- "sMemoryUsage": "11,923MB",
- "sRunTime": "0.6084s",
- "iSQLSelects": 3,
- "iSQLQueries": 6,
- "a_objSQLQuery": [
- {
- "sQuery": "SELECT * FROM table",
- "fDuration": 0.0001
}, - {
- "sQuery": "SELECT * FROM table",
- "fDuration": 0.0001
}
]
}
}
pkiCorsID required | integer (Field-pkiCorsID) [ 0 .. 65535 ] Example: 228 The unique ID of the Cors |
required | object (cors-RequestCompound) A Cors Object and children |
{- "objCors": {
- "pkiCorsID": 228,
- "fkiApikeyID": 99,
- "sCorsEntryurl": "Https://www.example.com"
}
}
{- "objDebugPayload": {
- "iVersionMin": 1,
- "iVersionMax": 2,
- "a_RequiredPermission": [
- 117
], - "bVersionDeprecated": false,
- "dtResponseDate": "2020-12-31 23:59:59"
}, - "objDebug": {
- "sMemoryUsage": "11,923MB",
- "sRunTime": "0.6084s",
- "iSQLSelects": 3,
- "iSQLQueries": 6,
- "a_objSQLQuery": [
- {
- "sQuery": "SELECT * FROM table",
- "fDuration": 0.0001
}, - {
- "sQuery": "SELECT * FROM table",
- "fDuration": 0.0001
}
]
}
}
pkiCorsID required | integer (Field-pkiCorsID) [ 0 .. 65535 ] Example: 228 The unique ID of the Cors |
{- "mPayload": {
- "objCors": {
- "pkiCorsID": 228,
- "fkiApikeyID": 99,
- "sCorsEntryurl": "Https://www.example.com"
}
}, - "objDebugPayload": {
- "iVersionMin": 1,
- "iVersionMax": 2,
- "a_RequiredPermission": [
- 117
], - "bVersionDeprecated": false,
- "dtResponseDate": "2020-12-31 23:59:59"
}, - "objDebug": {
- "sMemoryUsage": "11,923MB",
- "sRunTime": "0.6084s",
- "iSQLSelects": 3,
- "iSQLQueries": 6,
- "a_objSQLQuery": [
- {
- "sQuery": "SELECT * FROM table",
- "fDuration": 0.0001
}, - {
- "sQuery": "SELECT * FROM table",
- "fDuration": 0.0001
}
]
}
}
Get the list of Country to be used in a dropdown or autocomplete control.
sSelector required | string Value: "All" The type of Countries to return |
eFilterActive | string Default: "Active" Enum: "All" "Active" "Inactive" Specify which results we want to display. |
sQuery | string Allow to filter the returned results |
Accept-Language | string (Header-Accept-Language) Enum: "*" "en" "fr" Example: en The language of the returned content.
|
{- "mPayload": {
- "a_objCountry": [
- {
- "pkiCountryID": 1,
- "sCountryNameX": "Canada",
- "sCountryShortname": "CA",
- "bCountryIsactive": true
}
]
}, - "objDebugPayload": {
- "iVersionMin": 1,
- "iVersionMax": 2,
- "a_RequiredPermission": [
- 117
], - "bVersionDeprecated": false,
- "dtResponseDate": "2020-12-31 23:59:59"
}, - "objDebug": {
- "sMemoryUsage": "11,923MB",
- "sRunTime": "0.6084s",
- "iSQLSelects": 3,
- "iSQLQueries": 6,
- "a_objSQLQuery": [
- {
- "sQuery": "SELECT * FROM table",
- "fDuration": 0.0001
}, - {
- "sQuery": "SELECT * FROM table",
- "fDuration": 0.0001
}
]
}
}
The endpoint allows to create one or many elements at once.
required | Array of objects (creditcardclient-RequestCompound) non-empty |
{- "a_objCreditcardclient": [
- {
- "pkiCreditcardclientID": 114,
- "fksCreditcardtokenID": "6B29FC40-CA47-1067-B31D-00DD010662DA",
- "bCreditcardclientrelationIsdefault": true,
- "sCreditcardclientDescription": "Visa",
- "bCreditcardclientIsactive": true,
- "bCreditcardclientAllowedagencypayment": true,
- "bCreditcardclientAllowedroyallepageprotection": true,
- "bCreditcardclientAllowedtranquillit": true,
- "objCreditcarddetail": {
- "iCreditcarddetailExpirationmonth": 10,
- "iCreditcarddetailExpirationyear": 2024,
- "sCreditcarddetailCivic": "2500",
- "sCreditcarddetailStreet": "Daniel-Johnson Blvd.",
- "sCreditcarddetailZip": "H7T 2P6"
}, - "sCreditcardclientCVV": "string"
}
]
}
{- "mPayload": {
- "a_pkiCreditcardclientID": [
- 114
]
}, - "objDebugPayload": {
- "iVersionMin": 1,
- "iVersionMax": 2,
- "a_RequiredPermission": [
- 117
], - "bVersionDeprecated": false,
- "dtResponseDate": "2020-12-31 23:59:59"
}, - "objDebug": {
- "sMemoryUsage": "11,923MB",
- "sRunTime": "0.6084s",
- "iSQLSelects": 3,
- "iSQLQueries": 6,
- "a_objSQLQuery": [
- {
- "sQuery": "SELECT * FROM table",
- "fDuration": 0.0001
}, - {
- "sQuery": "SELECT * FROM table",
- "fDuration": 0.0001
}
]
}
}
pkiCreditcardclientID required | integer (Field-pkiCreditcardclientID) [ 0 .. 65535 ] Example: 114 The unique ID of the Creditcardclient |
{- "objDebugPayload": {
- "iVersionMin": 1,
- "iVersionMax": 2,
- "a_RequiredPermission": [
- 117
], - "bVersionDeprecated": false,
- "dtResponseDate": "2020-12-31 23:59:59"
}, - "objDebug": {
- "sMemoryUsage": "11,923MB",
- "sRunTime": "0.6084s",
- "iSQLSelects": 3,
- "iSQLQueries": 6,
- "a_objSQLQuery": [
- {
- "sQuery": "SELECT * FROM table",
- "fDuration": 0.0001
}, - {
- "sQuery": "SELECT * FROM table",
- "fDuration": 0.0001
}
]
}
}
pkiCreditcardclientID required | integer (Field-pkiCreditcardclientID) [ 0 .. 65535 ] Example: 114 The unique ID of the Creditcardclient |
required | object (creditcardclient-RequestCompound) A Creditcardclient Object and children |
{- "objCreditcardclient": {
- "pkiCreditcardclientID": 114,
- "fksCreditcardtokenID": "6B29FC40-CA47-1067-B31D-00DD010662DA",
- "bCreditcardclientrelationIsdefault": true,
- "sCreditcardclientDescription": "Visa",
- "bCreditcardclientIsactive": true,
- "bCreditcardclientAllowedagencypayment": true,
- "bCreditcardclientAllowedroyallepageprotection": true,
- "bCreditcardclientAllowedtranquillit": true,
- "objCreditcarddetail": {
- "iCreditcarddetailExpirationmonth": 10,
- "iCreditcarddetailExpirationyear": 2024,
- "sCreditcarddetailCivic": "2500",
- "sCreditcarddetailStreet": "Daniel-Johnson Blvd.",
- "sCreditcarddetailZip": "H7T 2P6"
}, - "sCreditcardclientCVV": "string"
}
}
{- "objDebugPayload": {
- "iVersionMin": 1,
- "iVersionMax": 2,
- "a_RequiredPermission": [
- 117
], - "bVersionDeprecated": false,
- "dtResponseDate": "2020-12-31 23:59:59"
}, - "objDebug": {
- "sMemoryUsage": "11,923MB",
- "sRunTime": "0.6084s",
- "iSQLSelects": 3,
- "iSQLQueries": 6,
- "a_objSQLQuery": [
- {
- "sQuery": "SELECT * FROM table",
- "fDuration": 0.0001
}, - {
- "sQuery": "SELECT * FROM table",
- "fDuration": 0.0001
}
]
}
}
pkiCreditcardclientID required | integer (Field-pkiCreditcardclientID) [ 0 .. 65535 ] Example: 114 The unique ID of the Creditcardclient |
{- "mPayload": {
- "objCreditcardclient": {
- "pkiCreditcardclientID": 114,
- "fkiCreditcarddetailID": 53,
- "bCreditcardclientrelationIsdefault": true,
- "sCreditcardclientDescription": "Visa",
- "bCreditcardclientIsactive": true,
- "bCreditcardclientAllowedagencypayment": true,
- "bCreditcardclientAllowedroyallepageprotection": true,
- "bCreditcardclientAllowedtranquillit": true,
- "objCreditcarddetail": {
- "pkiCreditcarddetailID": 53,
- "fkiCreditcardtypeID": 2,
- "sCreditcarddetailNumbermasked": "XXXX XXXX XXXX 4242",
- "iCreditcarddetailExpirationmonth": 10,
- "iCreditcarddetailExpirationyear": 2024,
- "sCreditcarddetailCivic": "2500",
- "sCreditcarddetailStreet": "Daniel-Johnson Blvd.",
- "sCreditcarddetailZip": "H7T 2P6"
}
}
}, - "objDebugPayload": {
- "iVersionMin": 1,
- "iVersionMax": 2,
- "a_RequiredPermission": [
- 117
], - "bVersionDeprecated": false,
- "dtResponseDate": "2020-12-31 23:59:59"
}, - "objDebug": {
- "sMemoryUsage": "11,923MB",
- "sRunTime": "0.6084s",
- "iSQLSelects": 3,
- "iSQLQueries": 6,
- "a_objSQLQuery": [
- {
- "sQuery": "SELECT * FROM table",
- "fDuration": 0.0001
}, - {
- "sQuery": "SELECT * FROM table",
- "fDuration": 0.0001
}
]
}
}
eOrderBy | string Enum: "pkiCreditcardclientID_ASC" "pkiCreditcardclientID_DESC" "fkiCreditcarddetailID_ASC" "fkiCreditcarddetailID_DESC" "bCreditcardclientrelationIsdefault_ASC" … 15 more Specify how you want the results to be sorted |
iRowMax | integer (Field-iRowMax) [ 1 .. 10000 ] Example: iRowMax=100 The maximum numbers of results to be returned. When the content-type is application/json there is an implicit default of 10 000. When it's application/vnd.openxmlformats-officedocument.spreadsheetml.sheet the is no implicit default so if you do not specify iRowMax, all records will be returned. |
iRowOffset | integer (Field-iRowOffset) >= 0 Default: 0 Example: iRowOffset=0 The starting element from where to start retrieving the results. For example if you started at iRowOffset=0 and asked for iRowMax=100, to get the next 100 results, you could specify iRowOffset=100&iRowMax=100, |
sFilter | string (Field-sFilter) Example: sFilter=bField1 eq true and iField2 gte 0 and iField2 lte 1000 and sField3 eq 'Other' and eField4 eq 'Paid' and sField5 like '%needle%' and iField6 in '1,2,3' and dtField7 rg '=m,=3mm' The filter to apply to the request to limit results. |
Accept-Language | string (Header-Accept-Language) Enum: "*" "en" "fr" Example: en The language of the returned content.
|
{- "mPayload": {
- "a_objCreditcardclient": [
- {
- "pkiCreditcardclientID": 114,
- "fkiCreditcarddetailID": 53,
- "bCreditcardclientrelationIsdefault": true,
- "sCreditcardclientDescription": "Visa",
- "bCreditcardclientIsactive": true,
- "bCreditcardclientAllowedagencypayment": true,
- "bCreditcardclientAllowedroyallepageprotection": true,
- "bCreditcardclientAllowedtranquillit": true,
- "iCreditcarddetailExpirationmonth": 10,
- "iCreditcarddetailExpirationyear": 2024,
- "sCreditcarddetailNumbermasked": "XXXX XXXX XXXX 4242"
}
], - "iRowReturned": 100,
- "iRowFiltered": 533
}, - "objDebugPayload": {
- "iVersionMin": 1,
- "iVersionMax": 2,
- "a_RequiredPermission": [
- 117
], - "bVersionDeprecated": false,
- "dtResponseDate": "2020-12-31 23:59:59",
- "a_Filter": {
- "a_AutoType": {
- "property1": "string",
- "property2": "string"
}, - "a_AutoTypeHaving": {
- "property1": "string",
- "property2": "string"
}, - "a_Enum": {
- "property1": {
- "property1": "string",
- "property2": "string"
}, - "property2": {
- "property1": "string",
- "property2": "string"
}
}
}, - "a_OrderBy": {
- "property1": "string",
- "property2": "string"
}, - "iRowMax": 100,
- "iRowOffset": 0
}, - "objDebug": {
- "sMemoryUsage": "11,923MB",
- "sRunTime": "0.6084s",
- "iSQLSelects": 3,
- "iSQLQueries": 6,
- "a_objSQLQuery": [
- {
- "sQuery": "SELECT * FROM table",
- "fDuration": 0.0001
}, - {
- "sQuery": "SELECT * FROM table",
- "fDuration": 0.0001
}
]
}
}
Get the list of Creditcardclient to be used in a dropdown or autocomplete control.
sSelector required | string Value: "All" The type of Creditcardclients to return |
eFilterActive | string Default: "Active" Enum: "All" "Active" "Inactive" Specify which results we want to display. |
sQuery | string Allow to filter the returned results |
Accept-Language | string (Header-Accept-Language) Enum: "*" "en" "fr" Example: en The language of the returned content.
|
{- "mPayload": {
- "a_objCreditcardclient": [
- {
- "pkiCreditcardclientID": 114,
- "sCreditcardclientDescription": "Visa",
- "bCreditcardclientIsactive": true
}
]
}, - "objDebugPayload": {
- "iVersionMin": 1,
- "iVersionMax": 2,
- "a_RequiredPermission": [
- 117
], - "bVersionDeprecated": false,
- "dtResponseDate": "2020-12-31 23:59:59"
}, - "objDebug": {
- "sMemoryUsage": "11,923MB",
- "sRunTime": "0.6084s",
- "iSQLSelects": 3,
- "iSQLQueries": 6,
- "a_objSQLQuery": [
- {
- "sQuery": "SELECT * FROM table",
- "fDuration": 0.0001
}, - {
- "sQuery": "SELECT * FROM table",
- "fDuration": 0.0001
}
]
}
}
Get the list of Creditcardtype to be used in a dropdown or autocomplete control.
sSelector required | string Value: "All" The type of Creditcardtypes to return |
eFilterActive | string Default: "Active" Enum: "All" "Active" "Inactive" Specify which results we want to display. |
sQuery | string Allow to filter the returned results |
Accept-Language | string (Header-Accept-Language) Enum: "*" "en" "fr" Example: en The language of the returned content.
|
{- "mPayload": {
- "a_objCreditcardtype": [
- {
- "sCreditcardtypeName": "Visa",
- "pkiCreditcardtypeID": 2,
- "eCreditcardtypeCodename": "visa"
}
]
}, - "objDebugPayload": {
- "iVersionMin": 1,
- "iVersionMax": 2,
- "a_RequiredPermission": [
- 117
], - "bVersionDeprecated": false,
- "dtResponseDate": "2020-12-31 23:59:59"
}, - "objDebug": {
- "sMemoryUsage": "11,923MB",
- "sRunTime": "0.6084s",
- "iSQLSelects": 3,
- "iSQLQueries": 6,
- "a_objSQLQuery": [
- {
- "sQuery": "SELECT * FROM table",
- "fDuration": 0.0001
}, - {
- "sQuery": "SELECT * FROM table",
- "fDuration": 0.0001
}
]
}
}
Get the list of Department to be used in a dropdown or autocomplete control.
sSelector required | string Enum: "All" "AllButDepartmentZero" "Company" "CompanyButDepartmentZero" The type of Departments to return |
eFilterActive | string Default: "Active" Enum: "All" "Active" "Inactive" Specify which results we want to display. |
sQuery | string Allow to filter the returned results |
Accept-Language | string (Header-Accept-Language) Enum: "*" "en" "fr" Example: en The language of the returned content.
|
{- "mPayload": {
- "a_objDepartment": [
- {
- "sCompanyNameX": "Acme inc.",
- "sDepartmentNameX": "Head Office",
- "pkiDepartmentID": 21,
- "bDepartmentIsactive": true
}
]
}, - "objDebugPayload": {
- "iVersionMin": 1,
- "iVersionMax": 2,
- "a_RequiredPermission": [
- 117
], - "bVersionDeprecated": false,
- "dtResponseDate": "2020-12-31 23:59:59"
}, - "objDebug": {
- "sMemoryUsage": "11,923MB",
- "sRunTime": "0.6084s",
- "iSQLSelects": 3,
- "iSQLQueries": 6,
- "a_objSQLQuery": [
- {
- "sQuery": "SELECT * FROM table",
- "fDuration": 0.0001
}, - {
- "sQuery": "SELECT * FROM table",
- "fDuration": 0.0001
}
]
}
}
The endpoint allows to create one or many elements at once.
required | Array of objects (discussion-RequestCompound) non-empty |
{- "a_objDiscussion": [
- {
- "pkiDiscussionID": 125,
- "sDiscussionDescription": "John Doe",
- "bDiscussionClosed": true
}
]
}
{- "mPayload": {
- "a_pkiDiscussionID": [
- 125
]
}, - "objDebugPayload": {
- "iVersionMin": 1,
- "iVersionMax": 2,
- "a_RequiredPermission": [
- 117
], - "bVersionDeprecated": false,
- "dtResponseDate": "2020-12-31 23:59:59"
}, - "objDebug": {
- "sMemoryUsage": "11,923MB",
- "sRunTime": "0.6084s",
- "iSQLSelects": 3,
- "iSQLQueries": 6,
- "a_objSQLQuery": [
- {
- "sQuery": "SELECT * FROM table",
- "fDuration": 0.0001
}, - {
- "sQuery": "SELECT * FROM table",
- "fDuration": 0.0001
}
]
}
}
pkiDiscussionID required | integer (Field-pkiDiscussionID) [ 0 .. 16777215 ] Example: 125 The unique ID of the Discussion |
{- "objDebugPayload": {
- "iVersionMin": 1,
- "iVersionMax": 2,
- "a_RequiredPermission": [
- 117
], - "bVersionDeprecated": false,
- "dtResponseDate": "2020-12-31 23:59:59"
}, - "objDebug": {
- "sMemoryUsage": "11,923MB",
- "sRunTime": "0.6084s",
- "iSQLSelects": 3,
- "iSQLQueries": 6,
- "a_objSQLQuery": [
- {
- "sQuery": "SELECT * FROM table",
- "fDuration": 0.0001
}, - {
- "sQuery": "SELECT * FROM table",
- "fDuration": 0.0001
}
]
}
}
pkiDiscussionID required | integer (Field-pkiDiscussionID) [ 0 .. 16777215 ] Example: 125 The unique ID of the Discussion |
required | object (discussion-RequestPatch) A Discussion Object |
{- "objDiscussion": {
- "sDiscussionDescription": "John Doe",
- "bDiscussionClosed": true
}
}
{- "objDebugPayload": {
- "iVersionMin": 1,
- "iVersionMax": 2,
- "a_RequiredPermission": [
- 117
], - "bVersionDeprecated": false,
- "dtResponseDate": "2020-12-31 23:59:59"
}, - "objDebug": {
- "sMemoryUsage": "11,923MB",
- "sRunTime": "0.6084s",
- "iSQLSelects": 3,
- "iSQLQueries": 6,
- "a_objSQLQuery": [
- {
- "sQuery": "SELECT * FROM table",
- "fDuration": 0.0001
}, - {
- "sQuery": "SELECT * FROM table",
- "fDuration": 0.0001
}
]
}
}
pkiDiscussionID required | integer (Field-pkiDiscussionID) [ 0 .. 16777215 ] Example: 125 The unique ID of the Discussion |
{- "mPayload": {
- "objDiscussion": {
- "pkiDiscussionID": 125,
- "sDiscussionDescription": "John Doe",
- "bDiscussionClosed": true,
- "dtDiscussionLastread": "2020-12-31 23:59:59",
- "iDiscussionmessageCount": 4,
- "iDiscussionmessageCountunread": 4,
- "objDiscussionconfiguration": {
- "bDiscussionconfigurationCompletehistorywhenadded": true,
- "bDiscussionconfigurationCreateallowed": true,
- "bDiscussionconfigurationDeleteallowed": true,
- "bDiscussionconfigurationDeletediscussionmessageallowed": true,
- "bDiscussionconfigurationEditdiscussionmessageallowed": true
}, - "a_objDiscussionmembership": [
- {
- "pkiDiscussionmembershipID": 165,
- "fkiDiscussionID": 125,
- "fkiUserID": 70,
- "fkiUsergroupID": 2,
- "fkiModulesectionID": 53,
- "sDiscussionmembershipDescription": "John Doe",
- "dtDiscussionmembershipJoined": "2020-12-31 23:59:59"
}
], - "a_objDiscussionmessage": [
- {
- "pkiDiscussionmessageID": 123,
- "fkiDiscussionID": 125,
- "fkiDiscussionmembershipID": 165,
- "fkiDiscussionmembershipIDActionrequired": 165,
- "eDiscussionmessageStatus": "New",
- "tDiscussionmessageContent": "Hello, this is an example of content in a message",
- "sDiscussionmessageCreatorname": "John Doe",
- "sDiscussionmessageActionrequiredname": "Jane Doe",
- "objAudit": {
- "objAuditdetailCreated": {
- "fkiUserID": 70,
- "fkiApikeyID": 99,
- "sUserLoginname": "JohnDoe",
- "sUserLastname": "Doe",
- "sUserFirstname": "John",
- "sApikeyDescriptionX": "Project X",
- "dtAuditdetailDate": "2020-12-31 23:59:59"
}, - "objAuditdetailModified": {
- "fkiUserID": 70,
- "fkiApikeyID": 99,
- "sUserLoginname": "JohnDoe",
- "sUserLastname": "Doe",
- "sUserFirstname": "John",
- "sApikeyDescriptionX": "Project X",
- "dtAuditdetailDate": "2020-12-31 23:59:59"
}
}
}
]
}
}, - "objDebugPayload": {
- "iVersionMin": 1,
- "iVersionMax": 2,
- "a_RequiredPermission": [
- 117
], - "bVersionDeprecated": false,
- "dtResponseDate": "2020-12-31 23:59:59"
}, - "objDebug": {
- "sMemoryUsage": "11,923MB",
- "sRunTime": "0.6084s",
- "iSQLSelects": 3,
- "iSQLQueries": 6,
- "a_objSQLQuery": [
- {
- "sQuery": "SELECT * FROM table",
- "fDuration": 0.0001
}, - {
- "sQuery": "SELECT * FROM table",
- "fDuration": 0.0001
}
]
}
}
pkiDiscussionID required | integer (Field-pkiDiscussionID) [ 0 .. 16777215 ] Example: 125 The unique ID of the Discussion |
dtDiscussionreadstatusDate | string^[0-9]{4}-(0[1-9]|1[0-2])-(0[1-9]|[1-2][0-9]|... The date of the last discussion message read |
{- "dtDiscussionreadstatusDate": "2020-12-31 23:59:59"
}
{- "objDebugPayload": {
- "iVersionMin": 1,
- "iVersionMax": 2,
- "a_RequiredPermission": [
- 117
], - "bVersionDeprecated": false,
- "dtResponseDate": "2020-12-31 23:59:59"
}, - "objDebug": {
- "sMemoryUsage": "11,923MB",
- "sRunTime": "0.6084s",
- "iSQLSelects": 3,
- "iSQLQueries": 6,
- "a_objSQLQuery": [
- {
- "sQuery": "SELECT * FROM table",
- "fDuration": 0.0001
}, - {
- "sQuery": "SELECT * FROM table",
- "fDuration": 0.0001
}
]
}
}
The endpoint allows to create one or many elements at once.
required | Array of objects (discussionmembership-RequestCompound) non-empty |
{- "a_objDiscussionmembership": [
- {
- "pkiDiscussionmembershipID": 165,
- "fkiDiscussionID": 125,
- "fkiUserID": 70,
- "fkiUsergroupID": 2,
- "fkiModulesectionID": 53,
- "dtDiscussionmembershipJoined": "2020-12-31 23:59:59"
}
]
}
{- "mPayload": {
- "a_pkiDiscussionmembershipID": [
- 165
]
}, - "objDebugPayload": {
- "iVersionMin": 1,
- "iVersionMax": 2,
- "a_RequiredPermission": [
- 117
], - "bVersionDeprecated": false,
- "dtResponseDate": "2020-12-31 23:59:59"
}, - "objDebug": {
- "sMemoryUsage": "11,923MB",
- "sRunTime": "0.6084s",
- "iSQLSelects": 3,
- "iSQLQueries": 6,
- "a_objSQLQuery": [
- {
- "sQuery": "SELECT * FROM table",
- "fDuration": 0.0001
}, - {
- "sQuery": "SELECT * FROM table",
- "fDuration": 0.0001
}
]
}
}
pkiDiscussionmembershipID required | integer (Field-pkiDiscussionmembershipID) [ 0 .. 16777215 ] Example: 165 The unique ID of the Discussionmembership |
{- "objDebugPayload": {
- "iVersionMin": 1,
- "iVersionMax": 2,
- "a_RequiredPermission": [
- 117
], - "bVersionDeprecated": false,
- "dtResponseDate": "2020-12-31 23:59:59"
}, - "objDebug": {
- "sMemoryUsage": "11,923MB",
- "sRunTime": "0.6084s",
- "iSQLSelects": 3,
- "iSQLQueries": 6,
- "a_objSQLQuery": [
- {
- "sQuery": "SELECT * FROM table",
- "fDuration": 0.0001
}, - {
- "sQuery": "SELECT * FROM table",
- "fDuration": 0.0001
}
]
}
}
The endpoint allows to create one or many elements at once.
required | Array of objects (discussionmessage-RequestCompound) non-empty |
{- "a_objDiscussionmessage": [
- {
- "pkiDiscussionmessageID": 123,
- "fkiDiscussionID": 125,
- "fkiDiscussionmembershipIDActionrequired": 165,
- "tDiscussionmessageContent": "Hello, this is an example of content in a message"
}
]
}
{- "mPayload": {
- "a_pkiDiscussionmessageID": [
- 123
]
}, - "objDebugPayload": {
- "iVersionMin": 1,
- "iVersionMax": 2,
- "a_RequiredPermission": [
- 117
], - "bVersionDeprecated": false,
- "dtResponseDate": "2020-12-31 23:59:59"
}, - "objDebug": {
- "sMemoryUsage": "11,923MB",
- "sRunTime": "0.6084s",
- "iSQLSelects": 3,
- "iSQLQueries": 6,
- "a_objSQLQuery": [
- {
- "sQuery": "SELECT * FROM table",
- "fDuration": 0.0001
}, - {
- "sQuery": "SELECT * FROM table",
- "fDuration": 0.0001
}
]
}
}
pkiDiscussionmessageID required | integer (Field-pkiDiscussionmessageID) [ 0 .. 16777215 ] Example: 123 The unique ID of the Discussionmessage |
{- "objDebugPayload": {
- "iVersionMin": 1,
- "iVersionMax": 2,
- "a_RequiredPermission": [
- 117
], - "bVersionDeprecated": false,
- "dtResponseDate": "2020-12-31 23:59:59"
}, - "objDebug": {
- "sMemoryUsage": "11,923MB",
- "sRunTime": "0.6084s",
- "iSQLSelects": 3,
- "iSQLQueries": 6,
- "a_objSQLQuery": [
- {
- "sQuery": "SELECT * FROM table",
- "fDuration": 0.0001
}, - {
- "sQuery": "SELECT * FROM table",
- "fDuration": 0.0001
}
]
}
}
pkiDiscussionmessageID required | integer (Field-pkiDiscussionmessageID) [ 0 .. 16777215 ] Example: 123 The unique ID of the Discussionmessage |
required | object (discussionmessage-RequestPatch) A Discussionmessage Object |
{- "objDiscussionmessage": {
- "fkiDiscussionmembershipIDActionrequired": 165,
- "tDiscussionmessageContent": "Hello, this is an example of content in a message"
}
}
{- "objDebugPayload": {
- "iVersionMin": 1,
- "iVersionMax": 2,
- "a_RequiredPermission": [
- 117
], - "bVersionDeprecated": false,
- "dtResponseDate": "2020-12-31 23:59:59"
}, - "objDebug": {
- "sMemoryUsage": "11,923MB",
- "sRunTime": "0.6084s",
- "iSQLSelects": 3,
- "iSQLQueries": 6,
- "a_objSQLQuery": [
- {
- "sQuery": "SELECT * FROM table",
- "fDuration": 0.0001
}, - {
- "sQuery": "SELECT * FROM table",
- "fDuration": 0.0001
}
]
}
}
pkiElectronicfundstransferID required | integer (Field-pkiElectronicfundstransferID) [ 1 .. 65535 ] Example: 1262 The unique ID of the Electronicfundstransfer |
{- "mPayload": {
- "a_objCommunication": [
- {
- "pkiCommunicationID": 1,
- "dtCreatedDate": "2020-12-31 23:59:59",
- "eCommunicationDirection": "Outbound",
- "eCommunicationImportance": "Normal",
- "eCommunicationType": "Email",
- "iCommunicationrecipientCount": 8,
- "sCommunicationSubject": "This is an example of subject",
- "sCommunicationSender": "John Doe",
- "sCommunicationRecipient": "Jane Doe"
}
]
}, - "objDebugPayload": {
- "iVersionMin": 1,
- "iVersionMax": 2,
- "a_RequiredPermission": [
- 117
], - "bVersionDeprecated": false,
- "dtResponseDate": "2020-12-31 23:59:59",
- "a_Filter": {
- "a_AutoType": {
- "property1": "string",
- "property2": "string"
}, - "a_AutoTypeHaving": {
- "property1": "string",
- "property2": "string"
}, - "a_Enum": {
- "property1": {
- "property1": "string",
- "property2": "string"
}, - "property2": {
- "property1": "string",
- "property2": "string"
}
}
}, - "a_OrderBy": {
- "property1": "string",
- "property2": "string"
}, - "iRowMax": 100,
- "iRowOffset": 0
}, - "objDebug": {
- "sMemoryUsage": "11,923MB",
- "sRunTime": "0.6084s",
- "iSQLSelects": 3,
- "iSQLQueries": 6,
- "a_objSQLQuery": [
- {
- "sQuery": "SELECT * FROM table",
- "fDuration": 0.0001
}, - {
- "sQuery": "SELECT * FROM table",
- "fDuration": 0.0001
}
]
}
}
Get the list of Emailtype to be used in a dropdown or autocomplete control.
sSelector required | string Value: "All" The type of Emailtypes to return |
eFilterActive | string Default: "Active" Enum: "All" "Active" "Inactive" Specify which results we want to display. |
sQuery | string Allow to filter the returned results |
Accept-Language | string (Header-Accept-Language) Enum: "*" "en" "fr" Example: en The language of the returned content.
|
{- "mPayload": {
- "a_objEmailtype": [
- {
- "pkiEmailtypeID": 1,
- "sEmailtypeNameX": "Office",
- "bEmailtypeIsactive": true
}
]
}, - "objDebugPayload": {
- "iVersionMin": 1,
- "iVersionMax": 2,
- "a_RequiredPermission": [
- 117
], - "bVersionDeprecated": false,
- "dtResponseDate": "2020-12-31 23:59:59"
}, - "objDebug": {
- "sMemoryUsage": "11,923MB",
- "sRunTime": "0.6084s",
- "iSQLSelects": 3,
- "iSQLQueries": 6,
- "a_objSQLQuery": [
- {
- "sQuery": "SELECT * FROM table",
- "fDuration": 0.0001
}, - {
- "sQuery": "SELECT * FROM table",
- "fDuration": 0.0001
}
]
}
}
pkiEzmaxinvoicingID required | integer (Field-pkiEzmaxinvoicingID) >= 0 Example: 28 The unique ID of the Ezmaxinvoicing |
{- "mPayload": {
- "objEzmaxinvoicing": {
- "pkiEzmaxinvoicingID": 28,
- "fkiEzmaxinvoicingcontractID": 28,
- "fkiEzmaxpricingID": 28,
- "fkiSystemconfigurationtypeID": 28,
- "sSystemconfigurationtypeDescriptionX": "eZsign (Pro)",
- "yyyymmEzmaxinvoicing": "2022-01",
- "iEzmaxinvoicingDays": 28,
- "eEzmaxinvoicingPaymenttype": "Cheque",
- "dEzmaxinvoicingRebatepaymenttype": "1.00",
- "iEzmaxinvoicingContractlength": 1,
- "dEzmaxinvoicingRebatecontractlength": "1.00",
- "bEzmaxinvoicingRebateEzsignallagents": true,
- "objAudit": {
- "objAuditdetailCreated": {
- "fkiUserID": 70,
- "fkiApikeyID": 99,
- "sUserLoginname": "JohnDoe",
- "sUserLastname": "Doe",
- "sUserFirstname": "John",
- "sApikeyDescriptionX": "Project X",
- "dtAuditdetailDate": "2020-12-31 23:59:59"
}, - "objAuditdetailModified": {
- "fkiUserID": 70,
- "fkiApikeyID": 99,
- "sUserLoginname": "JohnDoe",
- "sUserLastname": "Doe",
- "sUserFirstname": "John",
- "sApikeyDescriptionX": "Project X",
- "dtAuditdetailDate": "2020-12-31 23:59:59"
}
}, - "objEzmaxinvoicingcontract": {
- "pkiEzmaxinvoicingcontractID": 28,
- "eEzmaxinvoicingcontractPaymenttype": "Cheque",
- "iEzmaxinvoicingcontractLength": 3,
- "dtEzmaxinvoicingcontractStart": "2020-12-31",
- "dtEzmaxinvoicingcontractEnd": "2020-12-31",
- "dEzmaxinvoicingcontractLicense": "335.42",
- "dEzmaxinvoicingcontract121qa": "295.48",
- "bEzmaxinvoicingcontractEzsignallagents": true,
- "objAudit": {
- "objAuditdetailCreated": {
- "fkiUserID": 70,
- "fkiApikeyID": 99,
- "sUserLoginname": "JohnDoe",
- "sUserLastname": "Doe",
- "sUserFirstname": "John",
- "sApikeyDescriptionX": "Project X",
- "dtAuditdetailDate": "2020-12-31 23:59:59"
}, - "objAuditdetailModified": {
- "fkiUserID": 70,
- "fkiApikeyID": 99,
- "sUserLoginname": "JohnDoe",
- "sUserLastname": "Doe",
- "sUserFirstname": "John",
- "sApikeyDescriptionX": "Project X",
- "dtAuditdetailDate": "2020-12-31 23:59:59"
}
}
}, - "objEzmaxpricing": {
- "pkiEzmaxpricingID": 28,
- "dEzmaxpricingRebateezsignallagents": "90.00",
- "dtEzmaxpricingStart": "2020-12-31",
- "dtEzmaxpricingEnd": "2020-12-31"
}, - "a_objEzmaxinvoicingsummaryglobal": [
- {
- "pkiEzmaxinvoicingsummaryglobalID": 241,
- "fkiEzmaxinvoicingID": 28,
- "fkiEzmaxproductID": 172,
- "sEzmaxproductDescriptionX": "eZmax (License)",
- "dtEzmaxinvoicingsummaryglobalStart": "2020-12-31",
- "dtEzmaxinvoicingsummaryglobalEnd": "2020-12-31",
- "iEzmaxinvoicingsummaryglobalDays": 30,
- "dEzmaxinvoicingsummaryglobalCountreal": "649.08",
- "dEzmaxinvoicingsummaryglobalCountbilled": "581.56",
- "dEzmaxinvoicingsummaryglobalSubtotal": "200.00",
- "dEzmaxinvoicingsummaryglobalRebateamount": "0.00",
- "dEzmaxinvoicingsummaryglobalRebatepercent": "0.00",
- "dEzmaxinvoicingsummaryglobalRebatetotal": "2.00",
- "dEzmaxinvoicingsummaryglobalTotal": "198.00",
- "dEzmaxinvoicingsummaryglobalRepresentative": "685.88",
- "dEzmaxinvoicingsummaryglobalPartner": "266.49",
- "dEzmaxinvoicingsummaryglobalNet": "521.71",
- "bEzmaxinvoicingsummaryglobalAdjustment": true,
- "tEzmaxproductHelpX": "This is an exemple of help message",
- "a_objEzmaxinvoicingcommission": [
- {
- "pkiEzmaxinvoicingcommissionID": 36,
- "fkiEzmaxinvoicingsummaryglobalID": 241,
- "fkiEzmaxpartnerID": 12,
- "fkiEzmaxrepresentativeID": 21,
- "dtEzmaxinvoicingcommissionStart": "2020-12-31",
- "dtEzmaxinvoicingcommissionEnd": "2020-12-31",
- "iEzmaxinvoicingcommissionDays": 30,
- "dEzmaxinvoicingcommissionAmount": "450.34",
- "objContactName": {
- "sContactFirstname": "John",
- "sContactLastname": "Doe",
- "sContactCompany": "eZmax Solutions Inc."
}
}
]
}
], - "a_objEzmaxinvoicingsummaryexternal": [
- {
- "pkiEzmaxinvoicingsummaryexternalID": 177,
- "fkiEzmaxinvoicingID": 28,
- "fkiBillingentityexternalID": 83,
- "sBillingentityexternalDescription": "ACME Inc",
- "sEzmaxinvoicingsummaryexternalDescription": "Company Demo",
- "a_objEzmaxinvoicingsummaryexternaldetail": [
- {
- "pkiEzmaxinvoicingsummaryexternaldetailID": 163,
- "fkiEzmaxinvoicingsummaryexternalID": 177,
- "fkiEzmaxproductID": 172,
- "sEzmaxproductDescriptionX": "eZmax (License)",
- "dEzmaxinvoicingsummaryexternaldetailCountreal": "815.61",
- "dEzmaxinvoicingsummaryexternaldetailSubtotal": "382.88",
- "dEzmaxinvoicingsummaryexternaldetailRebate": "608.18",
- "dEzmaxinvoicingsummaryexternaldetailTotal": "869.71",
- "bEzmaxinvoicingsummaryexternaldetailAdjustment": true,
- "tEzmaxproductHelpX": "This is an exemple of help message"
}
]
}
], - "a_objEzmaxinvoicingsummaryinternal": [
- {
- "pkiEzmaxinvoicingsummaryinternalID": 57,
- "objEzmaxinvoicingsummaryinternalDescription": {
- "sEzmaxinvoicingsummaryinternalDescription1": "Défaut",
- "sEzmaxinvoicingsummaryinternalDescription2": "Défault"
}, - "sEzmaxinvoicingsummaryinternalDescriptionX": "Défaut",
- "fkiEzmaxinvoicingID": 28,
- "fkiBillingentityinternalID": 1,
- "sBillingentityinternalDescriptionX": "Default",
- "a_objEzmaxinvoicingsummaryinternaldetail": [
- {
- "pkiEzmaxinvoicingsummaryinternaldetailID": 73,
- "fkiEzmaxinvoicingsummaryinternalID": 57,
- "fkiEzmaxproductID": 172,
- "sEzmaxproductDescriptionX": "eZmax (License)",
- "fkiBillingentityexternalID": 83,
- "sBillingentityexternalDescription": "ACME Inc",
- "dEzmaxinvoicingsummaryinternaldetailCountreal": "350.32",
- "dEzmaxinvoicingsummaryinternaldetailSubtotal": "625.41",
- "dEzmaxinvoicingsummaryinternaldetailRebate": "560.81",
- "dEzmaxinvoicingsummaryinternaldetailTotal": "510.77",
- "bEzmaxinvoicingsummaryinternaldetailAdjustment": true,
- "tEzmaxproductHelpX": "This is an exemple of help message"
}
]
}
], - "a_objEzmaxinvoicingagent": [
- {
- "pkiEzmaxinvoicingagentID": 181,
- "fkiEzmaxinvoicingID": 28,
- "fkiBillingentityinternalID": 1,
- "sBillingentityinternalDescriptionX": "Default",
- "fkiAgentID": 1,
- "fkiBrokerID": 26,
- "iEzmaxinvoicingagentSession": 42,
- "iEzmaxinvoicingagentCloned": 157,
- "iEzmaxinvoicingagentInvoice": 30,
- "iEzmaxinvoicingagentInscription": 113,
- "iEzmaxinvoicingagentInscriptionactive": 51,
- "iEzmaxinvoicingagentSale": 213,
- "iEzmaxinvoicingagentOtherincome": 198,
- "iEzmaxinvoicingagentCommissioncalculation": 107,
- "iEzmaxinvoicingagentEzsigndocument": 160,
- "bEzmaxinvoicingagentEzsignaccount": true,
- "bEzmaxinvoicingagentBillableezmax": true,
- "eEzmaxinvoicingagentVariationezmax": "Charge",
- "bEzmaxinvoicingagentBillableezsign": true,
- "eEzmaxinvoicingagentVariationezsign": "Charge",
- "objContactName": {
- "sContactFirstname": "John",
- "sContactLastname": "Doe",
- "sContactCompany": "eZmax Solutions Inc."
}
}
], - "a_objEzmaxinvoicinguser": [
- {
- "pkiEzmaxinvoicinguserID": 202,
- "fkiEzmaxinvoicingID": 28,
- "fkiBillingentityinternalID": 1,
- "sBillingentityinternalDescriptionX": "Default",
- "fkiUserID": 70,
- "iEzmaxinvoicinguserEzsigndocument": 243,
- "bEzmaxinvoicinguserEzsignaccount": true,
- "bEzmaxinvoicinguserBillableezsign": true,
- "eEzmaxinvoicinguserVariationezsign": "Charge",
- "objContactName": {
- "sContactFirstname": "John",
- "sContactLastname": "Doe",
- "sContactCompany": "eZmax Solutions Inc."
}
}
], - "a_objEzmaxinvoicingezsignfolder": [
- {
- "fkiEzsignfolderID": 33,
- "fkiBillingentityinternalID": 1,
- "sEzsignfolderDescription": "Test eZsign Folder",
- "bEzsigntsarequirementBillable": true,
- "bEzsignfolderMfaused": true,
- "bEzsignfolderPaymentused": true,
- "bEzsignfolderAllowed": true
}
], - "a_objEzmaxinvoicingezsigndocument": [
- {
- "fkiEzsignfolderID": 33,
- "fkiBillingentityinternalID": 1,
- "sName": "string",
- "sEzsignfolderDescription": "Test eZsign Folder",
- "sEzsigndocumentName": "Contract #123",
- "bEzsignfolderAllowed": true
}
]
}
}, - "objDebugPayload": {
- "iVersionMin": 1,
- "iVersionMax": 2,
- "a_RequiredPermission": [
- 117
], - "bVersionDeprecated": false,
- "dtResponseDate": "2020-12-31 23:59:59"
}, - "objDebug": {
- "sMemoryUsage": "11,923MB",
- "sRunTime": "0.6084s",
- "iSQLSelects": 3,
- "iSQLQueries": 6,
- "a_objSQLQuery": [
- {
- "sQuery": "SELECT * FROM table",
- "fDuration": 0.0001
}, - {
- "sQuery": "SELECT * FROM table",
- "fDuration": 0.0001
}
]
}
}
Get the list of Ezmaxinvoicing to be used in a dropdown or autocomplete control.
sSelector required | string Value: "All" The type of Ezmaxinvoicings to return |
eFilterActive | string Default: "Active" Enum: "All" "Active" "Inactive" Specify which results we want to display. |
sQuery | string Allow to filter the returned results |
Accept-Language | string (Header-Accept-Language) Enum: "*" "en" "fr" Example: en The language of the returned content.
|
{- "mPayload": {
- "a_objEzmaxinvoicing": [
- {
- "yyyymmEzmaxinvoicing": "2022-01",
- "pkiEzmaxinvoicingID": 28,
- "bEzmaxinvoicingIsactive": true
}
]
}, - "objDebugPayload": {
- "iVersionMin": 1,
- "iVersionMax": 2,
- "a_RequiredPermission": [
- 117
], - "bVersionDeprecated": false,
- "dtResponseDate": "2020-12-31 23:59:59"
}, - "objDebug": {
- "sMemoryUsage": "11,923MB",
- "sRunTime": "0.6084s",
- "iSQLSelects": 3,
- "iSQLQueries": 6,
- "a_objSQLQuery": [
- {
- "sQuery": "SELECT * FROM table",
- "fDuration": 0.0001
}, - {
- "sQuery": "SELECT * FROM table",
- "fDuration": 0.0001
}
]
}
}
{- "mPayload": {
- "pkiEzmaxinvoicingID": 28,
- "fkiEzmaxinvoicingcontractID": 28,
- "fkiEzmaxpricingID": 28,
- "fkiSystemconfigurationtypeID": 28,
- "sSystemconfigurationtypeDescriptionX": "eZsign (Pro)",
- "yyyymmEzmaxinvoicing": "2022-01",
- "iEzmaxinvoicingDays": 28,
- "eEzmaxinvoicingPaymenttype": "Cheque",
- "dEzmaxinvoicingRebatepaymenttype": "1.00",
- "iEzmaxinvoicingContractlength": 1,
- "dEzmaxinvoicingRebatecontractlength": "1.00",
- "bEzmaxinvoicingRebateEzsignallagents": true,
- "objAudit": {
- "objAuditdetailCreated": {
- "fkiUserID": 70,
- "fkiApikeyID": 99,
- "sUserLoginname": "JohnDoe",
- "sUserLastname": "Doe",
- "sUserFirstname": "John",
- "sApikeyDescriptionX": "Project X",
- "dtAuditdetailDate": "2020-12-31 23:59:59"
}, - "objAuditdetailModified": {
- "fkiUserID": 70,
- "fkiApikeyID": 99,
- "sUserLoginname": "JohnDoe",
- "sUserLastname": "Doe",
- "sUserFirstname": "John",
- "sApikeyDescriptionX": "Project X",
- "dtAuditdetailDate": "2020-12-31 23:59:59"
}
}, - "objEzmaxinvoicingcontract": {
- "pkiEzmaxinvoicingcontractID": 28,
- "eEzmaxinvoicingcontractPaymenttype": "Cheque",
- "iEzmaxinvoicingcontractLength": 3,
- "dtEzmaxinvoicingcontractStart": "2020-12-31",
- "dtEzmaxinvoicingcontractEnd": "2020-12-31",
- "dEzmaxinvoicingcontractLicense": "335.42",
- "dEzmaxinvoicingcontract121qa": "295.48",
- "bEzmaxinvoicingcontractEzsignallagents": true,
- "objAudit": {
- "objAuditdetailCreated": {
- "fkiUserID": 70,
- "fkiApikeyID": 99,
- "sUserLoginname": "JohnDoe",
- "sUserLastname": "Doe",
- "sUserFirstname": "John",
- "sApikeyDescriptionX": "Project X",
- "dtAuditdetailDate": "2020-12-31 23:59:59"
}, - "objAuditdetailModified": {
- "fkiUserID": 70,
- "fkiApikeyID": 99,
- "sUserLoginname": "JohnDoe",
- "sUserLastname": "Doe",
- "sUserFirstname": "John",
- "sApikeyDescriptionX": "Project X",
- "dtAuditdetailDate": "2020-12-31 23:59:59"
}
}
}, - "objEzmaxpricing": {
- "pkiEzmaxpricingID": 28,
- "dEzmaxpricingRebateezsignallagents": "90.00",
- "dtEzmaxpricingStart": "2020-12-31",
- "dtEzmaxpricingEnd": "2020-12-31"
}, - "a_objEzmaxinvoicingsummaryglobal": [
- {
- "pkiEzmaxinvoicingsummaryglobalID": 241,
- "fkiEzmaxinvoicingID": 28,
- "fkiEzmaxproductID": 172,
- "sEzmaxproductDescriptionX": "eZmax (License)",
- "dtEzmaxinvoicingsummaryglobalStart": "2020-12-31",
- "dtEzmaxinvoicingsummaryglobalEnd": "2020-12-31",
- "iEzmaxinvoicingsummaryglobalDays": 30,
- "dEzmaxinvoicingsummaryglobalCountreal": "649.08",
- "dEzmaxinvoicingsummaryglobalCountbilled": "581.56",
- "dEzmaxinvoicingsummaryglobalSubtotal": "200.00",
- "dEzmaxinvoicingsummaryglobalRebateamount": "0.00",
- "dEzmaxinvoicingsummaryglobalRebatepercent": "0.00",
- "dEzmaxinvoicingsummaryglobalRebatetotal": "2.00",
- "dEzmaxinvoicingsummaryglobalTotal": "198.00",
- "dEzmaxinvoicingsummaryglobalRepresentative": "685.88",
- "dEzmaxinvoicingsummaryglobalPartner": "266.49",
- "dEzmaxinvoicingsummaryglobalNet": "521.71",
- "bEzmaxinvoicingsummaryglobalAdjustment": true,
- "tEzmaxproductHelpX": "This is an exemple of help message",
- "a_objEzmaxinvoicingcommission": [
- {
- "pkiEzmaxinvoicingcommissionID": 36,
- "fkiEzmaxinvoicingsummaryglobalID": 241,
- "fkiEzmaxpartnerID": 12,
- "fkiEzmaxrepresentativeID": 21,
- "dtEzmaxinvoicingcommissionStart": "2020-12-31",
- "dtEzmaxinvoicingcommissionEnd": "2020-12-31",
- "iEzmaxinvoicingcommissionDays": 30,
- "dEzmaxinvoicingcommissionAmount": "450.34",
- "objContactName": {
- "sContactFirstname": "John",
- "sContactLastname": "Doe",
- "sContactCompany": "eZmax Solutions Inc."
}
}
]
}
], - "a_objEzmaxinvoicingsummaryexternal": [
- {
- "pkiEzmaxinvoicingsummaryexternalID": 177,
- "fkiEzmaxinvoicingID": 28,
- "fkiBillingentityexternalID": 83,
- "sBillingentityexternalDescription": "ACME Inc",
- "sEzmaxinvoicingsummaryexternalDescription": "Company Demo",
- "a_objEzmaxinvoicingsummaryexternaldetail": [
- {
- "pkiEzmaxinvoicingsummaryexternaldetailID": 163,
- "fkiEzmaxinvoicingsummaryexternalID": 177,
- "fkiEzmaxproductID": 172,
- "sEzmaxproductDescriptionX": "eZmax (License)",
- "dEzmaxinvoicingsummaryexternaldetailCountreal": "815.61",
- "dEzmaxinvoicingsummaryexternaldetailSubtotal": "382.88",
- "dEzmaxinvoicingsummaryexternaldetailRebate": "608.18",
- "dEzmaxinvoicingsummaryexternaldetailTotal": "869.71",
- "bEzmaxinvoicingsummaryexternaldetailAdjustment": true,
- "tEzmaxproductHelpX": "This is an exemple of help message"
}
]
}
], - "a_objEzmaxinvoicingsummaryinternal": [
- {
- "pkiEzmaxinvoicingsummaryinternalID": 57,
- "objEzmaxinvoicingsummaryinternalDescription": {
- "sEzmaxinvoicingsummaryinternalDescription1": "Défaut",
- "sEzmaxinvoicingsummaryinternalDescription2": "Défault"
}, - "sEzmaxinvoicingsummaryinternalDescriptionX": "Défaut",
- "fkiEzmaxinvoicingID": 28,
- "fkiBillingentityinternalID": 1,
- "sBillingentityinternalDescriptionX": "Default",
- "a_objEzmaxinvoicingsummaryinternaldetail": [
- {
- "pkiEzmaxinvoicingsummaryinternaldetailID": 73,
- "fkiEzmaxinvoicingsummaryinternalID": 57,
- "fkiEzmaxproductID": 172,
- "sEzmaxproductDescriptionX": "eZmax (License)",
- "fkiBillingentityexternalID": 83,
- "sBillingentityexternalDescription": "ACME Inc",
- "dEzmaxinvoicingsummaryinternaldetailCountreal": "350.32",
- "dEzmaxinvoicingsummaryinternaldetailSubtotal": "625.41",
- "dEzmaxinvoicingsummaryinternaldetailRebate": "560.81",
- "dEzmaxinvoicingsummaryinternaldetailTotal": "510.77",
- "bEzmaxinvoicingsummaryinternaldetailAdjustment": true,
- "tEzmaxproductHelpX": "This is an exemple of help message"
}
]
}
], - "a_objEzmaxinvoicingagent": [
- {
- "pkiEzmaxinvoicingagentID": 181,
- "fkiEzmaxinvoicingID": 28,
- "fkiBillingentityinternalID": 1,
- "sBillingentityinternalDescriptionX": "Default",
- "fkiAgentID": 1,
- "fkiBrokerID": 26,
- "iEzmaxinvoicingagentSession": 42,
- "iEzmaxinvoicingagentCloned": 157,
- "iEzmaxinvoicingagentInvoice": 30,
- "iEzmaxinvoicingagentInscription": 113,
- "iEzmaxinvoicingagentInscriptionactive": 51,
- "iEzmaxinvoicingagentSale": 213,
- "iEzmaxinvoicingagentOtherincome": 198,
- "iEzmaxinvoicingagentCommissioncalculation": 107,
- "iEzmaxinvoicingagentEzsigndocument": 160,
- "bEzmaxinvoicingagentEzsignaccount": true,
- "bEzmaxinvoicingagentBillableezmax": true,
- "eEzmaxinvoicingagentVariationezmax": "Charge",
- "bEzmaxinvoicingagentBillableezsign": true,
- "eEzmaxinvoicingagentVariationezsign": "Charge",
- "objContactName": {
- "sContactFirstname": "John",
- "sContactLastname": "Doe",
- "sContactCompany": "eZmax Solutions Inc."
}
}
], - "a_objEzmaxinvoicinguser": [
- {
- "pkiEzmaxinvoicinguserID": 202,
- "fkiEzmaxinvoicingID": 28,
- "fkiBillingentityinternalID": 1,
- "sBillingentityinternalDescriptionX": "Default",
- "fkiUserID": 70,
- "iEzmaxinvoicinguserEzsigndocument": 243,
- "bEzmaxinvoicinguserEzsignaccount": true,
- "bEzmaxinvoicinguserBillableezsign": true,
- "eEzmaxinvoicinguserVariationezsign": "Charge",
- "objContactName": {
- "sContactFirstname": "John",
- "sContactLastname": "Doe",
- "sContactCompany": "eZmax Solutions Inc."
}
}
], - "a_objEzmaxinvoicingezsignfolder": [
- {
- "fkiEzsignfolderID": 33,
- "fkiBillingentityinternalID": 1,
- "sEzsignfolderDescription": "Test eZsign Folder",
- "bEzsigntsarequirementBillable": true,
- "bEzsignfolderMfaused": true,
- "bEzsignfolderPaymentused": true,
- "bEzsignfolderAllowed": true
}
], - "a_objEzmaxinvoicingezsigndocument": [
- {
- "fkiEzsignfolderID": 33,
- "fkiBillingentityinternalID": 1,
- "sName": "string",
- "sEzsignfolderDescription": "Test eZsign Folder",
- "sEzsigndocumentName": "Contract #123",
- "bEzsignfolderAllowed": true
}
]
}, - "objDebugPayload": {
- "iVersionMin": 1,
- "iVersionMax": 2,
- "a_RequiredPermission": [
- 117
], - "bVersionDeprecated": false,
- "dtResponseDate": "2020-12-31 23:59:59"
}, - "objDebug": {
- "sMemoryUsage": "11,923MB",
- "sRunTime": "0.6084s",
- "iSQLSelects": 3,
- "iSQLQueries": 6,
- "a_objSQLQuery": [
- {
- "sQuery": "SELECT * FROM table",
- "fDuration": 0.0001
}, - {
- "sQuery": "SELECT * FROM table",
- "fDuration": 0.0001
}
]
}
}
Get the list of Ezmaxproduct to be used in a dropdown or autocomplete control.
sSelector required | string Enum: "All" "Entitydefault" "Entityother" The type of Ezmaxproducts to return |
eFilterActive | string Default: "Active" Enum: "All" "Active" "Inactive" Specify which results we want to display. |
sQuery | string Allow to filter the returned results |
Accept-Language | string (Header-Accept-Language) Enum: "*" "en" "fr" Example: en The language of the returned content.
|
{- "mPayload": {
- "a_objEzmaxproduct": [
- {
- "pkiEzmaxproductID": 172,
- "sEzmaxproductDescriptionX": "eZmax (License)",
- "bEzmaxproductIsactive": true
}
]
}, - "objDebugPayload": {
- "iVersionMin": 1,
- "iVersionMax": 2,
- "a_RequiredPermission": [
- 117
], - "bVersionDeprecated": false,
- "dtResponseDate": "2020-12-31 23:59:59"
}, - "objDebug": {
- "sMemoryUsage": "11,923MB",
- "sRunTime": "0.6084s",
- "iSQLSelects": 3,
- "iSQLQueries": 6,
- "a_objSQLQuery": [
- {
- "sQuery": "SELECT * FROM table",
- "fDuration": 0.0001
}, - {
- "sQuery": "SELECT * FROM table",
- "fDuration": 0.0001
}
]
}
}
The endpoint allows to create one or many elements at once.
required | Array of objects (ezsignbulksend-RequestCompound) non-empty |
{- "a_objEzsignbulksend": [
- {
- "pkiEzsignbulksendID": 8,
- "fkiEzsignfoldertypeID": 5,
- "fkiLanguageID": 2,
- "sEzsignbulksendDescription": "Test eZsign Bulk Send",
- "tEzsignbulksendNote": "This is a note",
- "bEzsignbulksendNeedvalidation": true,
- "bEzsignbulksendIsactive": true
}
]
}
{- "mPayload": {
- "a_pkiEzsignbulksendID": [
- 8
]
}, - "objDebugPayload": {
- "iVersionMin": 1,
- "iVersionMax": 2,
- "a_RequiredPermission": [
- 117
], - "bVersionDeprecated": false,
- "dtResponseDate": "2020-12-31 23:59:59"
}, - "objDebug": {
- "sMemoryUsage": "11,923MB",
- "sRunTime": "0.6084s",
- "iSQLSelects": 3,
- "iSQLQueries": 6,
- "a_objSQLQuery": [
- {
- "sQuery": "SELECT * FROM table",
- "fDuration": 0.0001
}, - {
- "sQuery": "SELECT * FROM table",
- "fDuration": 0.0001
}
]
}
}
pkiEzsignbulksendID required | integer (Field-pkiEzsignbulksendID) >= 0 Example: 8 The unique ID of the Ezsignbulksend |
fkiUserlogintypeID required | integer (Field-pkiUserlogintypeID) >= 0 The unique ID of the Userlogintype Valid values:
| ||||||||||||||||||
fkiEzsigntsarequirementID | integer (Field-pkiEzsigntsarequirementID) [ 1 .. 3 ] The unique ID of the Ezsigntsarequirement. Determine if a Time Stamping Authority should add a timestamp on each of the signature. Valid values:
| ||||||||||||||||||
sEzsignbulksendtransmissionDescription required | string (Field-sEzsignbulksendtransmissionDescription) The description of the Ezsignbulksendtransmission | ||||||||||||||||||
dtEzsigndocumentDuedate required | string (Field-dtEzsigndocumentDuedate) The maximum date and time at which the Ezsigndocument can be signed. | ||||||||||||||||||
eEzsignfolderSendreminderfrequency required | string (Field-eEzsignfolderSendreminderfrequency) Enum: "None" "Daily" "Weekly" Frequency at which reminders will be sent to signers that haven't signed the documents | ||||||||||||||||||
tExtraMessage required | string (Field-tExtraMessage) A custom text message that will be added to the email sent. | ||||||||||||||||||
sCsvBase64 required | string <byte> The Base64 encoded binary content of the CSV file. |
{- "fkiUserlogintypeID": 2,
- "fkiEzsigntsarequirementID": 1,
- "sEzsignbulksendtransmissionDescription": "Test eZsign Bulk Send Transmission #1",
- "dtEzsigndocumentDuedate": "2020-12-31 23:59:59",
- "eEzsignfolderSendreminderfrequency": "None",
- "tExtraMessage": "Hi John,\n\nThis is the document I need you to review.\n\nCould you sign it before Monday please.\n\nBest Regards.\n\nMary",
- "sCsvBase64": "string"
}
{- "mPayload": {
- "objEzsignbulksendtransmission": {
- "pkiEzsignbulksendtransmissionID": 21,
- "fkiEzsignbulksendID": 8,
- "sEzsignbulksendtransmissionDescription": "Test eZsign Bulk Send Transmission #1",
- "iEzsignbulksendtransmissionErrors": 1,
- "objAudit": {
- "objAuditdetailCreated": {
- "fkiUserID": 70,
- "fkiApikeyID": 99,
- "sUserLoginname": "JohnDoe",
- "sUserLastname": "Doe",
- "sUserFirstname": "John",
- "sApikeyDescriptionX": "Project X",
- "dtAuditdetailDate": "2020-12-31 23:59:59"
}, - "objAuditdetailModified": {
- "fkiUserID": 70,
- "fkiApikeyID": 99,
- "sUserLoginname": "JohnDoe",
- "sUserLastname": "Doe",
- "sUserFirstname": "John",
- "sApikeyDescriptionX": "Project X",
- "dtAuditdetailDate": "2020-12-31 23:59:59"
}
}
}
}, - "objDebugPayload": {
- "iVersionMin": 1,
- "iVersionMax": 2,
- "a_RequiredPermission": [
- 117
], - "bVersionDeprecated": false,
- "dtResponseDate": "2020-12-31 23:59:59"
}, - "objDebug": {
- "sMemoryUsage": "11,923MB",
- "sRunTime": "0.6084s",
- "iSQLSelects": 3,
- "iSQLQueries": 6,
- "a_objSQLQuery": [
- {
- "sQuery": "SELECT * FROM table",
- "fDuration": 0.0001
}, - {
- "sQuery": "SELECT * FROM table",
- "fDuration": 0.0001
}
]
}
}
pkiEzsignbulksendID required | integer (Field-pkiEzsignbulksendID) >= 0 Example: 8 The unique ID of the Ezsignbulksend |
{- "objDebugPayload": {
- "iVersionMin": 1,
- "iVersionMax": 2,
- "a_RequiredPermission": [
- 117
], - "bVersionDeprecated": false,
- "dtResponseDate": "2020-12-31 23:59:59"
}, - "objDebug": {
- "sMemoryUsage": "11,923MB",
- "sRunTime": "0.6084s",
- "iSQLSelects": 3,
- "iSQLQueries": 6,
- "a_objSQLQuery": [
- {
- "sQuery": "SELECT * FROM table",
- "fDuration": 0.0001
}, - {
- "sQuery": "SELECT * FROM table",
- "fDuration": 0.0001
}
]
}
}
pkiEzsignbulksendID required | integer (Field-pkiEzsignbulksendID) >= 0 Example: 8 The unique ID of the Ezsignbulksend |
required | object (ezsignbulksend-RequestCompound) A Ezsignbulksend Object and children |
{- "objEzsignbulksend": {
- "pkiEzsignbulksendID": 8,
- "fkiEzsignfoldertypeID": 5,
- "fkiLanguageID": 2,
- "sEzsignbulksendDescription": "Test eZsign Bulk Send",
- "tEzsignbulksendNote": "This is a note",
- "bEzsignbulksendNeedvalidation": true,
- "bEzsignbulksendIsactive": true
}
}
{- "objDebugPayload": {
- "iVersionMin": 1,
- "iVersionMax": 2,
- "a_RequiredPermission": [
- 117
], - "bVersionDeprecated": false,
- "dtResponseDate": "2020-12-31 23:59:59"
}, - "objDebug": {
- "sMemoryUsage": "11,923MB",
- "sRunTime": "0.6084s",
- "iSQLSelects": 3,
- "iSQLQueries": 6,
- "a_objSQLQuery": [
- {
- "sQuery": "SELECT * FROM table",
- "fDuration": 0.0001
}, - {
- "sQuery": "SELECT * FROM table",
- "fDuration": 0.0001
}
]
}
}
pkiEzsignbulksendID required | integer (Field-pkiEzsignbulksendID) >= 0 Example: 8 The unique ID of the Ezsignbulksend |
a_pkiEzsignbulksenddocumentmappingID required | Array of integers (Field-pkiEzsignbulksenddocumentmappingID) [ items >= 0 ] |
{- "a_pkiEzsignbulksenddocumentmappingID": [
- 48
]
}
{- "objDebugPayload": {
- "iVersionMin": 1,
- "iVersionMax": 2,
- "a_RequiredPermission": [
- 117
], - "bVersionDeprecated": false,
- "dtResponseDate": "2020-12-31 23:59:59"
}, - "objDebug": {
- "sMemoryUsage": "11,923MB",
- "sRunTime": "0.6084s",
- "iSQLSelects": 3,
- "iSQLQueries": 6,
- "a_objSQLQuery": [
- {
- "sQuery": "SELECT * FROM table",
- "fDuration": 0.0001
}, - {
- "sQuery": "SELECT * FROM table",
- "fDuration": 0.0001
}
]
}
}
pkiEzsignbulksendID required | integer (Field-pkiEzsignbulksendID) >= 0 Example: 8 The unique ID of the Ezsignbulksend |
{- "mPayload": {
- "objEzsignbulksend": {
- "pkiEzsignbulksendID": 8,
- "fkiEzsignfoldertypeID": 5,
- "fkiLanguageID": 2,
- "sLanguageNameX": "English",
- "eEzsignfoldertypePrivacylevel": "User",
- "sEzsignfoldertypeNameX": "Default",
- "sEzsignbulksendDescription": "Test eZsign Bulk Send",
- "tEzsignbulksendNote": "This is a note",
- "bEzsignbulksendNeedvalidation": true,
- "bEzsignbulksendIsactive": true,
- "objAudit": {
- "objAuditdetailCreated": {
- "fkiUserID": 70,
- "fkiApikeyID": 99,
- "sUserLoginname": "JohnDoe",
- "sUserLastname": "Doe",
- "sUserFirstname": "John",
- "sApikeyDescriptionX": "Project X",
- "dtAuditdetailDate": "2020-12-31 23:59:59"
}, - "objAuditdetailModified": {
- "fkiUserID": 70,
- "fkiApikeyID": 99,
- "sUserLoginname": "JohnDoe",
- "sUserLastname": "Doe",
- "sUserFirstname": "John",
- "sApikeyDescriptionX": "Project X",
- "dtAuditdetailDate": "2020-12-31 23:59:59"
}
}, - "a_objEzsignbulksenddocumentmapping": [
- {
- "pkiEzsignbulksenddocumentmappingID": 48,
- "fkiEzsignbulksendID": 8,
- "fkiEzsigntemplatepackageID": 99,
- "fkiEzsigntemplateID": 36,
- "iEzsignbulksenddocumentmappingOrder": 1,
- "objEzsigntemplate": {
- "pkiEzsigntemplateID": 36,
- "fkiEzsigntemplatedocumentID": 133,
- "fkiEzsignfoldertypeID": 5,
- "fkiLanguageID": 2,
- "sLanguageNameX": "English",
- "sEzsigntemplateDescription": "Standard Contract",
- "sEzsigntemplateFilenamepattern": "Contract",
- "bEzsigntemplateAdminonly": true,
- "sEzsignfoldertypeNameX": "Default",
- "objAudit": {
- "objAuditdetailCreated": {
- "fkiUserID": 70,
- "fkiApikeyID": 99,
- "sUserLoginname": "JohnDoe",
- "sUserLastname": "Doe",
- "sUserFirstname": "John",
- "sApikeyDescriptionX": "Project X",
- "dtAuditdetailDate": "2020-12-31 23:59:59"
}, - "objAuditdetailModified": {
- "fkiUserID": 70,
- "fkiApikeyID": 99,
- "sUserLoginname": "JohnDoe",
- "sUserLastname": "Doe",
- "sUserFirstname": "John",
- "sApikeyDescriptionX": "Project X",
- "dtAuditdetailDate": "2020-12-31 23:59:59"
}
}, - "bEzsigntemplateEditallowed": true,
- "eEzsigntemplateType": "Usergroup",
- "objEzsigntemplatedocument": {
- "pkiEzsigntemplatedocumentID": 133,
- "fkiEzsigntemplateID": 36,
- "sEzsigntemplatedocumentName": "Standard Contract",
- "iEzsigntemplatedocumentPagetotal": 5,
- "iEzsigntemplatedocumentSignaturetotal": 8,
- "bEzsigntemplatedocumentHassignedsignatures": true
}, - "a_objEzsigntemplatesigner": [
- {
- "pkiEzsigntemplatesignerID": 9,
- "fkiEzsigntemplateID": 36,
- "sEzsigntemplatesignerDescription": "Customer"
}
]
}, - "objEzsigntemplatepackage": {
- "pkiEzsigntemplatepackageID": 99,
- "fkiEzsignfoldertypeID": 5,
- "fkiLanguageID": 2,
- "sLanguageNameX": "English",
- "sEzsigntemplatepackageDescription": "Package for new clients",
- "bEzsigntemplatepackageAdminonly": true,
- "bEzsigntemplatepackageNeedvalidation": true,
- "bEzsigntemplatepackageIsactive": true,
- "sEzsignfoldertypeNameX": "Default",
- "bEzsigntemplatepackageEditallowed": true,
- "a_objEzsigntemplatepackagesigner": [
- {
- "pkiEzsigntemplatepackagesignerID": 174,
- "fkiEzsigntemplatepackageID": 99,
- "sEzsigntemplatepackagesignerDescription": "Customer"
}
], - "a_objEzsigntemplatepackagemembership": [
- {
- "pkiEzsigntemplatepackagemembershipID": 194,
- "fkiEzsigntemplatepackageID": 99,
- "fkiEzsigntemplateID": 36,
- "iEzsigntemplatepackagemembershipOrder": 1,
- "objEzsigntemplate": {
- "pkiEzsigntemplateID": 36,
- "fkiEzsigntemplatedocumentID": 133,
- "fkiEzsignfoldertypeID": 5,
- "fkiLanguageID": 2,
- "sLanguageNameX": "English",
- "sEzsigntemplateDescription": "Standard Contract",
- "sEzsigntemplateFilenamepattern": "Contract",
- "bEzsigntemplateAdminonly": true,
- "sEzsignfoldertypeNameX": "Default",
- "objAudit": {
- "objAuditdetailCreated": null,
- "objAuditdetailModified": null
}, - "bEzsigntemplateEditallowed": true,
- "eEzsigntemplateType": "Usergroup",
- "objEzsigntemplatedocument": {
- "pkiEzsigntemplatedocumentID": null,
- "fkiEzsigntemplateID": null,
- "sEzsigntemplatedocumentName": null,
- "iEzsigntemplatedocumentPagetotal": null,
- "iEzsigntemplatedocumentSignaturetotal": null,
- "bEzsigntemplatedocumentHassignedsignatures": null
}, - "a_objEzsigntemplatesigner": [
- null
]
}, - "a_objEzsigntemplatepackagesignermembership": [
- {
- "pkiEzsigntemplatepackagesignermembershipID": null,
- "fkiEzsigntemplatepackagemembershipID": null,
- "fkiEzsigntemplatepackagesignerID": null,
- "fkiEzsigntemplatesignerID": null,
- "iEzsigntemplatepackagesignermembershipCopy": null
}
]
}
]
}
}
], - "a_objEzsignbulksendsignermapping": [
- {
- "pkiEzsignbulksendsignermappingID": 57,
- "fkiEzsignbulksendID": 8,
- "fkiUserID": 70,
- "sEzsignbulksendsignermappingDescription": "Supervisor"
}
]
}
}, - "objDebugPayload": {
- "iVersionMin": 1,
- "iVersionMax": 2,
- "a_RequiredPermission": [
- 117
], - "bVersionDeprecated": false,
- "dtResponseDate": "2020-12-31 23:59:59"
}, - "objDebug": {
- "sMemoryUsage": "11,923MB",
- "sRunTime": "0.6084s",
- "iSQLSelects": 3,
- "iSQLQueries": 6,
- "a_objSQLQuery": [
- {
- "sQuery": "SELECT * FROM table",
- "fDuration": 0.0001
}, - {
- "sQuery": "SELECT * FROM table",
- "fDuration": 0.0001
}
]
}
}
Return the Ezsignsignatures that can be signed by the current user at the current step in the process
pkiEzsignbulksendID required | integer (Field-pkiEzsignbulksendID) >= 0 Example: 8 The unique ID of the Ezsignbulksend |
{- "mPayload": {
- "a_eEzsignsignatureType": [
- "Name"
], - "a_objEzsignfolder": [
- {
- "pkiEzsignfolderID": 33,
- "sEzsignfolderDescription": "Test eZsign Folder",
- "a_objEzsigndocument": [
- {
- "pkiEzsigndocumentID": 97,
- "sEzsigndocumentName": "Contract #123",
- "a_objEzsignsignature": [
- {
- "pkiEzsignsignatureID": 49,
- "eEzsignsignatureType": "Name",
- "iEzsignpagePagenumber": 1
}
]
}
]
}
]
}, - "objDebugPayload": {
- "iVersionMin": 1,
- "iVersionMax": 2,
- "a_RequiredPermission": [
- 117
], - "bVersionDeprecated": false,
- "dtResponseDate": "2020-12-31 23:59:59"
}, - "objDebug": {
- "sMemoryUsage": "11,923MB",
- "sRunTime": "0.6084s",
- "iSQLSelects": 3,
- "iSQLQueries": 6,
- "a_objSQLQuery": [
- {
- "sQuery": "SELECT * FROM table",
- "fDuration": 0.0001
}, - {
- "sQuery": "SELECT * FROM table",
- "fDuration": 0.0001
}
]
}
}
pkiEzsignbulksendID required | integer (Field-pkiEzsignbulksendID) >= 0 Example: 8 The unique ID of the Ezsignbulksend |
eCsvSeparator required | string Enum: "Comma" "Semicolon" Separator that will be used to separate fields |
{- "sErrorMessage": "Invalid Signature Headers",
- "eErrorCode": "BADREQUEST"
}
pkiEzsignbulksendID required | integer (Field-pkiEzsignbulksendID) >= 0 Example: 8 The unique ID of the Ezsignbulksend |
{- "mPayload": {
- "a_objEzsignbulksendtransmission": [
- {
- "pkiEzsignbulksendtransmissionID": 21,
- "fkiEzsignbulksendID": 8,
- "sEzsignbulksendtransmissionDescription": "Test eZsign Bulk Send Transmission #1",
- "iEzsignbulksendtransmissionErrors": 1,
- "objAudit": {
- "objAuditdetailCreated": {
- "fkiUserID": 70,
- "fkiApikeyID": 99,
- "sUserLoginname": "JohnDoe",
- "sUserLastname": "Doe",
- "sUserFirstname": "John",
- "sApikeyDescriptionX": "Project X",
- "dtAuditdetailDate": "2020-12-31 23:59:59"
}, - "objAuditdetailModified": {
- "fkiUserID": 70,
- "fkiApikeyID": 99,
- "sUserLoginname": "JohnDoe",
- "sUserLastname": "Doe",
- "sUserFirstname": "John",
- "sApikeyDescriptionX": "Project X",
- "dtAuditdetailDate": "2020-12-31 23:59:59"
}
}, - "a_objEzsignfoldertransmission": [
- {
- "pkiEzsignfolderID": 33,
- "sEzsignfolderDescription": "Test eZsign Folder",
- "eEzsignfolderStep": "Completed",
- "iEzsignfolderSignaturetotal": 4,
- "iEzsignfolderSignaturesigned": 3,
- "a_objEzsignfoldertransmissionSigner": [
- {
- "fkiUserID": 70,
- "sContactFirstname": "John",
- "sContactLastname": "Doe"
}
]
}
]
}
]
}, - "objDebugPayload": {
- "iVersionMin": 1,
- "iVersionMax": 2,
- "a_RequiredPermission": [
- 117
], - "bVersionDeprecated": false,
- "dtResponseDate": "2020-12-31 23:59:59"
}, - "objDebug": {
- "sMemoryUsage": "11,923MB",
- "sRunTime": "0.6084s",
- "iSQLSelects": 3,
- "iSQLQueries": 6,
- "a_objSQLQuery": [
- {
- "sQuery": "SELECT * FROM table",
- "fDuration": 0.0001
}, - {
- "sQuery": "SELECT * FROM table",
- "fDuration": 0.0001
}
]
}
}
pkiEzsignbulksendID required | integer (Field-pkiEzsignbulksendID) >= 0 Example: 8 The unique ID of the Ezsignbulksend |
{- "mPayload": {
- "a_objFormsDataFolder": [
- {
- "pkiEzsignfolderID": 33,
- "sEzsignfolderDescription": "Test eZsign Folder",
- "a_objFormDataDocument": [
- {
- "pkiEzsigndocumentID": 97,
- "fkiEzsignfolderID": 33,
- "sEzsigndocumentName": "Contract #123",
- "dtModifiedDate": "2020-12-31 23:59:59",
- "a_objFormDataSigner": [
- {
- "fkiEzsignfoldersignerassociationID": 20,
- "fkiUserID": 70,
- "sContactFirstname": "John",
- "sContactLastname": "Doe",
- "a_objEzsignformfieldgroup": [
- {
- "sEzsignformfieldgroupLabel": null,
- "a_objEzsignformfield": [ ]
}
]
}
]
}
]
}
]
}, - "objDebugPayload": {
- "iVersionMin": 1,
- "iVersionMax": 2,
- "a_RequiredPermission": [
- 117
], - "bVersionDeprecated": false,
- "dtResponseDate": "2020-12-31 23:59:59"
}, - "objDebug": {
- "sMemoryUsage": "11,923MB",
- "sRunTime": "0.6084s",
- "iSQLSelects": 3,
- "iSQLQueries": 6,
- "a_objSQLQuery": [
- {
- "sQuery": "SELECT * FROM table",
- "fDuration": 0.0001
}, - {
- "sQuery": "SELECT * FROM table",
- "fDuration": 0.0001
}
]
}
}
Enum values that can be filtered in query parameter sFilter:
Variable | Valid values |
---|---|
eEzsignfoldertypePrivacylevel | User Usergroup |
eOrderBy | string Enum: "pkiEzsignbulksendID_ASC" "pkiEzsignbulksendID_DESC" "fkiEzsignfoldertypeID_ASC" "fkiEzsignfoldertypeID_DESC" "sEzsignbulksendDescription_ASC" … 19 more Specify how you want the results to be sorted |
iRowMax | integer (Field-iRowMax) [ 1 .. 10000 ] Example: iRowMax=100 The maximum numbers of results to be returned. When the content-type is application/json there is an implicit default of 10 000. When it's application/vnd.openxmlformats-officedocument.spreadsheetml.sheet the is no implicit default so if you do not specify iRowMax, all records will be returned. |
iRowOffset | integer (Field-iRowOffset) >= 0 Default: 0 Example: iRowOffset=0 The starting element from where to start retrieving the results. For example if you started at iRowOffset=0 and asked for iRowMax=100, to get the next 100 results, you could specify iRowOffset=100&iRowMax=100, |
sFilter | string (Field-sFilter) Example: sFilter=bField1 eq true and iField2 gte 0 and iField2 lte 1000 and sField3 eq 'Other' and eField4 eq 'Paid' and sField5 like '%needle%' and iField6 in '1,2,3' and dtField7 rg '=m,=3mm' The filter to apply to the request to limit results. |
Accept-Language | string (Header-Accept-Language) Enum: "*" "en" "fr" Example: en The language of the returned content.
|
{- "mPayload": {
- "a_objEzsignbulksend": [
- {
- "pkiEzsignbulksendID": 8,
- "fkiEzsignfoldertypeID": 5,
- "sEzsignbulksendDescription": "Test eZsign Bulk Send",
- "sEzsignfoldertypeNameX": "Default",
- "bEzsignbulksendNeedvalidation": true,
- "iEzsignbulksendtransmission": 0,
- "iEzsignfolder": 0,
- "iEzsigndocument": 0,
- "iEzsignsignature": 0,
- "iEzsignsignatureSigned": 0,
- "bEzsignbulksendIsactive": true
}
], - "iRowReturned": 100,
- "iRowFiltered": 533
}, - "objDebugPayload": {
- "iVersionMin": 1,
- "iVersionMax": 2,
- "a_RequiredPermission": [
- 117
], - "bVersionDeprecated": false,
- "dtResponseDate": "2020-12-31 23:59:59",
- "a_Filter": {
- "a_AutoType": {
- "property1": "string",
- "property2": "string"
}, - "a_AutoTypeHaving": {
- "property1": "string",
- "property2": "string"
}, - "a_Enum": {
- "property1": {
- "property1": "string",
- "property2": "string"
}, - "property2": {
- "property1": "string",
- "property2": "string"
}
}
}, - "a_OrderBy": {
- "property1": "string",
- "property2": "string"
}, - "iRowMax": 100,
- "iRowOffset": 0
}, - "objDebug": {
- "sMemoryUsage": "11,923MB",
- "sRunTime": "0.6084s",
- "iSQLSelects": 3,
- "iSQLQueries": 6,
- "a_objSQLQuery": [
- {
- "sQuery": "SELECT * FROM table",
- "fDuration": 0.0001
}, - {
- "sQuery": "SELECT * FROM table",
- "fDuration": 0.0001
}
]
}
}
Ezsignbulksenddocumentmapping contains detail about a Ezsigntemplate or Ezsigntemplatepackage contained in a Ezsignbulksend
The endpoint allows to create one or many elements at once.
required | Array of objects (ezsignbulksenddocumentmapping-RequestCompound) non-empty |
{- "a_objEzsignbulksenddocumentmapping": [
- {
- "pkiEzsignbulksenddocumentmappingID": 48,
- "fkiEzsignbulksendID": 8,
- "fkiEzsigntemplatepackageID": 99,
- "fkiEzsigntemplateID": 36
}
]
}
{- "mPayload": {
- "a_pkiEzsignbulksenddocumentmappingID": [
- 48
]
}, - "objDebugPayload": {
- "iVersionMin": 1,
- "iVersionMax": 2,
- "a_RequiredPermission": [
- 117
], - "bVersionDeprecated": false,
- "dtResponseDate": "2020-12-31 23:59:59"
}, - "objDebug": {
- "sMemoryUsage": "11,923MB",
- "sRunTime": "0.6084s",
- "iSQLSelects": 3,
- "iSQLQueries": 6,
- "a_objSQLQuery": [
- {
- "sQuery": "SELECT * FROM table",
- "fDuration": 0.0001
}, - {
- "sQuery": "SELECT * FROM table",
- "fDuration": 0.0001
}
]
}
}
pkiEzsignbulksenddocumentmappingID required | integer (Field-pkiEzsignbulksenddocumentmappingID) >= 0 Example: 48 The unique ID of the Ezsignbulksenddocumentmapping. |
{- "objDebugPayload": {
- "iVersionMin": 1,
- "iVersionMax": 2,
- "a_RequiredPermission": [
- 117
], - "bVersionDeprecated": false,
- "dtResponseDate": "2020-12-31 23:59:59"
}, - "objDebug": {
- "sMemoryUsage": "11,923MB",
- "sRunTime": "0.6084s",
- "iSQLSelects": 3,
- "iSQLQueries": 6,
- "a_objSQLQuery": [
- {
- "sQuery": "SELECT * FROM table",
- "fDuration": 0.0001
}, - {
- "sQuery": "SELECT * FROM table",
- "fDuration": 0.0001
}
]
}
}
pkiEzsignbulksenddocumentmappingID required | integer (Field-pkiEzsignbulksenddocumentmappingID) >= 0 Example: 48 The unique ID of the Ezsignbulksenddocumentmapping. |
{- "mPayload": {
- "objEzsignbulksenddocumentmapping": {
- "pkiEzsignbulksenddocumentmappingID": 48,
- "fkiEzsignbulksendID": 8,
- "fkiEzsigntemplatepackageID": 99,
- "fkiEzsigntemplateID": 36,
- "iEzsignbulksenddocumentmappingOrder": 1,
- "objEzsigntemplate": {
- "pkiEzsigntemplateID": 36,
- "fkiEzsigntemplatedocumentID": 133,
- "fkiEzsignfoldertypeID": 5,
- "fkiLanguageID": 2,
- "sLanguageNameX": "English",
- "sEzsigntemplateDescription": "Standard Contract",
- "sEzsigntemplateFilenamepattern": "Contract",
- "bEzsigntemplateAdminonly": true,
- "sEzsignfoldertypeNameX": "Default",
- "objAudit": {
- "objAuditdetailCreated": {
- "fkiUserID": 70,
- "fkiApikeyID": 99,
- "sUserLoginname": "JohnDoe",
- "sUserLastname": "Doe",
- "sUserFirstname": "John",
- "sApikeyDescriptionX": "Project X",
- "dtAuditdetailDate": "2020-12-31 23:59:59"
}, - "objAuditdetailModified": {
- "fkiUserID": 70,
- "fkiApikeyID": 99,
- "sUserLoginname": "JohnDoe",
- "sUserLastname": "Doe",
- "sUserFirstname": "John",
- "sApikeyDescriptionX": "Project X",
- "dtAuditdetailDate": "2020-12-31 23:59:59"
}
}, - "bEzsigntemplateEditallowed": true,
- "eEzsigntemplateType": "Usergroup",
- "objEzsigntemplatedocument": {
- "pkiEzsigntemplatedocumentID": 133,
- "fkiEzsigntemplateID": 36,
- "sEzsigntemplatedocumentName": "Standard Contract",
- "iEzsigntemplatedocumentPagetotal": 5,
- "iEzsigntemplatedocumentSignaturetotal": 8,
- "bEzsigntemplatedocumentHassignedsignatures": true
}, - "a_objEzsigntemplatesigner": [
- {
- "pkiEzsigntemplatesignerID": 9,
- "fkiEzsigntemplateID": 36,
- "sEzsigntemplatesignerDescription": "Customer"
}
]
}, - "objEzsigntemplatepackage": {
- "pkiEzsigntemplatepackageID": 99,
- "fkiEzsignfoldertypeID": 5,
- "fkiLanguageID": 2,
- "sLanguageNameX": "English",
- "sEzsigntemplatepackageDescription": "Package for new clients",
- "bEzsigntemplatepackageAdminonly": true,
- "bEzsigntemplatepackageNeedvalidation": true,
- "bEzsigntemplatepackageIsactive": true,
- "sEzsignfoldertypeNameX": "Default",
- "bEzsigntemplatepackageEditallowed": true,
- "a_objEzsigntemplatepackagesigner": [
- {
- "pkiEzsigntemplatepackagesignerID": 174,
- "fkiEzsigntemplatepackageID": 99,
- "sEzsigntemplatepackagesignerDescription": "Customer"
}
], - "a_objEzsigntemplatepackagemembership": [
- {
- "pkiEzsigntemplatepackagemembershipID": 194,
- "fkiEzsigntemplatepackageID": 99,
- "fkiEzsigntemplateID": 36,
- "iEzsigntemplatepackagemembershipOrder": 1,
- "objEzsigntemplate": {
- "pkiEzsigntemplateID": 36,
- "fkiEzsigntemplatedocumentID": 133,
- "fkiEzsignfoldertypeID": 5,
- "fkiLanguageID": 2,
- "sLanguageNameX": "English",
- "sEzsigntemplateDescription": "Standard Contract",
- "sEzsigntemplateFilenamepattern": "Contract",
- "bEzsigntemplateAdminonly": true,
- "sEzsignfoldertypeNameX": "Default",
- "objAudit": {
- "objAuditdetailCreated": {
- "fkiUserID": 70,
- "fkiApikeyID": 99,
- "sUserLoginname": "JohnDoe",
- "sUserLastname": "Doe",
- "sUserFirstname": "John",
- "sApikeyDescriptionX": "Project X",
- "dtAuditdetailDate": "2020-12-31 23:59:59"
}, - "objAuditdetailModified": {
- "fkiUserID": 70,
- "fkiApikeyID": 99,
- "sUserLoginname": "JohnDoe",
- "sUserLastname": "Doe",
- "sUserFirstname": "John",
- "sApikeyDescriptionX": "Project X",
- "dtAuditdetailDate": "2020-12-31 23:59:59"
}
}, - "bEzsigntemplateEditallowed": true,
- "eEzsigntemplateType": "Usergroup",
- "objEzsigntemplatedocument": {
- "pkiEzsigntemplatedocumentID": 133,
- "fkiEzsigntemplateID": 36,
- "sEzsigntemplatedocumentName": "Standard Contract",
- "iEzsigntemplatedocumentPagetotal": 5,
- "iEzsigntemplatedocumentSignaturetotal": 8,
- "bEzsigntemplatedocumentHassignedsignatures": true
}, - "a_objEzsigntemplatesigner": [
- {
- "pkiEzsigntemplatesignerID": 9,
- "fkiEzsigntemplateID": 36,
- "sEzsigntemplatesignerDescription": "Customer"
}
]
}, - "a_objEzsigntemplatepackagesignermembership": [
- {
- "pkiEzsigntemplatepackagesignermembershipID": 237,
- "fkiEzsigntemplatepackagemembershipID": 194,
- "fkiEzsigntemplatepackagesignerID": 174,
- "fkiEzsigntemplatesignerID": 9,
- "iEzsigntemplatepackagesignermembershipCopy": 1
}
]
}
]
}
}
}, - "objDebugPayload": {
- "iVersionMin": 1,
- "iVersionMax": 2,
- "a_RequiredPermission": [
- 117
], - "bVersionDeprecated": false,
- "dtResponseDate": "2020-12-31 23:59:59"
}, - "objDebug": {
- "sMemoryUsage": "11,923MB",
- "sRunTime": "0.6084s",
- "iSQLSelects": 3,
- "iSQLQueries": 6,
- "a_objSQLQuery": [
- {
- "sQuery": "SELECT * FROM table",
- "fDuration": 0.0001
}, - {
- "sQuery": "SELECT * FROM table",
- "fDuration": 0.0001
}
]
}
}
Ezsignbulksendsignermapping contains detail about a signer role in the Ezsignbulksend
The endpoint allows to create one or many elements at once.
required | Array of objects (ezsignbulksendsignermapping-RequestCompound) non-empty |
{- "a_objEzsignbulksendsignermapping": [
- {
- "pkiEzsignbulksendsignermappingID": 57,
- "fkiEzsignbulksendID": 8,
- "fkiUserID": 70,
- "sEzsignbulksendsignermappingDescription": "Supervisor"
}
]
}
{- "mPayload": {
- "a_pkiEzsignbulksendsignermappingID": [
- 57
]
}, - "objDebugPayload": {
- "iVersionMin": 1,
- "iVersionMax": 2,
- "a_RequiredPermission": [
- 117
], - "bVersionDeprecated": false,
- "dtResponseDate": "2020-12-31 23:59:59"
}, - "objDebug": {
- "sMemoryUsage": "11,923MB",
- "sRunTime": "0.6084s",
- "iSQLSelects": 3,
- "iSQLQueries": 6,
- "a_objSQLQuery": [
- {
- "sQuery": "SELECT * FROM table",
- "fDuration": 0.0001
}, - {
- "sQuery": "SELECT * FROM table",
- "fDuration": 0.0001
}
]
}
}
pkiEzsignbulksendsignermappingID required | integer (Field-pkiEzsignbulksendsignermappingID) >= 0 Example: 57 The unique ID of the Ezsignbulksendsignermapping |
{- "objDebugPayload": {
- "iVersionMin": 1,
- "iVersionMax": 2,
- "a_RequiredPermission": [
- 117
], - "bVersionDeprecated": false,
- "dtResponseDate": "2020-12-31 23:59:59"
}, - "objDebug": {
- "sMemoryUsage": "11,923MB",
- "sRunTime": "0.6084s",
- "iSQLSelects": 3,
- "iSQLQueries": 6,
- "a_objSQLQuery": [
- {
- "sQuery": "SELECT * FROM table",
- "fDuration": 0.0001
}, - {
- "sQuery": "SELECT * FROM table",
- "fDuration": 0.0001
}
]
}
}
pkiEzsignbulksendsignermappingID required | integer (Field-pkiEzsignbulksendsignermappingID) >= 0 Example: 57 The unique ID of the Ezsignbulksendsignermapping |
{- "mPayload": {
- "objEzsignbulksendsignermapping": {
- "pkiEzsignbulksendsignermappingID": 57,
- "fkiEzsignbulksendID": 8,
- "fkiUserID": 70,
- "sEzsignbulksendsignermappingDescription": "Supervisor"
}
}, - "objDebugPayload": {
- "iVersionMin": 1,
- "iVersionMax": 2,
- "a_RequiredPermission": [
- 117
], - "bVersionDeprecated": false,
- "dtResponseDate": "2020-12-31 23:59:59"
}, - "objDebug": {
- "sMemoryUsage": "11,923MB",
- "sRunTime": "0.6084s",
- "iSQLSelects": 3,
- "iSQLQueries": 6,
- "a_objSQLQuery": [
- {
- "sQuery": "SELECT * FROM table",
- "fDuration": 0.0001
}, - {
- "sQuery": "SELECT * FROM table",
- "fDuration": 0.0001
}
]
}
}
pkiEzsignbulksendtransmissionID required | integer (Field-pkiEzsignbulksendtransmissionID) >= 0 Example: 21 The unique ID of the Ezsignbulksendtransmission |
{- "mPayload": {
- "objEzsignbulksendtransmission": {
- "pkiEzsignbulksendtransmissionID": 21,
- "fkiEzsignbulksendID": 8,
- "sEzsignbulksendtransmissionDescription": "Test eZsign Bulk Send Transmission #1",
- "iEzsignbulksendtransmissionErrors": 1,
- "objAudit": {
- "objAuditdetailCreated": {
- "fkiUserID": 70,
- "fkiApikeyID": 99,
- "sUserLoginname": "JohnDoe",
- "sUserLastname": "Doe",
- "sUserFirstname": "John",
- "sApikeyDescriptionX": "Project X",
- "dtAuditdetailDate": "2020-12-31 23:59:59"
}, - "objAuditdetailModified": {
- "fkiUserID": 70,
- "fkiApikeyID": 99,
- "sUserLoginname": "JohnDoe",
- "sUserLastname": "Doe",
- "sUserFirstname": "John",
- "sApikeyDescriptionX": "Project X",
- "dtAuditdetailDate": "2020-12-31 23:59:59"
}
}, - "a_objEzsignfoldertransmission": [
- {
- "pkiEzsignfolderID": 33,
- "sEzsignfolderDescription": "Test eZsign Folder",
- "eEzsignfolderStep": "Completed",
- "iEzsignfolderSignaturetotal": 4,
- "iEzsignfolderSignaturesigned": 3,
- "a_objEzsignfoldertransmissionSigner": [
- {
- "fkiUserID": 70,
- "sContactFirstname": "John",
- "sContactLastname": "Doe"
}
]
}
]
}
}, - "objDebugPayload": {
- "iVersionMin": 1,
- "iVersionMax": 2,
- "a_RequiredPermission": [
- 117
], - "bVersionDeprecated": false,
- "dtResponseDate": "2020-12-31 23:59:59"
}, - "objDebug": {
- "sMemoryUsage": "11,923MB",
- "sRunTime": "0.6084s",
- "iSQLSelects": 3,
- "iSQLQueries": 6,
- "a_objSQLQuery": [
- {
- "sQuery": "SELECT * FROM table",
- "fDuration": 0.0001
}, - {
- "sQuery": "SELECT * FROM table",
- "fDuration": 0.0001
}
]
}
}
Return the Ezsignsignatures that can be signed by the current user at the current step in the process
pkiEzsignbulksendtransmissionID required | integer (Field-pkiEzsignbulksendtransmissionID) >= 0 Example: 21 The unique ID of the Ezsignbulksendtransmission |
{- "mPayload": {
- "a_eEzsignsignatureType": [
- "Name"
], - "a_objEzsignfolder": [
- {
- "pkiEzsignfolderID": 33,
- "sEzsignfolderDescription": "Test eZsign Folder",
- "a_objEzsigndocument": [
- {
- "pkiEzsigndocumentID": 97,
- "sEzsigndocumentName": "Contract #123",
- "a_objEzsignsignature": [
- {
- "pkiEzsignsignatureID": 49,
- "eEzsignsignatureType": "Name",
- "iEzsignpagePagenumber": 1
}
]
}
]
}
]
}, - "objDebugPayload": {
- "iVersionMin": 1,
- "iVersionMax": 2,
- "a_RequiredPermission": [
- 117
], - "bVersionDeprecated": false,
- "dtResponseDate": "2020-12-31 23:59:59"
}, - "objDebug": {
- "sMemoryUsage": "11,923MB",
- "sRunTime": "0.6084s",
- "iSQLSelects": 3,
- "iSQLQueries": 6,
- "a_objSQLQuery": [
- {
- "sQuery": "SELECT * FROM table",
- "fDuration": 0.0001
}, - {
- "sQuery": "SELECT * FROM table",
- "fDuration": 0.0001
}
]
}
}
pkiEzsignbulksendtransmissionID required | integer (Field-pkiEzsignbulksendtransmissionID) >= 0 Example: 21 The unique ID of the Ezsignbulksendtransmission |
{- "sErrorMessage": "Invalid Signature Headers",
- "eErrorCode": "BADREQUEST"
}
pkiEzsignbulksendtransmissionID required | integer (Field-pkiEzsignbulksendtransmissionID) >= 0 Example: 21 The unique ID of the Ezsignbulksendtransmission |
{- "mPayload": {
- "a_objFormsDataFolder": [
- {
- "pkiEzsignfolderID": 33,
- "sEzsignfolderDescription": "Test eZsign Folder",
- "a_objFormDataDocument": [
- {
- "pkiEzsigndocumentID": 97,
- "fkiEzsignfolderID": 33,
- "sEzsigndocumentName": "Contract #123",
- "dtModifiedDate": "2020-12-31 23:59:59",
- "a_objFormDataSigner": [
- {
- "fkiEzsignfoldersignerassociationID": 20,
- "fkiUserID": 70,
- "sContactFirstname": "John",
- "sContactLastname": "Doe",
- "a_objEzsignformfieldgroup": [
- {
- "sEzsignformfieldgroupLabel": null,
- "a_objEzsignformfield": [ ]
}
]
}
]
}
]
}
]
}, - "objDebugPayload": {
- "iVersionMin": 1,
- "iVersionMax": 2,
- "a_RequiredPermission": [
- 117
], - "bVersionDeprecated": false,
- "dtResponseDate": "2020-12-31 23:59:59"
}, - "objDebug": {
- "sMemoryUsage": "11,923MB",
- "sRunTime": "0.6084s",
- "iSQLSelects": 3,
- "iSQLQueries": 6,
- "a_objSQLQuery": [
- {
- "sQuery": "SELECT * FROM table",
- "fDuration": 0.0001
}, - {
- "sQuery": "SELECT * FROM table",
- "fDuration": 0.0001
}
]
}
}
The endpoint allows to create one or many elements at once.
required | Array of objects (ezsigndiscussion-RequestCompound) non-empty |
{- "a_objEzsigndiscussion": [
- {
- "pkiEzsigndiscussionID": 194,
- "fkiEzsigndocumentID": 97,
- "iEzsigndiscussionPagenumber": 4,
- "iEzsigndiscussionX": 57208,
- "iEzsigndiscussionY": 57652,
- "objDiscussion": {
- "pkiDiscussionID": 125,
- "sDiscussionDescription": "John Doe",
- "bDiscussionClosed": true
}
}
]
}
{- "mPayload": {
- "a_pkiEzsigndiscussionID": [
- 194
]
}, - "objDebugPayload": {
- "iVersionMin": 1,
- "iVersionMax": 2,
- "a_RequiredPermission": [
- 117
], - "bVersionDeprecated": false,
- "dtResponseDate": "2020-12-31 23:59:59"
}, - "objDebug": {
- "sMemoryUsage": "11,923MB",
- "sRunTime": "0.6084s",
- "iSQLSelects": 3,
- "iSQLQueries": 6,
- "a_objSQLQuery": [
- {
- "sQuery": "SELECT * FROM table",
- "fDuration": 0.0001
}, - {
- "sQuery": "SELECT * FROM table",
- "fDuration": 0.0001
}
]
}
}
pkiEzsigndiscussionID required | integer (Field-pkiEzsigndiscussionID) [ 0 .. 16777215 ] Example: 194 The unique ID of the Ezsigndiscussion |
{- "objDebugPayload": {
- "iVersionMin": 1,
- "iVersionMax": 2,
- "a_RequiredPermission": [
- 117
], - "bVersionDeprecated": false,
- "dtResponseDate": "2020-12-31 23:59:59"
}, - "objDebug": {
- "sMemoryUsage": "11,923MB",
- "sRunTime": "0.6084s",
- "iSQLSelects": 3,
- "iSQLQueries": 6,
- "a_objSQLQuery": [
- {
- "sQuery": "SELECT * FROM table",
- "fDuration": 0.0001
}, - {
- "sQuery": "SELECT * FROM table",
- "fDuration": 0.0001
}
]
}
}
pkiEzsigndiscussionID required | integer (Field-pkiEzsigndiscussionID) [ 0 .. 16777215 ] Example: 194 The unique ID of the Ezsigndiscussion |
{- "mPayload": {
- "objEzsigndiscussion": {
- "pkiEzsigndiscussionID": 194,
- "fkiEzsignpageID": 64,
- "fkiDiscussionID": 125,
- "iEzsigndiscussionX": 57208,
- "iEzsigndiscussionY": 57652,
- "iEzsigndiscussionPagenumber": 4,
- "objDiscussion": {
- "pkiDiscussionID": 125,
- "sDiscussionDescription": "John Doe",
- "bDiscussionClosed": true,
- "dtDiscussionLastread": "2020-12-31 23:59:59",
- "iDiscussionmessageCount": 4,
- "iDiscussionmessageCountunread": 4,
- "objDiscussionconfiguration": {
- "bDiscussionconfigurationCompletehistorywhenadded": true,
- "bDiscussionconfigurationCreateallowed": true,
- "bDiscussionconfigurationDeleteallowed": true,
- "bDiscussionconfigurationDeletediscussionmessageallowed": true,
- "bDiscussionconfigurationEditdiscussionmessageallowed": true
}, - "a_objDiscussionmembership": [
- {
- "pkiDiscussionmembershipID": 165,
- "fkiDiscussionID": 125,
- "fkiUserID": 70,
- "fkiUsergroupID": 2,
- "fkiModulesectionID": 53,
- "sDiscussionmembershipDescription": "John Doe",
- "dtDiscussionmembershipJoined": "2020-12-31 23:59:59"
}
], - "a_objDiscussionmessage": [
- {
- "pkiDiscussionmessageID": 123,
- "fkiDiscussionID": 125,
- "fkiDiscussionmembershipID": 165,
- "fkiDiscussionmembershipIDActionrequired": 165,
- "eDiscussionmessageStatus": "New",
- "tDiscussionmessageContent": "Hello, this is an example of content in a message",
- "sDiscussionmessageCreatorname": "John Doe",
- "sDiscussionmessageActionrequiredname": "Jane Doe",
- "objAudit": {
- "objAuditdetailCreated": {
- "fkiUserID": 70,
- "fkiApikeyID": 99,
- "sUserLoginname": "JohnDoe",
- "sUserLastname": "Doe",
- "sUserFirstname": "John",
- "sApikeyDescriptionX": "Project X",
- "dtAuditdetailDate": "2020-12-31 23:59:59"
}, - "objAuditdetailModified": {
- "fkiUserID": 70,
- "fkiApikeyID": 99,
- "sUserLoginname": "JohnDoe",
- "sUserLastname": "Doe",
- "sUserFirstname": "John",
- "sApikeyDescriptionX": "Project X",
- "dtAuditdetailDate": "2020-12-31 23:59:59"
}
}
}
]
}
}
}, - "objDebugPayload": {
- "iVersionMin": 1,
- "iVersionMax": 2,
- "a_RequiredPermission": [
- 117
], - "bVersionDeprecated": false,
- "dtResponseDate": "2020-12-31 23:59:59"
}, - "objDebug": {
- "sMemoryUsage": "11,923MB",
- "sRunTime": "0.6084s",
- "iSQLSelects": 3,
- "iSQLQueries": 6,
- "a_objSQLQuery": [
- {
- "sQuery": "SELECT * FROM table",
- "fDuration": 0.0001
}, - {
- "sQuery": "SELECT * FROM table",
- "fDuration": 0.0001
}
]
}
}
This endpoint applies a predefined template to the ezsign document. This allows to automatically apply all the form and signature fields on a document in a single step.
The document must not already have fields otherwise an error will be returned.
pkiEzsigndocumentID required | integer (Field-pkiEzsigndocumentID) >= 0 Example: 97 The unique ID of the Ezsigndocument |
fkiEzsigntemplateID required | integer (Field-pkiEzsigntemplateID) >= 0 The unique ID of the Ezsigntemplate |
a_sEzsigntemplatesigner required | Array of strings (Field-sEzsigntemplatesigner) non-empty |
a_pkiEzsignfoldersignerassociationID required | Array of integers (Field-pkiEzsignfoldersignerassociationID) non-empty [ items >= 0 ] |
{- "fkiEzsigntemplateID": 36,
- "a_sEzsigntemplatesigner": [
- "John"
], - "a_pkiEzsignfoldersignerassociationID": [
- 20
]
}
{- "objDebugPayload": {
- "iVersionMin": 1,
- "iVersionMax": 2,
- "a_RequiredPermission": [
- 117
], - "bVersionDeprecated": false,
- "dtResponseDate": "2020-12-31 23:59:59"
}, - "objDebug": {
- "sMemoryUsage": "11,923MB",
- "sRunTime": "0.6084s",
- "iSQLSelects": 3,
- "iSQLQueries": 6,
- "a_objSQLQuery": [
- {
- "sQuery": "SELECT * FROM table",
- "fDuration": 0.0001
}, - {
- "sQuery": "SELECT * FROM table",
- "fDuration": 0.0001
}
]
}, - "a_objWarning": [
- {
- "sWarningMessage": "string",
- "eWarningCode": "string"
}
]
}
This function is deprecated. Please use applyEzsigntemplate instead which is doing the same thing but with a capital "E" to normalize the nomenclature.
This endpoint applies a predefined template to the ezsign document. This allows to automatically apply all the form and signature fields on a document in a single step.
The document must not already have fields otherwise an error will be returned.
pkiEzsigndocumentID required | integer (Field-pkiEzsigndocumentID) >= 0 Example: 97 The unique ID of the Ezsigndocument |
fkiEzsigntemplateID required | integer (Field-pkiEzsigntemplateID) >= 0 The unique ID of the Ezsigntemplate |
a_sEzsigntemplatesigner required | Array of strings (Field-sEzsigntemplatesigner) non-empty |
a_pkiEzsignfoldersignerassociationID required | Array of integers (Field-pkiEzsignfoldersignerassociationID) non-empty [ items >= 0 ] |
{- "fkiEzsigntemplateID": 36,
- "a_sEzsigntemplatesigner": [
- "John"
], - "a_pkiEzsignfoldersignerassociationID": [
- 20
]
}
{- "objDebugPayload": {
- "iVersionMin": 1,
- "iVersionMax": 2,
- "a_RequiredPermission": [
- 117
], - "bVersionDeprecated": false,
- "dtResponseDate": "2020-12-31 23:59:59"
}, - "objDebug": {
- "sMemoryUsage": "11,923MB",
- "sRunTime": "0.6084s",
- "iSQLSelects": 3,
- "iSQLQueries": 6,
- "a_objSQLQuery": [
- {
- "sQuery": "SELECT * FROM table",
- "fDuration": 0.0001
}, - {
- "sQuery": "SELECT * FROM table",
- "fDuration": 0.0001
}
]
}
}
This endpoint applies a predefined template to the ezsign document. This allows to automatically apply all the form and signature fields on a document in a single step.
The document must not already have fields otherwise an error will be returned.
pkiEzsigndocumentID required | integer (Field-pkiEzsigndocumentID) >= 0 Example: 97 The unique ID of the Ezsigndocument |
fkiEzsigntemplateglobalID required | integer (Field-pkiEzsigntemplateglobalID) >= 0 The unique ID of the Ezsigntemplateglobal |
a_sEzsigntemplateglobalsigner required | Array of strings (Field-sEzsigntemplateglobalsigner) non-empty |
a_pkiEzsignfoldersignerassociationID required | Array of integers (Field-pkiEzsignfoldersignerassociationID) non-empty [ items >= 0 ] |
{- "fkiEzsigntemplateglobalID": 36,
- "a_sEzsigntemplateglobalsigner": [
- "John"
], - "a_pkiEzsignfoldersignerassociationID": [
- 20
]
}
{- "objDebugPayload": {
- "iVersionMin": 1,
- "iVersionMax": 2,
- "a_RequiredPermission": [
- 117
], - "bVersionDeprecated": false,
- "dtResponseDate": "2020-12-31 23:59:59"
}, - "objDebug": {
- "sMemoryUsage": "11,923MB",
- "sRunTime": "0.6084s",
- "iSQLSelects": 3,
- "iSQLQueries": 6,
- "a_objSQLQuery": [
- {
- "sQuery": "SELECT * FROM table",
- "fDuration": 0.0001
}, - {
- "sQuery": "SELECT * FROM table",
- "fDuration": 0.0001
}
]
}, - "a_objWarning": [
- {
- "sWarningMessage": "string",
- "eWarningCode": "string"
}
]
}
The endpoint allows to create one or many elements at once.
required | Array of objects (ezsigndocument-RequestCompound) non-empty |
{- "a_objEzsigndocument": [
- {
- "pkiEzsigndocumentID": 97,
- "fkiEzsignfolderID": 33,
- "fkiEzsigntemplateID": 36,
- "fkiEzsignfoldersignerassociationID": 20,
- "fkiLanguageID": 2,
- "eEzsigndocumentSource": "Base64",
- "eEzsigndocumentFormat": "Pdf",
- "sEzsigndocumentBase64": "JVBERi0xLjENCiXCpcKxw6sNCg0KMSAwIG9iag0KICA8PCAvVHlwZSAvQ2F0YWxvZw0KICAgICAvUGFnZXMgMiAwIFINCiAgPj4NCmVuZG9iag0KDQoyIDAgb2JqDQogIDw8IC9UeXBlIC9QYWdlcw0KICAgICAvS2lkcyBbMyAwIFJdDQogICAgIC9Db3VudCAxDQogICAgIC9NZWRpYUJveCBbMCAwIDMwMCAxNDRdDQogID4+DQplbmRvYmoNCg0KMyAwIG9iag0KICA8PCAgL1R5cGUgL1BhZ2UNCiAgICAgIC9QYXJlbnQgMiAwIFINCiAgICAgIC9SZXNvdXJjZXMNCiAgICAgICA8PCAvRm9udA0KICAgICAgICAgICA8PCAvRjENCiAgICAgICAgICAgICAgIDw8IC9UeXBlIC9Gb250DQogICAgICAgICAgICAgICAgICAvU3VidHlwZSAvVHlwZTENCiAgICAgICAgICAgICAgICAgIC9CYXNlRm9udCAvVGltZXMtUm9tYW4NCiAgICAgICAgICAgICAgID4+DQogICAgICAgICAgID4+DQogICAgICAgPj4NCiAgICAgIC9Db250ZW50cyA0IDAgUg0KICA+Pg0KZW5kb2JqDQoNCjQgMCBvYmoNCiAgPDwgL0xlbmd0aCA1NSA+Pg0Kc3RyZWFtDQogIEJUDQogICAgL0YxIDE4IFRmDQogICAgMCAwIFRkDQogICAgKEhlbGxvIFdvcmxkKSBUag0KICBFVA0KZW5kc3RyZWFtDQplbmRvYmoNCg0KeHJlZg0KMCA1DQowMDAwMDAwMDAwIDY1NTM1IGYgDQowMDAwMDAwMDE4IDAwMDAwIG4gDQowMDAwMDAwMDc3IDAwMDAwIG4gDQowMDAwMDAwMTc4IDAwMDAwIG4gDQowMDAwMDAwNDU3IDAwMDAwIG4gDQp0cmFpbGVyDQogIDw8ICAvUm9vdCAxIDAgUg0KICAgICAgL1NpemUgNQ0KICA+Pg0Kc3RhcnR4cmVmDQo1NjUNCiUlRU9G",
- "bEzsigndocumentForcerepair": true,
- "sEzsigndocumentPassword": "SecretPassword123",
- "eEzsigndocumentForm": "Keep",
- "dtEzsigndocumentDuedate": "2020-12-31 23:59:59",
- "sEzsigndocumentName": "Contract #123",
- "sEzsigndocumentExternalid": "{\"ID\": 1234, \"TAGS\": [\"tag1\", \"tag2\", \"tag3\"]}"
}
]
}
{- "mPayload": {
- "a_pkiEzsigndocumentID": [
- 97
]
}, - "objDebugPayload": {
- "iVersionMin": 1,
- "iVersionMax": 2,
- "a_RequiredPermission": [
- 117
], - "bVersionDeprecated": false,
- "dtResponseDate": "2020-12-31 23:59:59"
}, - "objDebug": {
- "sMemoryUsage": "11,923MB",
- "sRunTime": "0.6084s",
- "iSQLSelects": 3,
- "iSQLQueries": 6,
- "a_objSQLQuery": [
- {
- "sQuery": "SELECT * FROM table",
- "fDuration": 0.0001
}, - {
- "sQuery": "SELECT * FROM table",
- "fDuration": 0.0001
}
]
}
}
The endpoint allows to create one or many elements at once.
The array can contain simple (Just the object) or compound (The object and its child) objects.
Creating compound elements allows to reduce the multiple requests to create all child objects.
object (ezsigndocument-Request) An Ezsigndocument Object | |
object (ezsigndocument-RequestCompound) An Ezsigndocument Object and children to create a complete structure |
[- {
- "objEzsigndocument": {
- "pkiEzsigndocumentID": 97,
- "fkiEzsignfolderID": 33,
- "fkiEzsigntemplateID": 36,
- "fkiEzsignfoldersignerassociationID": 20,
- "fkiLanguageID": 2,
- "eEzsigndocumentSource": "Base64",
- "eEzsigndocumentFormat": "Pdf",
- "sEzsigndocumentBase64": "JVBERi0xLjENCiXCpcKxw6sNCg0KMSAwIG9iag0KICA8PCAvVHlwZSAvQ2F0YWxvZw0KICAgICAvUGFnZXMgMiAwIFINCiAgPj4NCmVuZG9iag0KDQoyIDAgb2JqDQogIDw8IC9UeXBlIC9QYWdlcw0KICAgICAvS2lkcyBbMyAwIFJdDQogICAgIC9Db3VudCAxDQogICAgIC9NZWRpYUJveCBbMCAwIDMwMCAxNDRdDQogID4+DQplbmRvYmoNCg0KMyAwIG9iag0KICA8PCAgL1R5cGUgL1BhZ2UNCiAgICAgIC9QYXJlbnQgMiAwIFINCiAgICAgIC9SZXNvdXJjZXMNCiAgICAgICA8PCAvRm9udA0KICAgICAgICAgICA8PCAvRjENCiAgICAgICAgICAgICAgIDw8IC9UeXBlIC9Gb250DQogICAgICAgICAgICAgICAgICAvU3VidHlwZSAvVHlwZTENCiAgICAgICAgICAgICAgICAgIC9CYXNlRm9udCAvVGltZXMtUm9tYW4NCiAgICAgICAgICAgICAgID4+DQogICAgICAgICAgID4+DQogICAgICAgPj4NCiAgICAgIC9Db250ZW50cyA0IDAgUg0KICA+Pg0KZW5kb2JqDQoNCjQgMCBvYmoNCiAgPDwgL0xlbmd0aCA1NSA+Pg0Kc3RyZWFtDQogIEJUDQogICAgL0YxIDE4IFRmDQogICAgMCAwIFRkDQogICAgKEhlbGxvIFdvcmxkKSBUag0KICBFVA0KZW5kc3RyZWFtDQplbmRvYmoNCg0KeHJlZg0KMCA1DQowMDAwMDAwMDAwIDY1NTM1IGYgDQowMDAwMDAwMDE4IDAwMDAwIG4gDQowMDAwMDAwMDc3IDAwMDAwIG4gDQowMDAwMDAwMTc4IDAwMDAwIG4gDQowMDAwMDAwNDU3IDAwMDAwIG4gDQp0cmFpbGVyDQogIDw8ICAvUm9vdCAxIDAgUg0KICAgICAgL1NpemUgNQ0KICA+Pg0Kc3RhcnR4cmVmDQo1NjUNCiUlRU9G",
- "bEzsigndocumentForcerepair": true,
- "sEzsigndocumentPassword": "SecretPassword123",
- "eEzsigndocumentForm": "Keep",
- "dtEzsigndocumentDuedate": "2020-12-31 23:59:59",
- "sEzsigndocumentName": "Contract #123",
- "sEzsigndocumentExternalid": "{\"ID\": 1234, \"TAGS\": [\"tag1\", \"tag2\", \"tag3\"]}"
}, - "objEzsigndocumentCompound": {
- "pkiEzsigndocumentID": 97,
- "fkiEzsignfolderID": 33,
- "fkiEzsigntemplateID": 36,
- "fkiEzsignfoldersignerassociationID": 20,
- "fkiLanguageID": 2,
- "eEzsigndocumentSource": "Base64",
- "eEzsigndocumentFormat": "Pdf",
- "sEzsigndocumentBase64": "JVBERi0xLjENCiXCpcKxw6sNCg0KMSAwIG9iag0KICA8PCAvVHlwZSAvQ2F0YWxvZw0KICAgICAvUGFnZXMgMiAwIFINCiAgPj4NCmVuZG9iag0KDQoyIDAgb2JqDQogIDw8IC9UeXBlIC9QYWdlcw0KICAgICAvS2lkcyBbMyAwIFJdDQogICAgIC9Db3VudCAxDQogICAgIC9NZWRpYUJveCBbMCAwIDMwMCAxNDRdDQogID4+DQplbmRvYmoNCg0KMyAwIG9iag0KICA8PCAgL1R5cGUgL1BhZ2UNCiAgICAgIC9QYXJlbnQgMiAwIFINCiAgICAgIC9SZXNvdXJjZXMNCiAgICAgICA8PCAvRm9udA0KICAgICAgICAgICA8PCAvRjENCiAgICAgICAgICAgICAgIDw8IC9UeXBlIC9Gb250DQogICAgICAgICAgICAgICAgICAvU3VidHlwZSAvVHlwZTENCiAgICAgICAgICAgICAgICAgIC9CYXNlRm9udCAvVGltZXMtUm9tYW4NCiAgICAgICAgICAgICAgID4+DQogICAgICAgICAgID4+DQogICAgICAgPj4NCiAgICAgIC9Db250ZW50cyA0IDAgUg0KICA+Pg0KZW5kb2JqDQoNCjQgMCBvYmoNCiAgPDwgL0xlbmd0aCA1NSA+Pg0Kc3RyZWFtDQogIEJUDQogICAgL0YxIDE4IFRmDQogICAgMCAwIFRkDQogICAgKEhlbGxvIFdvcmxkKSBUag0KICBFVA0KZW5kc3RyZWFtDQplbmRvYmoNCg0KeHJlZg0KMCA1DQowMDAwMDAwMDAwIDY1NTM1IGYgDQowMDAwMDAwMDE4IDAwMDAwIG4gDQowMDAwMDAwMDc3IDAwMDAwIG4gDQowMDAwMDAwMTc4IDAwMDAwIG4gDQowMDAwMDAwNDU3IDAwMDAwIG4gDQp0cmFpbGVyDQogIDw8ICAvUm9vdCAxIDAgUg0KICAgICAgL1NpemUgNQ0KICA+Pg0Kc3RhcnR4cmVmDQo1NjUNCiUlRU9G",
- "bEzsigndocumentForcerepair": true,
- "sEzsigndocumentPassword": "SecretPassword123",
- "eEzsigndocumentForm": "Keep",
- "dtEzsigndocumentDuedate": "2020-12-31 23:59:59",
- "sEzsigndocumentName": "Contract #123",
- "sEzsigndocumentExternalid": "{\"ID\": 1234, \"TAGS\": [\"tag1\", \"tag2\", \"tag3\"]}"
}
}
]
{- "mPayload": {
- "a_pkiEzsigndocumentID": [
- 97
]
}, - "objDebugPayload": {
- "iVersionMin": 1,
- "iVersionMax": 2,
- "a_RequiredPermission": [
- 117
], - "bVersionDeprecated": false,
- "dtResponseDate": "2020-12-31 23:59:59"
}, - "objDebug": {
- "sMemoryUsage": "11,923MB",
- "sRunTime": "0.6084s",
- "iSQLSelects": 3,
- "iSQLQueries": 6,
- "a_objSQLQuery": [
- {
- "sQuery": "SELECT * FROM table",
- "fDuration": 0.0001
}, - {
- "sQuery": "SELECT * FROM table",
- "fDuration": 0.0001
}
]
}
}
Using this endpoint, you can create multiple Ezsignsignatures/Ezsignformfieldgroups positioned by word at the same time.
pkiEzsigndocumentID required | integer (Field-pkiEzsigndocumentID) >= 0 Example: 97 The unique ID of the Ezsigndocument |
required | Array of objects (Custom-EzsignformfieldgroupCreateEzsignelementsPositionedByWord-Request) |
required | Array of objects (Custom-EzsignsignatureCreateEzsignelementsPositionedByWord-Request) |
{- "a_objEzsignformfieldgroup": [
- {
- "pkiEzsignformfieldgroupID": 26,
- "fkiEzsigndocumentID": 97,
- "eEzsignformfieldgroupType": "Text",
- "eEzsignformfieldgroupSignerrequirement": "One",
- "sEzsignformfieldgroupLabel": "Allergies",
- "iEzsignformfieldgroupStep": 1,
- "sEzsignformfieldgroupDefaultvalue": "Foo",
- "iEzsignformfieldgroupFilledmin": 1,
- "iEzsignformfieldgroupFilledmax": 2,
- "bEzsignformfieldgroupReadonly": true,
- "iEzsignformfieldgroupMaxlength": 75,
- "bEzsignformfieldgroupEncrypted": true,
- "sEzsignformfieldgroupRegexp": "/[-0-9a-zA-Z.+_]+@[-0-9a-zA-Z.+_]+.[a-zA-Z]{2,4}/",
- "tEzsignformfieldgroupTooltip": "Please enter a valid email address",
- "eEzsignformfieldgroupTooltipposition": "TopLeft",
- "eEzsignformfieldgroupTextvalidation": "None",
- "a_objEzsignformfieldgroupsigner": [
- {
- "pkiEzsignformfieldgroupsignerID": 81,
- "fkiEzsignfoldersignerassociationID": 20
}
], - "a_objDropdownElement": [
- {
- "sLabel": "string",
- "sValue": "string"
}
], - "a_objEzsignformfield": [
- {
- "pkiEzsignformfieldID": 32,
- "iEzsignpagePagenumber": 1,
- "sEzsignformfieldLabel": "Peanuts",
- "sEzsignformfieldValue": "Yes",
- "iEzsignformfieldX": 200,
- "iEzsignformfieldY": 300,
- "iEzsignformfieldWidth": 102,
- "iEzsignformfieldHeight": 22,
- "bEzsignformfieldAutocomplete": true,
- "bEzsignformfieldSelected": true,
- "sEzsignformfieldEnteredvalue": "Montreal",
- "eEzsignformfieldDependencyrequirement": "AllOf",
- "a_objEzsignelementdependency": [
- {
- "pkiEzsignelementdependencyID": 89,
- "fkiEzsignformfieldIDValidation": 32,
- "fkiEzsignformfieldgroupIDValidation": 26,
- "sEzsignelementdependencyEzsignformfieldgrouplabel": "Allergies",
- "sEzsignelementdependencyEzsignformfieldlabel": "Peanuts",
- "eEzsignelementdependencyValidation": "Value",
- "bEzsignelementdependencySelected": false,
- "eEzsignelementdependencyOperator": "eq",
- "sEzsignelementdependencyValue": "Montreal"
}
]
}
], - "objCreateezsignelementspositionedbyword": {
- "sCreateezsignelementspositionedbywordPattern": "string",
- "iCreateezsignelementspositionedbywordOffsetx": 0,
- "iCreateezsignelementspositionedbywordOffsety": 0,
- "eCreateezsignelementspositionedbywordOccurance": "All"
}
}
], - "a_objEzsignsignature": [
- {
- "pkiEzsignsignatureID": 49,
- "fkiEzsignfoldersignerassociationID": 20,
- "iEzsignpagePagenumber": 1,
- "iEzsignsignatureX": 200,
- "iEzsignsignatureY": 300,
- "iEzsignsignatureWidth": 200,
- "iEzsignsignatureHeight": 200,
- "iEzsignsignatureStep": 1,
- "eEzsignsignatureType": "Name",
- "fkiEzsigndocumentID": 97,
- "tEzsignsignatureTooltip": "Please sign here if you agree to the terms",
- "eEzsignsignatureTooltipposition": "TopLeft",
- "eEzsignsignatureFont": "Normal",
- "fkiEzsignfoldersignerassociationIDValidation": 20,
- "bEzsignsignatureRequired": true,
- "eEzsignsignatureAttachmentnamesource": "Description",
- "sEzsignsignatureAttachmentdescription": "Attachment",
- "iEzsignsignatureValidationstep": 1,
- "iEzsignsignatureMaxlength": 75,
- "eEzsignsignatureTextvalidation": "None",
- "sEzsignsignatureRegexp": "/[-0-9a-zA-Z.+_]+@[-0-9a-zA-Z.+_]+.[a-zA-Z]{2,4}/",
- "eEzsignsignatureDependencyrequirement": "AllOf",
- "bEzsignsignatureCustomdate": true,
- "a_objEzsignsignaturecustomdate": [
- {
- "pkiEzsignsignaturecustomdateID": 27,
- "iEzsignsignaturecustomdateX": 200,
- "iEzsignsignaturecustomdateY": 300,
- "iEzsignsignaturecustomdateOffsetx": 200,
- "iEzsignsignaturecustomdateOffsety": 300,
- "sEzsignsignaturecustomdateFormat": "Signature date: {YYYY}/{MM}/{DD} {hh}:{mm}{ss} {Z}"
}
], - "a_objEzsignelementdependency": [
- {
- "pkiEzsignelementdependencyID": 89,
- "fkiEzsignformfieldIDValidation": 32,
- "fkiEzsignformfieldgroupIDValidation": 26,
- "sEzsignelementdependencyEzsignformfieldgrouplabel": "Allergies",
- "sEzsignelementdependencyEzsignformfieldlabel": "Peanuts",
- "eEzsignelementdependencyValidation": "Value",
- "bEzsignelementdependencySelected": false,
- "eEzsignelementdependencyOperator": "eq",
- "sEzsignelementdependencyValue": "Montreal"
}
], - "objCreateezsignelementspositionedbyword": {
- "sCreateezsignelementspositionedbywordPattern": "string",
- "iCreateezsignelementspositionedbywordOffsetx": 0,
- "iCreateezsignelementspositionedbywordOffsety": 0,
- "eCreateezsignelementspositionedbywordOccurance": "All"
}
}
]
}
{- "mPayload": {
- "a_pkiEzsignsignatureID": [
- 49
], - "a_pkiEzsignformfieldgroupID": [
- 26
]
}, - "objDebugPayload": {
- "iVersionMin": 1,
- "iVersionMax": 2,
- "a_RequiredPermission": [
- 117
], - "bVersionDeprecated": false,
- "dtResponseDate": "2020-12-31 23:59:59"
}, - "objDebug": {
- "sMemoryUsage": "11,923MB",
- "sRunTime": "0.6084s",
- "iSQLSelects": 3,
- "iSQLQueries": 6,
- "a_objSQLQuery": [
- {
- "sQuery": "SELECT * FROM table",
- "fDuration": 0.0001
}, - {
- "sQuery": "SELECT * FROM table",
- "fDuration": 0.0001
}
]
}
}
Decline to sign
pkiEzsigndocumentID required | integer (Field-pkiEzsigndocumentID) >= 0 Example: 97 The unique ID of the Ezsigndocument |
sReason required | string^.{0,65535}$ Reason for refusal |
{- "sReason": "Wrong document"
}
{- "objDebugPayload": {
- "iVersionMin": 1,
- "iVersionMax": 2,
- "a_RequiredPermission": [
- 117
], - "bVersionDeprecated": false,
- "dtResponseDate": "2020-12-31 23:59:59"
}, - "objDebug": {
- "sMemoryUsage": "11,923MB",
- "sRunTime": "0.6084s",
- "iSQLSelects": 3,
- "iSQLQueries": 6,
- "a_objSQLQuery": [
- {
- "sQuery": "SELECT * FROM table",
- "fDuration": 0.0001
}, - {
- "sQuery": "SELECT * FROM table",
- "fDuration": 0.0001
}
]
}
}
pkiEzsigndocumentID required | integer (Field-pkiEzsigndocumentID) >= 0 Example: 97 The unique ID of the Ezsigndocument |
{- "objDebugPayload": {
- "iVersionMin": 1,
- "iVersionMax": 2,
- "a_RequiredPermission": [
- 117
], - "bVersionDeprecated": false,
- "dtResponseDate": "2020-12-31 23:59:59"
}, - "objDebug": {
- "sMemoryUsage": "11,923MB",
- "sRunTime": "0.6084s",
- "iSQLSelects": 3,
- "iSQLQueries": 6,
- "a_objSQLQuery": [
- {
- "sQuery": "SELECT * FROM table",
- "fDuration": 0.0001
}, - {
- "sQuery": "SELECT * FROM table",
- "fDuration": 0.0001
}
]
}
}
Using this endpoint, you can edit multiple Ezsignformfieldgroups at the same time.
pkiEzsigndocumentID required | integer (Field-pkiEzsigndocumentID) >= 0 Example: 97 The unique ID of the Ezsigndocument |
required | Array of objects (ezsignformfieldgroup-RequestCompound) |
{- "a_objEzsignformfieldgroup": [
- {
- "pkiEzsignformfieldgroupID": 26,
- "fkiEzsigndocumentID": 97,
- "eEzsignformfieldgroupType": "Text",
- "eEzsignformfieldgroupSignerrequirement": "One",
- "sEzsignformfieldgroupLabel": "Allergies",
- "iEzsignformfieldgroupStep": 1,
- "sEzsignformfieldgroupDefaultvalue": "Foo",
- "iEzsignformfieldgroupFilledmin": 1,
- "iEzsignformfieldgroupFilledmax": 2,
- "bEzsignformfieldgroupReadonly": true,
- "iEzsignformfieldgroupMaxlength": 75,
- "bEzsignformfieldgroupEncrypted": true,
- "sEzsignformfieldgroupRegexp": "/[-0-9a-zA-Z.+_]+@[-0-9a-zA-Z.+_]+.[a-zA-Z]{2,4}/",
- "tEzsignformfieldgroupTooltip": "Please enter a valid email address",
- "eEzsignformfieldgroupTooltipposition": "TopLeft",
- "eEzsignformfieldgroupTextvalidation": "None",
- "a_objEzsignformfieldgroupsigner": [
- {
- "pkiEzsignformfieldgroupsignerID": 81,
- "fkiEzsignfoldersignerassociationID": 20
}
], - "a_objDropdownElement": [
- {
- "sLabel": "string",
- "sValue": "string"
}
], - "a_objEzsignformfield": [
- {
- "pkiEzsignformfieldID": 32,
- "iEzsignpagePagenumber": 1,
- "sEzsignformfieldLabel": "Peanuts",
- "sEzsignformfieldValue": "Yes",
- "iEzsignformfieldX": 200,
- "iEzsignformfieldY": 300,
- "iEzsignformfieldWidth": 102,
- "iEzsignformfieldHeight": 22,
- "bEzsignformfieldAutocomplete": true,
- "bEzsignformfieldSelected": true,
- "sEzsignformfieldEnteredvalue": "Montreal",
- "eEzsignformfieldDependencyrequirement": "AllOf",
- "a_objEzsignelementdependency": [
- {
- "pkiEzsignelementdependencyID": 89,
- "fkiEzsignformfieldIDValidation": 32,
- "fkiEzsignformfieldgroupIDValidation": 26,
- "sEzsignelementdependencyEzsignformfieldgrouplabel": "Allergies",
- "sEzsignelementdependencyEzsignformfieldlabel": "Peanuts",
- "eEzsignelementdependencyValidation": "Value",
- "bEzsignelementdependencySelected": false,
- "eEzsignelementdependencyOperator": "eq",
- "sEzsignelementdependencyValue": "Montreal"
}
]
}
]
}
]
}
{- "mPayload": {
- "a_pkiEzsignformfieldgroupID": [
- 26
]
}, - "objDebugPayload": {
- "iVersionMin": 1,
- "iVersionMax": 2,
- "a_RequiredPermission": [
- 117
], - "bVersionDeprecated": false,
- "dtResponseDate": "2020-12-31 23:59:59"
}, - "objDebug": {
- "sMemoryUsage": "11,923MB",
- "sRunTime": "0.6084s",
- "iSQLSelects": 3,
- "iSQLQueries": 6,
- "a_objSQLQuery": [
- {
- "sQuery": "SELECT * FROM table",
- "fDuration": 0.0001
}, - {
- "sQuery": "SELECT * FROM table",
- "fDuration": 0.0001
}
]
}
}
Using this endpoint, you can edit multiple Ezsignsignatures at the same time.
pkiEzsigndocumentID required | integer (Field-pkiEzsigndocumentID) >= 0 Example: 97 The unique ID of the Ezsigndocument |
required | Array of objects (ezsignsignature-RequestCompound) |
{- "a_objEzsignsignature": [
- {
- "pkiEzsignsignatureID": 49,
- "fkiEzsignfoldersignerassociationID": 20,
- "iEzsignpagePagenumber": 1,
- "iEzsignsignatureX": 200,
- "iEzsignsignatureY": 300,
- "iEzsignsignatureWidth": 200,
- "iEzsignsignatureHeight": 200,
- "iEzsignsignatureStep": 1,
- "eEzsignsignatureType": "Name",
- "fkiEzsigndocumentID": 97,
- "tEzsignsignatureTooltip": "Please sign here if you agree to the terms",
- "eEzsignsignatureTooltipposition": "TopLeft",
- "eEzsignsignatureFont": "Normal",
- "fkiEzsignfoldersignerassociationIDValidation": 20,
- "bEzsignsignatureRequired": true,
- "eEzsignsignatureAttachmentnamesource": "Description",
- "sEzsignsignatureAttachmentdescription": "Attachment",
- "iEzsignsignatureValidationstep": 1,
- "iEzsignsignatureMaxlength": 75,
- "eEzsignsignatureTextvalidation": "None",
- "sEzsignsignatureRegexp": "/[-0-9a-zA-Z.+_]+@[-0-9a-zA-Z.+_]+.[a-zA-Z]{2,4}/",
- "eEzsignsignatureDependencyrequirement": "AllOf",
- "bEzsignsignatureCustomdate": true,
- "a_objEzsignsignaturecustomdate": [
- {
- "pkiEzsignsignaturecustomdateID": 27,
- "iEzsignsignaturecustomdateX": 200,
- "iEzsignsignaturecustomdateY": 300,
- "iEzsignsignaturecustomdateOffsetx": 200,
- "iEzsignsignaturecustomdateOffsety": 300,
- "sEzsignsignaturecustomdateFormat": "Signature date: {YYYY}/{MM}/{DD} {hh}:{mm}{ss} {Z}"
}
], - "a_objEzsignelementdependency": [
- {
- "pkiEzsignelementdependencyID": 89,
- "fkiEzsignformfieldIDValidation": 32,
- "fkiEzsignformfieldgroupIDValidation": 26,
- "sEzsignelementdependencyEzsignformfieldgrouplabel": "Allergies",
- "sEzsignelementdependencyEzsignformfieldlabel": "Peanuts",
- "eEzsignelementdependencyValidation": "Value",
- "bEzsignelementdependencySelected": false,
- "eEzsignelementdependencyOperator": "eq",
- "sEzsignelementdependencyValue": "Montreal"
}
]
}
]
}
{- "mPayload": {
- "a_pkiEzsignsignatureID": [
- 49
]
}, - "objDebugPayload": {
- "iVersionMin": 1,
- "iVersionMax": 2,
- "a_RequiredPermission": [
- 117
], - "bVersionDeprecated": false,
- "dtResponseDate": "2020-12-31 23:59:59"
}, - "objDebug": {
- "sMemoryUsage": "11,923MB",
- "sRunTime": "0.6084s",
- "iSQLSelects": 3,
- "iSQLQueries": 6,
- "a_objSQLQuery": [
- {
- "sQuery": "SELECT * FROM table",
- "fDuration": 0.0001
}, - {
- "sQuery": "SELECT * FROM table",
- "fDuration": 0.0001
}
]
}
}
End prematurely an Ezsigndocument when some signatures are still required
pkiEzsigndocumentID required | integer (Field-pkiEzsigndocumentID) >= 0 Example: 97 The unique ID of the Ezsigndocument |
Request for POST /1/object/ezsigndocument/{pkiEzsigndocumentID}/endPrematurely
Intentionally empty for future-proofing
{ }
{- "objDebugPayload": {
- "iVersionMin": 1,
- "iVersionMax": 2,
- "a_RequiredPermission": [
- 117
], - "bVersionDeprecated": false,
- "dtResponseDate": "2020-12-31 23:59:59"
}, - "objDebug": {
- "sMemoryUsage": "11,923MB",
- "sRunTime": "0.6084s",
- "iSQLSelects": 3,
- "iSQLQueries": 6,
- "a_objSQLQuery": [
- {
- "sQuery": "SELECT * FROM table",
- "fDuration": 0.0001
}, - {
- "sQuery": "SELECT * FROM table",
- "fDuration": 0.0001
}
]
}
}
Flatten an Ezsigndocument signatures, forms and annotations. This process finalizes the PDF so that the forms and annotations become part of the document content and cannot be edited.
pkiEzsigndocumentID required | integer (Field-pkiEzsigndocumentID) >= 0 Example: 97 The unique ID of the Ezsigndocument |
Request for POST /1/object/ezsigndocument/{pkiEzsigndocumentID}/flatten
Intentionally empty for future-proofing
{ }
{- "objDebugPayload": {
- "iVersionMin": 1,
- "iVersionMax": 2,
- "a_RequiredPermission": [
- 117
], - "bVersionDeprecated": false,
- "dtResponseDate": "2020-12-31 23:59:59"
}, - "objDebug": {
- "sMemoryUsage": "11,923MB",
- "sRunTime": "0.6084s",
- "iSQLSelects": 3,
- "iSQLQueries": 6,
- "a_objSQLQuery": [
- {
- "sQuery": "SELECT * FROM table",
- "fDuration": 0.0001
}, - {
- "sQuery": "SELECT * FROM table",
- "fDuration": 0.0001
}
]
}
}
pkiEzsigndocumentID required | integer (Field-pkiEzsigndocumentID) >= 0 Example: 97 The unique ID of the Ezsigndocument |
required | object (ezsigndocument-RequestPatch) An Ezsigndocument Object |
{- "objEzsigndocument": {
- "dtEzsigndocumentDuedate": "2020-12-31 23:59:59",
- "sEzsigndocumentName": "Contract #123"
}
}
{- "objDebugPayload": {
- "iVersionMin": 1,
- "iVersionMax": 2,
- "a_RequiredPermission": [
- 117
], - "bVersionDeprecated": false,
- "dtResponseDate": "2020-12-31 23:59:59"
}, - "objDebug": {
- "sMemoryUsage": "11,923MB",
- "sRunTime": "0.6084s",
- "iSQLSelects": 3,
- "iSQLQueries": 6,
- "a_objSQLQuery": [
- {
- "sQuery": "SELECT * FROM table",
- "fDuration": 0.0001
}, - {
- "sQuery": "SELECT * FROM table",
- "fDuration": 0.0001
}
]
}
}
This endpoint returns URLs to different files that can be downloaded during the signing process.
These links will expire after 5 minutes so the download of the file should be made soon after retrieving the link.
pkiEzsigndocumentID required | integer (Field-pkiEzsigndocumentID) >= 0 Example: 97 The unique ID of the Ezsigndocument |
eDocumentType required | string Enum: "Initial" "SignatureReady" "Signed" "Proof" "Proofdocument" The type of document to retrieve.
|
{- "objDebugPayload": {
- "iVersionMin": 1,
- "iVersionMax": 2,
- "a_RequiredPermission": [
- 117
], - "bVersionDeprecated": false,
- "dtResponseDate": "2020-12-31 23:59:59"
}, - "objDebug": {
- "sMemoryUsage": "11,923MB",
- "sRunTime": "0.6084s",
- "iSQLSelects": 3,
- "iSQLQueries": 6,
- "a_objSQLQuery": [
- {
- "sQuery": "SELECT * FROM table",
- "fDuration": 0.0001
}, - {
- "sQuery": "SELECT * FROM table",
- "fDuration": 0.0001
}
]
}
}
Return the Ezsignsignatures that can be signed and Ezsignformfieldgroups that can be filled by the current user at the current step in the process
pkiEzsigndocumentID required | integer (Field-pkiEzsigndocumentID) >= 0 Example: 97 The unique ID of the Ezsigndocument |
{- "mPayload": {
- "a_objEzsignsignature": [
- {
- "pkiEzsignsignatureID": 49,
- "fkiEzsigndocumentID": 97,
- "fkiEzsignfoldersignerassociationID": 20,
- "fkiEzsignsigningreasonID": 194,
- "sEzsignsigningreasonDescriptionX": "I approve this document",
- "iEzsignpagePagenumber": 1,
- "iEzsignsignatureX": 200,
- "iEzsignsignatureY": 300,
- "iEzsignsignatureHeight": 200,
- "iEzsignsignatureWidth": 200,
- "iEzsignsignatureStep": 1,
- "iEzsignsignatureStepadjusted": 1,
- "eEzsignsignatureType": "Name",
- "tEzsignsignatureTooltip": "Please sign here if you agree to the terms",
- "eEzsignsignatureTooltipposition": "TopLeft",
- "eEzsignsignatureFont": "Normal",
- "iEzsignsignatureValidationstep": 1,
- "sEzsignsignatureAttachmentdescription": "Attachment",
- "eEzsignsignatureAttachmentnamesource": "Description",
- "bEzsignsignatureRequired": true,
- "fkiEzsignfoldersignerassociationIDValidation": 20,
- "dtEzsignsignatureDate": "2020-12-31 23:59:59",
- "iEzsignsignatureattachmentCount": 7,
- "sEzsignsignatureDescription": "Montreal",
- "iEzsignsignatureMaxlength": 75,
- "eEzsignsignatureTextvalidation": "None",
- "eEzsignsignatureDependencyrequirement": "AllOf",
- "sEzsignsignatureRegexp": "/[-0-9a-zA-Z.+_]+@[-0-9a-zA-Z.+_]+.[a-zA-Z]{2,4}/",
- "objContactName": {
- "sContactFirstname": "John",
- "sContactLastname": "Doe",
- "sContactCompany": "eZmax Solutions Inc."
}, - "objContactNameDelegation": {
- "sContactFirstname": "John",
- "sContactLastname": "Doe",
- "sContactCompany": "eZmax Solutions Inc."
}, - "bEzsignsignatureCustomdate": true,
- "a_objEzsignsignaturecustomdate": [
- {
- "pkiEzsignsignaturecustomdateID": 27,
- "iEzsignsignaturecustomdateX": 200,
- "iEzsignsignaturecustomdateY": 300,
- "iEzsignsignaturecustomdateOffsetx": 200,
- "iEzsignsignaturecustomdateOffsety": 300,
- "sEzsignsignaturecustomdateFormat": "Signature date: {YYYY}/{MM}/{DD} {hh}:{mm}{ss} {Z}"
}
], - "objCreditcardtransaction": {
- "eCreditcardtypeCodename": "visa",
- "dCreditcardtransactionAmount": "167.58",
- "sCreditcardtransactionPartiallydecryptednumber": "XXXX XXXX XXXX 1234",
- "sCreditcardtransactionReferencenumber": "651447854715478415"
}, - "a_objEzsignelementdependency": [
- {
- "pkiEzsignelementdependencyID": 89,
- "fkiEzsignformfieldID": 32,
- "fkiEzsignsignatureID": 49,
- "fkiEzsignformfieldIDValidation": 32,
- "fkiEzsignformfieldgroupIDValidation": 26,
- "eEzsignelementdependencyValidation": "Value",
- "bEzsignelementdependencySelected": false,
- "eEzsignelementdependencyOperator": "eq",
- "sEzsignelementdependencyValue": "Montreal"
}
]
}
], - "a_objEzsignformfieldgroup": [
- {
- "pkiEzsignformfieldgroupID": 26,
- "fkiEzsigndocumentID": 97,
- "eEzsignformfieldgroupType": "Text",
- "eEzsignformfieldgroupSignerrequirement": "One",
- "sEzsignformfieldgroupLabel": "Allergies",
- "iEzsignformfieldgroupStep": 1,
- "sEzsignformfieldgroupDefaultvalue": "Foo",
- "iEzsignformfieldgroupFilledmin": 1,
- "iEzsignformfieldgroupFilledmax": 2,
- "bEzsignformfieldgroupReadonly": true,
- "iEzsignformfieldgroupMaxlength": 75,
- "bEzsignformfieldgroupEncrypted": true,
- "eEzsignformfieldgroupTextvalidation": "None",
- "sEzsignformfieldgroupRegexp": "/[-0-9a-zA-Z.+_]+@[-0-9a-zA-Z.+_]+.[a-zA-Z]{2,4}/",
- "tEzsignformfieldgroupTooltip": "Please enter a valid email address",
- "eEzsignformfieldgroupTooltipposition": "TopLeft",
- "a_objEzsignformfield": [
- {
- "pkiEzsignformfieldID": 32,
- "iEzsignpagePagenumber": 1,
- "sEzsignformfieldLabel": "Peanuts",
- "sEzsignformfieldValue": "Yes",
- "iEzsignformfieldX": 200,
- "iEzsignformfieldY": 300,
- "iEzsignformfieldWidth": 102,
- "iEzsignformfieldHeight": 22,
- "bEzsignformfieldAutocomplete": true,
- "bEzsignformfieldSelected": true,
- "sEzsignformfieldEnteredvalue": "Montreal",
- "eEzsignformfieldDependencyrequirement": "AllOf",
- "a_objEzsignelementdependency": [
- {
- "pkiEzsignelementdependencyID": 89,
- "fkiEzsignformfieldID": 32,
- "fkiEzsignsignatureID": 49,
- "fkiEzsignformfieldIDValidation": 32,
- "fkiEzsignformfieldgroupIDValidation": 26,
- "eEzsignelementdependencyValidation": "Value",
- "bEzsignelementdependencySelected": false,
- "eEzsignelementdependencyOperator": "eq",
- "sEzsignelementdependencyValue": "Montreal"
}
]
}
], - "a_objDropdownElement": [
- {
- "sLabel": "string",
- "sValue": "string"
}
], - "a_objEzsignformfieldgroupsigner": [
- {
- "pkiEzsignformfieldgroupsignerID": 81,
- "fkiEzsignfoldersignerassociationID": 20
}
]
}
]
}, - "objDebugPayload": {
- "iVersionMin": 1,
- "iVersionMax": 2,
- "a_RequiredPermission": [
- 117
], - "bVersionDeprecated": false,
- "dtResponseDate": "2020-12-31 23:59:59"
}, - "objDebug": {
- "sMemoryUsage": "11,923MB",
- "sRunTime": "0.6084s",
- "iSQLSelects": 3,
- "iSQLQueries": 6,
- "a_objSQLQuery": [
- {
- "sQuery": "SELECT * FROM table",
- "fDuration": 0.0001
}, - {
- "sQuery": "SELECT * FROM table",
- "fDuration": 0.0001
}
]
}
}
pkiEzsigndocumentID required | integer (Field-pkiEzsigndocumentID) >= 0 Example: 97 The unique ID of the Ezsigndocument |
{- "mPayload": {
- "objEzsigndocument": {
- "pkiEzsigndocumentID": 97,
- "fkiEzsignfolderID": 33,
- "fkiEzsignfoldersignerassociationIDDeclinedtosign": 20,
- "dtEzsigndocumentDuedate": "2020-12-31 23:59:59",
- "dtEzsignformCompleted": "2020-12-31 23:59:59",
- "fkiLanguageID": 2,
- "sEzsigndocumentName": "Contract #123",
- "eEzsigndocumentStep": "Completed",
- "dtEzsigndocumentFirstsend": "2020-12-31 23:59:59",
- "dtEzsigndocumentLastsend": "2020-12-31 23:59:59",
- "iEzsigndocumentOrder": 1,
- "iEzsigndocumentPagetotal": 4,
- "iEzsigndocumentSignaturesigned": 3,
- "iEzsigndocumentSignaturetotal": 4,
- "sEzsigndocumentMD5initial": "012345678901234567890123456789AB",
- "tEzsigndocumentDeclinedtosignreason": "The conditions in the contract are different than those discuted",
- "sEzsigndocumentMD5signed": "012345678901234567890123456789AB",
- "bEzsigndocumentEzsignform": true,
- "bEzsigndocumentHassignedsignatures": true,
- "objAudit": {
- "objAuditdetailCreated": {
- "fkiUserID": 70,
- "fkiApikeyID": 99,
- "sUserLoginname": "JohnDoe",
- "sUserLastname": "Doe",
- "sUserFirstname": "John",
- "sApikeyDescriptionX": "Project X",
- "dtAuditdetailDate": "2020-12-31 23:59:59"
}, - "objAuditdetailModified": {
- "fkiUserID": 70,
- "fkiApikeyID": 99,
- "sUserLoginname": "JohnDoe",
- "sUserLastname": "Doe",
- "sUserFirstname": "John",
- "sApikeyDescriptionX": "Project X",
- "dtAuditdetailDate": "2020-12-31 23:59:59"
}
}, - "sEzsigndocumentExternalid": "{\"ID\": 1234, \"TAGS\": [\"tag1\", \"tag2\", \"tag3\"]}",
- "iEzsigndocumentEzsignsignatureattachmenttotal": 3,
- "iEzsigndocumentEzsigndiscussiontotal": 14,
- "eEzsigndocumentSteptype": "Sign",
- "iEzsigndocumentStepformtotal": 2,
- "iEzsigndocumentStepformcurrent": 1,
- "iEzsigndocumentStepsignaturetotal": 2,
- "iEzsigndocumentStepsignatureCurrent": 0,
- "a_objEzsignfoldersignerassociationstatus": [
- {
- "fkiEzsignfoldersignerassociationID": 20,
- "sEzsignfoldersignerassociationstatusLastname": "Doe",
- "sEzsignfoldersignerassociationstatusFirstname": "John",
- "sEzsignfoldersignerassociationstatusDescriptionX": "John Doe",
- "a_objEzsignsignaturestatus": [
- {
- "eEzsignsignaturestatusSteptype": "Form",
- "iEzsignsignaturestatusStep": 1,
- "iEzsignsignaturestatusTotal": 2,
- "iEzsignsignaturestatusSigned": 1
}
]
}
]
}
}, - "objDebugPayload": {
- "iVersionMin": 1,
- "iVersionMax": 2,
- "a_RequiredPermission": [
- 117
], - "bVersionDeprecated": false,
- "dtResponseDate": "2020-12-31 23:59:59"
}, - "objDebug": {
- "sMemoryUsage": "11,923MB",
- "sRunTime": "0.6084s",
- "iSQLSelects": 3,
- "iSQLQueries": 6,
- "a_objSQLQuery": [
- {
- "sQuery": "SELECT * FROM table",
- "fDuration": 0.0001
}, - {
- "sQuery": "SELECT * FROM table",
- "fDuration": 0.0001
}
]
}
}
pkiEzsigndocumentID required | integer (Field-pkiEzsigndocumentID) >= 0 Example: 97 The unique ID of the Ezsigndocument |
{- "mPayload": {
- "pkiEzsigndocumentID": 97,
- "fkiEzsignfolderID": 33,
- "fkiEzsignfoldersignerassociationIDDeclinedtosign": 20,
- "dtEzsigndocumentDuedate": "2020-12-31 23:59:59",
- "dtEzsignformCompleted": "2020-12-31 23:59:59",
- "fkiLanguageID": 2,
- "sEzsigndocumentName": "Contract #123",
- "eEzsigndocumentStep": "Completed",
- "dtEzsigndocumentFirstsend": "2020-12-31 23:59:59",
- "dtEzsigndocumentLastsend": "2020-12-31 23:59:59",
- "iEzsigndocumentOrder": 1,
- "iEzsigndocumentPagetotal": 4,
- "iEzsigndocumentSignaturesigned": 3,
- "iEzsigndocumentSignaturetotal": 4,
- "sEzsigndocumentMD5initial": "012345678901234567890123456789AB",
- "tEzsigndocumentDeclinedtosignreason": "The conditions in the contract are different than those discuted",
- "sEzsigndocumentMD5signed": "012345678901234567890123456789AB",
- "bEzsigndocumentEzsignform": true,
- "bEzsigndocumentHassignedsignatures": true,
- "objAudit": {
- "objAuditdetailCreated": {
- "fkiUserID": 70,
- "fkiApikeyID": 99,
- "sUserLoginname": "JohnDoe",
- "sUserLastname": "Doe",
- "sUserFirstname": "John",
- "sApikeyDescriptionX": "Project X",
- "dtAuditdetailDate": "2020-12-31 23:59:59"
}, - "objAuditdetailModified": {
- "fkiUserID": 70,
- "fkiApikeyID": 99,
- "sUserLoginname": "JohnDoe",
- "sUserLastname": "Doe",
- "sUserFirstname": "John",
- "sApikeyDescriptionX": "Project X",
- "dtAuditdetailDate": "2020-12-31 23:59:59"
}
}, - "sEzsigndocumentExternalid": "{\"ID\": 1234, \"TAGS\": [\"tag1\", \"tag2\", \"tag3\"]}",
- "iEzsigndocumentEzsignsignatureattachmenttotal": 3,
- "iEzsigndocumentEzsigndiscussiontotal": 14,
- "eEzsigndocumentSteptype": "Sign",
- "iEzsigndocumentStepformtotal": 2,
- "iEzsigndocumentStepformcurrent": 1,
- "iEzsigndocumentStepsignaturetotal": 2,
- "iEzsigndocumentStepsignatureCurrent": 0,
- "a_objEzsignfoldersignerassociationstatus": [
- {
- "fkiEzsignfoldersignerassociationID": 20,
- "sEzsignfoldersignerassociationstatusLastname": "Doe",
- "sEzsignfoldersignerassociationstatusFirstname": "John",
- "sEzsignfoldersignerassociationstatusDescriptionX": "John Doe",
- "a_objEzsignsignaturestatus": [
- {
- "eEzsignsignaturestatusSteptype": "Form",
- "iEzsignsignaturestatusStep": 1,
- "iEzsignsignaturestatusTotal": 2,
- "iEzsignsignaturestatusSigned": 1
}
]
}
]
}, - "objDebugPayload": {
- "iVersionMin": 1,
- "iVersionMax": 2,
- "a_RequiredPermission": [
- 117
], - "bVersionDeprecated": false,
- "dtResponseDate": "2020-12-31 23:59:59"
}, - "objDebug": {
- "sMemoryUsage": "11,923MB",
- "sRunTime": "0.6084s",
- "iSQLSelects": 3,
- "iSQLQueries": 6,
- "a_objSQLQuery": [
- {
- "sQuery": "SELECT * FROM table",
- "fDuration": 0.0001
}, - {
- "sQuery": "SELECT * FROM table",
- "fDuration": 0.0001
}
]
}
}
Return the Ezsignsignatures that can be signed by the current user at the current step in the process
pkiEzsigndocumentID required | integer (Field-pkiEzsigndocumentID) >= 0 Example: 97 The unique ID of the Ezsigndocument |
{- "mPayload": {
- "a_eEzsignsignatureType": [
- "Name"
], - "a_objEzsignfolder": [
- {
- "pkiEzsignfolderID": 33,
- "sEzsignfolderDescription": "Test eZsign Folder",
- "a_objEzsigndocument": [
- {
- "pkiEzsigndocumentID": 97,
- "sEzsigndocumentName": "Contract #123",
- "a_objEzsignsignature": [
- {
- "pkiEzsignsignatureID": 49,
- "eEzsignsignatureType": "Name",
- "iEzsignpagePagenumber": 1
}
]
}
]
}
]
}, - "objDebugPayload": {
- "iVersionMin": 1,
- "iVersionMax": 2,
- "a_RequiredPermission": [
- 117
], - "bVersionDeprecated": false,
- "dtResponseDate": "2020-12-31 23:59:59"
}, - "objDebug": {
- "sMemoryUsage": "11,923MB",
- "sRunTime": "0.6084s",
- "iSQLSelects": 3,
- "iSQLQueries": 6,
- "a_objSQLQuery": [
- {
- "sQuery": "SELECT * FROM table",
- "fDuration": 0.0001
}, - {
- "sQuery": "SELECT * FROM table",
- "fDuration": 0.0001
}
]
}
}
pkiEzsigndocumentID required | integer (Field-pkiEzsigndocumentID) >= 0 Example: 97 The unique ID of the Ezsigndocument |
{- "mPayload": {
- "a_objEzsignannotation": [
- {
- "pkiEzsignannotationID": 113,
- "fkiEzsigndocumentID": 97,
- "eEzsignannotationHorizontalalignment": "Center",
- "eEzsignannotationVerticalalignment": "Bottom",
- "eEzsignannotationType": "Text",
- "iEzsignannotationX": 50,
- "iEzsignannotationY": 50,
- "iEzsignannotationWidth": 75,
- "iEzsignannotationHeight": 25,
- "sEzsignannotationText": "Sample",
- "iEzsignpagePagenumber": 1,
- "objTextstylestatic": {
- "pkiTextstylestaticID": 216,
- "fkiFontID": 1,
- "bTextstylestaticBold": true,
- "bTextstylestaticUnderline": true,
- "bTextstylestaticItalic": true,
- "bTextstylestaticStrikethrough": true,
- "iTextstylestaticFontcolor": 3752795,
- "iTextstylestaticSize": 12
}
}
]
}, - "objDebugPayload": {
- "iVersionMin": 1,
- "iVersionMax": 2,
- "a_RequiredPermission": [
- 117
], - "bVersionDeprecated": false,
- "dtResponseDate": "2020-12-31 23:59:59"
}, - "objDebug": {
- "sMemoryUsage": "11,923MB",
- "sRunTime": "0.6084s",
- "iSQLSelects": 3,
- "iSQLQueries": 6,
- "a_objSQLQuery": [
- {
- "sQuery": "SELECT * FROM table",
- "fDuration": 0.0001
}, - {
- "sQuery": "SELECT * FROM table",
- "fDuration": 0.0001
}
]
}
}
pkiEzsigndocumentID required | integer (Field-pkiEzsigndocumentID) >= 0 Example: 97 The unique ID of the Ezsigndocument |
{- "mPayload": {
- "a_objEzsigndiscussion": [
- {
- "pkiEzsigndiscussionID": 194,
- "fkiEzsignpageID": 64,
- "fkiDiscussionID": 125,
- "iEzsigndiscussionX": 57208,
- "iEzsigndiscussionY": 57652,
- "iEzsigndiscussionPagenumber": 4,
- "objDiscussion": {
- "pkiDiscussionID": 125,
- "sDiscussionDescription": "John Doe",
- "bDiscussionClosed": true,
- "dtDiscussionLastread": "2020-12-31 23:59:59",
- "iDiscussionmessageCount": 4,
- "iDiscussionmessageCountunread": 4,
- "objDiscussionconfiguration": {
- "bDiscussionconfigurationCompletehistorywhenadded": true,
- "bDiscussionconfigurationCreateallowed": true,
- "bDiscussionconfigurationDeleteallowed": true,
- "bDiscussionconfigurationDeletediscussionmessageallowed": true,
- "bDiscussionconfigurationEditdiscussionmessageallowed": true
}, - "a_objDiscussionmembership": [
- {
- "pkiDiscussionmembershipID": 165,
- "fkiDiscussionID": 125,
- "fkiUserID": 70,
- "fkiUsergroupID": 2,
- "fkiModulesectionID": 53,
- "sDiscussionmembershipDescription": "John Doe",
- "dtDiscussionmembershipJoined": "2020-12-31 23:59:59"
}
], - "a_objDiscussionmessage": [
- {
- "pkiDiscussionmessageID": 123,
- "fkiDiscussionID": 125,
- "fkiDiscussionmembershipID": 165,
- "fkiDiscussionmembershipIDActionrequired": 165,
- "eDiscussionmessageStatus": "New",
- "tDiscussionmessageContent": "Hello, this is an example of content in a message",
- "sDiscussionmessageCreatorname": "John Doe",
- "sDiscussionmessageActionrequiredname": "Jane Doe",
- "objAudit": {
- "objAuditdetailCreated": {
- "fkiUserID": 70,
- "fkiApikeyID": 99,
- "sUserLoginname": "JohnDoe",
- "sUserLastname": "Doe",
- "sUserFirstname": "John",
- "sApikeyDescriptionX": "Project X",
- "dtAuditdetailDate": "2020-12-31 23:59:59"
}, - "objAuditdetailModified": {
- "fkiUserID": 70,
- "fkiApikeyID": 99,
- "sUserLoginname": "JohnDoe",
- "sUserLastname": "Doe",
- "sUserFirstname": "John",
- "sApikeyDescriptionX": "Project X",
- "dtAuditdetailDate": "2020-12-31 23:59:59"
}
}
}
]
}
}
]
}, - "objDebugPayload": {
- "iVersionMin": 1,
- "iVersionMax": 2,
- "a_RequiredPermission": [
- 117
], - "bVersionDeprecated": false,
- "dtResponseDate": "2020-12-31 23:59:59"
}, - "objDebug": {
- "sMemoryUsage": "11,923MB",
- "sRunTime": "0.6084s",
- "iSQLSelects": 3,
- "iSQLQueries": 6,
- "a_objSQLQuery": [
- {
- "sQuery": "SELECT * FROM table",
- "fDuration": 0.0001
}, - {
- "sQuery": "SELECT * FROM table",
- "fDuration": 0.0001
}
]
}
}
pkiEzsigndocumentID required | integer (Field-pkiEzsigndocumentID) >= 0 Example: 97 The unique ID of the Ezsigndocument |
{- "mPayload": {
- "a_objEzsignformfieldgroup": [
- {
- "pkiEzsignformfieldgroupID": 26,
- "fkiEzsigndocumentID": 97,
- "eEzsignformfieldgroupType": "Text",
- "eEzsignformfieldgroupSignerrequirement": "One",
- "sEzsignformfieldgroupLabel": "Allergies",
- "iEzsignformfieldgroupStep": 1,
- "sEzsignformfieldgroupDefaultvalue": "Foo",
- "iEzsignformfieldgroupFilledmin": 1,
- "iEzsignformfieldgroupFilledmax": 2,
- "bEzsignformfieldgroupReadonly": true,
- "iEzsignformfieldgroupMaxlength": 75,
- "bEzsignformfieldgroupEncrypted": true,
- "eEzsignformfieldgroupTextvalidation": "None",
- "sEzsignformfieldgroupRegexp": "/[-0-9a-zA-Z.+_]+@[-0-9a-zA-Z.+_]+.[a-zA-Z]{2,4}/",
- "tEzsignformfieldgroupTooltip": "Please enter a valid email address",
- "eEzsignformfieldgroupTooltipposition": "TopLeft",
- "a_objEzsignformfield": [
- {
- "pkiEzsignformfieldID": 32,
- "iEzsignpagePagenumber": 1,
- "sEzsignformfieldLabel": "Peanuts",
- "sEzsignformfieldValue": "Yes",
- "iEzsignformfieldX": 200,
- "iEzsignformfieldY": 300,
- "iEzsignformfieldWidth": 102,
- "iEzsignformfieldHeight": 22,
- "bEzsignformfieldAutocomplete": true,
- "bEzsignformfieldSelected": true,
- "sEzsignformfieldEnteredvalue": "Montreal",
- "eEzsignformfieldDependencyrequirement": "AllOf",
- "a_objEzsignelementdependency": [
- {
- "pkiEzsignelementdependencyID": 89,
- "fkiEzsignformfieldID": 32,
- "fkiEzsignsignatureID": 49,
- "fkiEzsignformfieldIDValidation": 32,
- "fkiEzsignformfieldgroupIDValidation": 26,
- "eEzsignelementdependencyValidation": "Value",
- "bEzsignelementdependencySelected": false,
- "eEzsignelementdependencyOperator": "eq",
- "sEzsignelementdependencyValue": "Montreal"
}
]
}
], - "a_objDropdownElement": [
- {
- "sLabel": "string",
- "sValue": "string"
}
], - "a_objEzsignformfieldgroupsigner": [
- {
- "pkiEzsignformfieldgroupsignerID": 81,
- "fkiEzsignfoldersignerassociationID": 20
}
]
}
]
}, - "objDebugPayload": {
- "iVersionMin": 1,
- "iVersionMax": 2,
- "a_RequiredPermission": [
- 117
], - "bVersionDeprecated": false,
- "dtResponseDate": "2020-12-31 23:59:59"
}, - "objDebug": {
- "sMemoryUsage": "11,923MB",
- "sRunTime": "0.6084s",
- "iSQLSelects": 3,
- "iSQLQueries": 6,
- "a_objSQLQuery": [
- {
- "sQuery": "SELECT * FROM table",
- "fDuration": 0.0001
}, - {
- "sQuery": "SELECT * FROM table",
- "fDuration": 0.0001
}
]
}
}
pkiEzsigndocumentID required | integer (Field-pkiEzsigndocumentID) >= 0 Example: 97 The unique ID of the Ezsigndocument |
{- "mPayload": {
- "a_objEzsignpage": [
- {
- "pkiEzsignpageID": 64,
- "iEzsignpageWidthimage": 850,
- "iEzsignpageHeightimage": 1100,
- "iEzsignpageWidthpdf": 612,
- "iEzsignpageHeightpdf": 792,
- "iEzsignpagePagenumber": 1,
- "sComputedImageurl": "string"
}
]
}, - "objDebugPayload": {
- "iVersionMin": 1,
- "iVersionMax": 2,
- "a_RequiredPermission": [
- 117
], - "bVersionDeprecated": false,
- "dtResponseDate": "2020-12-31 23:59:59"
}, - "objDebug": {
- "sMemoryUsage": "11,923MB",
- "sRunTime": "0.6084s",
- "iSQLSelects": 3,
- "iSQLQueries": 6,
- "a_objSQLQuery": [
- {
- "sQuery": "SELECT * FROM table",
- "fDuration": 0.0001
}, - {
- "sQuery": "SELECT * FROM table",
- "fDuration": 0.0001
}
]
}
}
pkiEzsigndocumentID required | integer (Field-pkiEzsigndocumentID) >= 0 Example: 97 The unique ID of the Ezsigndocument |
{- "mPayload": {
- "a_objEzsignsignature": [
- {
- "pkiEzsignsignatureID": 49,
- "fkiEzsigndocumentID": 97,
- "fkiEzsignfoldersignerassociationID": 20,
- "fkiEzsignsigningreasonID": 194,
- "sEzsignsigningreasonDescriptionX": "I approve this document",
- "iEzsignpagePagenumber": 1,
- "iEzsignsignatureX": 200,
- "iEzsignsignatureY": 300,
- "iEzsignsignatureHeight": 200,
- "iEzsignsignatureWidth": 200,
- "iEzsignsignatureStep": 1,
- "iEzsignsignatureStepadjusted": 1,
- "eEzsignsignatureType": "Name",
- "tEzsignsignatureTooltip": "Please sign here if you agree to the terms",
- "eEzsignsignatureTooltipposition": "TopLeft",
- "eEzsignsignatureFont": "Normal",
- "iEzsignsignatureValidationstep": 1,
- "sEzsignsignatureAttachmentdescription": "Attachment",
- "eEzsignsignatureAttachmentnamesource": "Description",
- "bEzsignsignatureRequired": true,
- "fkiEzsignfoldersignerassociationIDValidation": 20,
- "dtEzsignsignatureDate": "2020-12-31 23:59:59",
- "iEzsignsignatureattachmentCount": 7,
- "sEzsignsignatureDescription": "Montreal",
- "iEzsignsignatureMaxlength": 75,
- "eEzsignsignatureTextvalidation": "None",
- "eEzsignsignatureDependencyrequirement": "AllOf",
- "sEzsignsignatureRegexp": "/[-0-9a-zA-Z.+_]+@[-0-9a-zA-Z.+_]+.[a-zA-Z]{2,4}/",
- "objContactName": {
- "sContactFirstname": "John",
- "sContactLastname": "Doe",
- "sContactCompany": "eZmax Solutions Inc."
}, - "objContactNameDelegation": {
- "sContactFirstname": "John",
- "sContactLastname": "Doe",
- "sContactCompany": "eZmax Solutions Inc."
}, - "bEzsignsignatureCustomdate": true,
- "a_objEzsignsignaturecustomdate": [
- {
- "pkiEzsignsignaturecustomdateID": 27,
- "iEzsignsignaturecustomdateX": 200,
- "iEzsignsignaturecustomdateY": 300,
- "iEzsignsignaturecustomdateOffsetx": 200,
- "iEzsignsignaturecustomdateOffsety": 300,
- "sEzsignsignaturecustomdateFormat": "Signature date: {YYYY}/{MM}/{DD} {hh}:{mm}{ss} {Z}"
}
], - "objCreditcardtransaction": {
- "eCreditcardtypeCodename": "visa",
- "dCreditcardtransactionAmount": "167.58",
- "sCreditcardtransactionPartiallydecryptednumber": "XXXX XXXX XXXX 1234",
- "sCreditcardtransactionReferencenumber": "651447854715478415"
}, - "a_objEzsignelementdependency": [
- {
- "pkiEzsignelementdependencyID": 89,
- "fkiEzsignformfieldID": 32,
- "fkiEzsignsignatureID": 49,
- "fkiEzsignformfieldIDValidation": 32,
- "fkiEzsignformfieldgroupIDValidation": 26,
- "eEzsignelementdependencyValidation": "Value",
- "bEzsignelementdependencySelected": false,
- "eEzsignelementdependencyOperator": "eq",
- "sEzsignelementdependencyValue": "Montreal"
}
]
}
]
}, - "objDebugPayload": {
- "iVersionMin": 1,
- "iVersionMax": 2,
- "a_RequiredPermission": [
- 117
], - "bVersionDeprecated": false,
- "dtResponseDate": "2020-12-31 23:59:59"
}, - "objDebug": {
- "sMemoryUsage": "11,923MB",
- "sRunTime": "0.6084s",
- "iSQLSelects": 3,
- "iSQLQueries": 6,
- "a_objSQLQuery": [
- {
- "sQuery": "SELECT * FROM table",
- "fDuration": 0.0001
}, - {
- "sQuery": "SELECT * FROM table",
- "fDuration": 0.0001
}
]
}
}
pkiEzsigndocumentID required | integer (Field-pkiEzsigndocumentID) >= 0 Example: 97 The unique ID of the Ezsigndocument |
{- "mPayload": {
- "objFormDataDocument": {
- "pkiEzsigndocumentID": 97,
- "fkiEzsignfolderID": 33,
- "sEzsigndocumentName": "Contract #123",
- "dtModifiedDate": "2020-12-31 23:59:59",
- "a_objFormDataSigner": [
- {
- "fkiEzsignfoldersignerassociationID": 20,
- "fkiUserID": 70,
- "sContactFirstname": "John",
- "sContactLastname": "Doe",
- "a_objEzsignformfieldgroup": [
- {
- "sEzsignformfieldgroupLabel": "Allergies",
- "a_objEzsignformfield": [
- {
- "sEzsignformfieldLabel": "Peanuts",
- "sEzsignformfieldValue": "Yes"
}
]
}
]
}
]
}
}, - "objDebugPayload": {
- "iVersionMin": 1,
- "iVersionMax": 2,
- "a_RequiredPermission": [
- 117
], - "bVersionDeprecated": false,
- "dtResponseDate": "2020-12-31 23:59:59"
}, - "objDebug": {
- "sMemoryUsage": "11,923MB",
- "sRunTime": "0.6084s",
- "iSQLSelects": 3,
- "iSQLQueries": 6,
- "a_objSQLQuery": [
- {
- "sQuery": "SELECT * FROM table",
- "fDuration": 0.0001
}, - {
- "sQuery": "SELECT * FROM table",
- "fDuration": 0.0001
}
]
}
}
Return the completed Ezsignsignatures, Ezsignformfieldgroups and Ezsignannotations at the current step in the process
pkiEzsigndocumentID required | integer (Field-pkiEzsigndocumentID) >= 0 Example: 97 The unique ID of the Ezsigndocument |
{- "mPayload": {
- "a_objEzsignsignature": [
- {
- "pkiEzsignsignatureID": 49,
- "fkiEzsigndocumentID": 97,
- "fkiEzsignfoldersignerassociationID": 20,
- "fkiEzsignsigningreasonID": 194,
- "sEzsignsigningreasonDescriptionX": "I approve this document",
- "iEzsignpagePagenumber": 1,
- "iEzsignsignatureX": 200,
- "iEzsignsignatureY": 300,
- "iEzsignsignatureHeight": 200,
- "iEzsignsignatureWidth": 200,
- "iEzsignsignatureStep": 1,
- "iEzsignsignatureStepadjusted": 1,
- "eEzsignsignatureType": "Name",
- "tEzsignsignatureTooltip": "Please sign here if you agree to the terms",
- "eEzsignsignatureTooltipposition": "TopLeft",
- "eEzsignsignatureFont": "Normal",
- "iEzsignsignatureValidationstep": 1,
- "sEzsignsignatureAttachmentdescription": "Attachment",
- "eEzsignsignatureAttachmentnamesource": "Description",
- "bEzsignsignatureRequired": true,
- "fkiEzsignfoldersignerassociationIDValidation": 20,
- "dtEzsignsignatureDate": "2020-12-31 23:59:59",
- "iEzsignsignatureattachmentCount": 7,
- "sEzsignsignatureDescription": "Montreal",
- "iEzsignsignatureMaxlength": 75,
- "eEzsignsignatureTextvalidation": "None",
- "eEzsignsignatureDependencyrequirement": "AllOf",
- "sEzsignsignatureRegexp": "/[-0-9a-zA-Z.+_]+@[-0-9a-zA-Z.+_]+.[a-zA-Z]{2,4}/",
- "objContactName": {
- "sContactFirstname": "John",
- "sContactLastname": "Doe",
- "sContactCompany": "eZmax Solutions Inc."
}, - "objContactNameDelegation": {
- "sContactFirstname": "John",
- "sContactLastname": "Doe",
- "sContactCompany": "eZmax Solutions Inc."
}, - "bEzsignsignatureCustomdate": true,
- "a_objEzsignsignaturecustomdate": [
- {
- "pkiEzsignsignaturecustomdateID": 27,
- "iEzsignsignaturecustomdateX": 200,
- "iEzsignsignaturecustomdateY": 300,
- "iEzsignsignaturecustomdateOffsetx": 200,
- "iEzsignsignaturecustomdateOffsety": 300,
- "sEzsignsignaturecustomdateFormat": "Signature date: {YYYY}/{MM}/{DD} {hh}:{mm}{ss} {Z}"
}
], - "objCreditcardtransaction": {
- "eCreditcardtypeCodename": "visa",
- "dCreditcardtransactionAmount": "167.58",
- "sCreditcardtransactionPartiallydecryptednumber": "XXXX XXXX XXXX 1234",
- "sCreditcardtransactionReferencenumber": "651447854715478415"
}, - "a_objEzsignelementdependency": [
- {
- "pkiEzsignelementdependencyID": 89,
- "fkiEzsignformfieldID": 32,
- "fkiEzsignsignatureID": 49,
- "fkiEzsignformfieldIDValidation": 32,
- "fkiEzsignformfieldgroupIDValidation": 26,
- "eEzsignelementdependencyValidation": "Value",
- "bEzsignelementdependencySelected": false,
- "eEzsignelementdependencyOperator": "eq",
- "sEzsignelementdependencyValue": "Montreal"
}
]
}
], - "a_objEzsignformfieldgroup": [
- {
- "pkiEzsignformfieldgroupID": 26,
- "fkiEzsigndocumentID": 97,
- "eEzsignformfieldgroupType": "Text",
- "eEzsignformfieldgroupSignerrequirement": "One",
- "sEzsignformfieldgroupLabel": "Allergies",
- "iEzsignformfieldgroupStep": 1,
- "sEzsignformfieldgroupDefaultvalue": "Foo",
- "iEzsignformfieldgroupFilledmin": 1,
- "iEzsignformfieldgroupFilledmax": 2,
- "bEzsignformfieldgroupReadonly": true,
- "iEzsignformfieldgroupMaxlength": 75,
- "bEzsignformfieldgroupEncrypted": true,
- "eEzsignformfieldgroupTextvalidation": "None",
- "sEzsignformfieldgroupRegexp": "/[-0-9a-zA-Z.+_]+@[-0-9a-zA-Z.+_]+.[a-zA-Z]{2,4}/",
- "tEzsignformfieldgroupTooltip": "Please enter a valid email address",
- "eEzsignformfieldgroupTooltipposition": "TopLeft",
- "a_objEzsignformfield": [
- {
- "pkiEzsignformfieldID": 32,
- "iEzsignpagePagenumber": 1,
- "sEzsignformfieldLabel": "Peanuts",
- "sEzsignformfieldValue": "Yes",
- "iEzsignformfieldX": 200,
- "iEzsignformfieldY": 300,
- "iEzsignformfieldWidth": 102,
- "iEzsignformfieldHeight": 22,
- "bEzsignformfieldAutocomplete": true,
- "bEzsignformfieldSelected": true,
- "sEzsignformfieldEnteredvalue": "Montreal",
- "eEzsignformfieldDependencyrequirement": "AllOf",
- "a_objEzsignelementdependency": [
- {
- "pkiEzsignelementdependencyID": 89,
- "fkiEzsignformfieldID": 32,
- "fkiEzsignsignatureID": 49,
- "fkiEzsignformfieldIDValidation": 32,
- "fkiEzsignformfieldgroupIDValidation": 26,
- "eEzsignelementdependencyValidation": "Value",
- "bEzsignelementdependencySelected": false,
- "eEzsignelementdependencyOperator": "eq",
- "sEzsignelementdependencyValue": "Montreal"
}
]
}
], - "a_objDropdownElement": [
- {
- "sLabel": "string",
- "sValue": "string"
}
], - "a_objEzsignformfieldgroupsigner": [
- {
- "pkiEzsignformfieldgroupsignerID": 81,
- "fkiEzsignfoldersignerassociationID": 20
}
]
}
]
}, - "objDebugPayload": {
- "iVersionMin": 1,
- "iVersionMax": 2,
- "a_RequiredPermission": [
- 117
], - "bVersionDeprecated": false,
- "dtResponseDate": "2020-12-31 23:59:59"
}, - "objDebug": {
- "sMemoryUsage": "11,923MB",
- "sRunTime": "0.6084s",
- "iSQLSelects": 3,
- "iSQLQueries": 6,
- "a_objSQLQuery": [
- {
- "sQuery": "SELECT * FROM table",
- "fDuration": 0.0001
}, - {
- "sQuery": "SELECT * FROM table",
- "fDuration": 0.0001
}
]
}
}
pkiEzsigndocumentID required | integer (Field-pkiEzsigndocumentID) >= 0 Example: 97 The unique ID of the Ezsigndocument |
{- "mPayload": {
- "a_objAttachmentdocumenttype": [
- {
- "eAttachmentDocumenttype": "Adjustment",
- "a_objAttachment": [
- {
- "pkiAttachmentID": 1,
- "fkiComputerID": 249,
- "fkiAdjustmentID": 202,
- "fkiAgentID": 1,
- "fkiBankaccountID": 46,
- "fkiBrokerID": 26,
- "fkiCommissionadvanceID": 115,
- "fkiCommunicationID": 1,
- "fkiCustomerID": 18,
- "fkiCustomertemplateID": 152,
- "fkiDepositID": 54,
- "fkiDeposittransitchequeID": 251,
- "fkiElectronicfundstransferID": 1262,
- "fkiEmployeeID": 31,
- "fkiExternalbrokerID": 1,
- "fkiEzcomadvanceserverID": 238,
- "fkiEzcomcompanyID": 170,
- "fkiEzsigndocumentID": 97,
- "fkiGhacqcontractID": 217,
- "fkiInscriptionID": 17,
- "fkiInscriptiontempID": 2445,
- "fkiInscriptionnotauthenticatedID": 24,
- "fkiInvoiceID": 1,
- "fkiBuyercontractID": 38,
- "fkiFranchisebrokerID": 61,
- "fkiFranchiseagenceID": 117,
- "fkiFranchiseofficeID": 50,
- "fkiFranchisefranchiseID": 156,
- "fkiFranchisecomplaintID": 24,
- "fkiLeadID": 117,
- "fkiMarketingprogramID": 178,
- "fkiMarketingfollowID": 45,
- "fkiNotaryID": 1,
- "fkiOfficetaxreportID": 200,
- "fkiOtherincomeID": 142,
- "fkiPaymentpreparationID": 124,
- "fkiPurchaseID": 155,
- "fkiSalaryID": 73,
- "fkiSupplierID": 1,
- "fkiTranqcontractID": 39,
- "fkiTemplateID": 232,
- "fkiInscriptionchecklistID": 191,
- "fkiFolderID": 81,
- "fkiRejectedoffertopurchaseID": 532,
- "fkiDisclosureID": 51,
- "fkiReconciliationID": 140,
- "fkiEzsigndocumentIDReference": 97,
- "eAttachmentDocumenttype": "Adjustment",
- "sAttachmentName": "Document.pdf",
- "eAttachmentPrivacy": "All",
- "fkiUserIDSpecific": 70,
- "eAttachmentType": "Other",
- "iAttachmentSize": 277465200,
- "iAttachmentEDMmoduleflag": 65,
- "sAttachmentMD5": "2cb29026e8a93c930e71598579400db6",
- "bAttachmentDeleted": false,
- "bAttachmentValid": true,
- "eAttachmentVerified": "No",
- "tAttachmentRejectioncomment": "Unreadable",
- "fkiUserIDOwner": 70,
- "objAudit": {
- "objAuditdetailCreated": {
- "fkiUserID": 70,
- "fkiApikeyID": 99,
- "sUserLoginname": "JohnDoe",
- "sUserLastname": "Doe",
- "sUserFirstname": "John",
- "sApikeyDescriptionX": "Project X",
- "dtAuditdetailDate": "2020-12-31 23:59:59"
}, - "objAuditdetailModified": {
- "fkiUserID": 70,
- "fkiApikeyID": 99,
- "sUserLoginname": "JohnDoe",
- "sUserLastname": "Doe",
- "sUserFirstname": "John",
- "sApikeyDescriptionX": "Project X",
- "dtAuditdetailDate": "2020-12-31 23:59:59"
}
}, - "objAttachmentProof": {
- "pkiAttachmentID": 1,
- "fkiComputerID": 249,
- "fkiAdjustmentID": 202,
- "fkiAgentID": 1,
- "fkiBankaccountID": 46,
- "fkiBrokerID": 26,
- "fkiCommissionadvanceID": 115,
- "fkiCommunicationID": 1,
- "fkiCustomerID": 18,
- "fkiCustomertemplateID": 152,
- "fkiDepositID": 54,
- "fkiDeposittransitchequeID": 251,
- "fkiElectronicfundstransferID": 1262,
- "fkiEmployeeID": 31,
- "fkiExternalbrokerID": 1,
- "fkiEzcomadvanceserverID": 238,
- "fkiEzcomcompanyID": 170,
- "fkiEzsigndocumentID": 97,
- "fkiGhacqcontractID": 217,
- "fkiInscriptionID": 17,
- "fkiInscriptiontempID": 2445,
- "fkiInscriptionnotauthenticatedID": 24,
- "fkiInvoiceID": 1,
- "fkiBuyercontractID": 38,
- "fkiFranchisebrokerID": 61,
- "fkiFranchiseagenceID": 117,
- "fkiFranchiseofficeID": 50,
- "fkiFranchisefranchiseID": 156,
- "fkiFranchisecomplaintID": 24,
- "fkiLeadID": 117,
- "fkiMarketingprogramID": 178,
- "fkiMarketingfollowID": 45,
- "fkiNotaryID": 1,
- "fkiOfficetaxreportID": 200,
- "fkiOtherincomeID": 142,
- "fkiPaymentpreparationID": 124,
- "fkiPurchaseID": 155,
- "fkiSalaryID": 73,
- "fkiSupplierID": 1,
- "fkiTranqcontractID": 39,
- "fkiTemplateID": 232,
- "fkiInscriptionchecklistID": 191,
- "fkiFolderID": 81,
- "fkiRejectedoffertopurchaseID": 532,
- "fkiDisclosureID": 51,
- "fkiReconciliationID": 140,
- "fkiEzsigndocumentIDReference": 97,
- "eAttachmentDocumenttype": "Adjustment",
- "sAttachmentName": "Document.pdf",
- "eAttachmentPrivacy": "All",
- "fkiUserIDSpecific": 70,
- "eAttachmentType": "Other",
- "iAttachmentSize": 277465200,
- "iAttachmentEDMmoduleflag": 65,
- "sAttachmentMD5": "2cb29026e8a93c930e71598579400db6",
- "bAttachmentDeleted": false,
- "bAttachmentValid": true,
- "eAttachmentVerified": "No",
- "tAttachmentRejectioncomment": "Unreadable",
- "fkiUserIDOwner": 70,
- "objAudit": {
- "objAuditdetailCreated": {
- "fkiUserID": 70,
- "fkiApikeyID": 99,
- "sUserLoginname": "JohnDoe",
- "sUserLastname": "Doe",
- "sUserFirstname": "John",
- "sApikeyDescriptionX": "Project X",
- "dtAuditdetailDate": "2020-12-31 23:59:59"
}, - "objAuditdetailModified": {
- "fkiUserID": 70,
- "fkiApikeyID": 99,
- "sUserLoginname": "JohnDoe",
- "sUserLastname": "Doe",
- "sUserFirstname": "John",
- "sApikeyDescriptionX": "Project X",
- "dtAuditdetailDate": "2020-12-31 23:59:59"
}
}
}, - "objAttachmentProofdocument": {
- "pkiAttachmentID": 1,
- "fkiComputerID": 249,
- "fkiAdjustmentID": 202,
- "fkiAgentID": 1,
- "fkiBankaccountID": 46,
- "fkiBrokerID": 26,
- "fkiCommissionadvanceID": 115,
- "fkiCommunicationID": 1,
- "fkiCustomerID": 18,
- "fkiCustomertemplateID": 152,
- "fkiDepositID": 54,
- "fkiDeposittransitchequeID": 251,
- "fkiElectronicfundstransferID": 1262,
- "fkiEmployeeID": 31,
- "fkiExternalbrokerID": 1,
- "fkiEzcomadvanceserverID": 238,
- "fkiEzcomcompanyID": 170,
- "fkiEzsigndocumentID": 97,
- "fkiGhacqcontractID": 217,
- "fkiInscriptionID": 17,
- "fkiInscriptiontempID": 2445,
- "fkiInscriptionnotauthenticatedID": 24,
- "fkiInvoiceID": 1,
- "fkiBuyercontractID": 38,
- "fkiFranchisebrokerID": 61,
- "fkiFranchiseagenceID": 117,
- "fkiFranchiseofficeID": 50,
- "fkiFranchisefranchiseID": 156,
- "fkiFranchisecomplaintID": 24,
- "fkiLeadID": 117,
- "fkiMarketingprogramID": 178,
- "fkiMarketingfollowID": 45,
- "fkiNotaryID": 1,
- "fkiOfficetaxreportID": 200,
- "fkiOtherincomeID": 142,
- "fkiPaymentpreparationID": 124,
- "fkiPurchaseID": 155,
- "fkiSalaryID": 73,
- "fkiSupplierID": 1,
- "fkiTranqcontractID": 39,
- "fkiTemplateID": 232,
- "fkiInscriptionchecklistID": 191,
- "fkiFolderID": 81,
- "fkiRejectedoffertopurchaseID": 532,
- "fkiDisclosureID": 51,
- "fkiReconciliationID": 140,
- "fkiEzsigndocumentIDReference": 97,
- "eAttachmentDocumenttype": "Adjustment",
- "sAttachmentName": "Document.pdf",
- "eAttachmentPrivacy": "All",
- "fkiUserIDSpecific": 70,
- "eAttachmentType": "Other",
- "iAttachmentSize": 277465200,
- "iAttachmentEDMmoduleflag": 65,
- "sAttachmentMD5": "2cb29026e8a93c930e71598579400db6",
- "bAttachmentDeleted": false,
- "bAttachmentValid": true,
- "eAttachmentVerified": "No",
- "tAttachmentRejectioncomment": "Unreadable",
- "fkiUserIDOwner": 70,
- "objAudit": {
- "objAuditdetailCreated": {
- "fkiUserID": 70,
- "fkiApikeyID": 99,
- "sUserLoginname": "JohnDoe",
- "sUserLastname": "Doe",
- "sUserFirstname": "John",
- "sApikeyDescriptionX": "Project X",
- "dtAuditdetailDate": "2020-12-31 23:59:59"
}, - "objAuditdetailModified": {
- "fkiUserID": 70,
- "fkiApikeyID": 99,
- "sUserLoginname": "JohnDoe",
- "sUserLastname": "Doe",
- "sUserFirstname": "John",
- "sApikeyDescriptionX": "Project X",
- "dtAuditdetailDate": "2020-12-31 23:59:59"
}
}
}, - "a_objAttachmentAttachment": [
- {
- "pkiAttachmentID": 1,
- "fkiComputerID": 249,
- "fkiAdjustmentID": 202,
- "fkiAgentID": 1,
- "fkiBankaccountID": 46,
- "fkiBrokerID": 26,
- "fkiCommissionadvanceID": 115,
- "fkiCommunicationID": 1,
- "fkiCustomerID": 18,
- "fkiCustomertemplateID": 152,
- "fkiDepositID": 54,
- "fkiDeposittransitchequeID": 251,
- "fkiElectronicfundstransferID": 1262,
- "fkiEmployeeID": 31,
- "fkiExternalbrokerID": 1,
- "fkiEzcomadvanceserverID": 238,
- "fkiEzcomcompanyID": 170,
- "fkiEzsigndocumentID": 97,
- "fkiGhacqcontractID": 217,
- "fkiInscriptionID": 17,
- "fkiInscriptiontempID": 2445,
- "fkiInscriptionnotauthenticatedID": 24,
- "fkiInvoiceID": 1,
- "fkiBuyercontractID": 38,
- "fkiFranchisebrokerID": 61,
- "fkiFranchiseagenceID": 117,
- "fkiFranchiseofficeID": 50,
- "fkiFranchisefranchiseID": 156,
- "fkiFranchisecomplaintID": 24,
- "fkiLeadID": 117,
- "fkiMarketingprogramID": 178,
- "fkiMarketingfollowID": 45,
- "fkiNotaryID": 1,
- "fkiOfficetaxreportID": 200,
- "fkiOtherincomeID": 142,
- "fkiPaymentpreparationID": 124,
- "fkiPurchaseID": 155,
- "fkiSalaryID": 73,
- "fkiSupplierID": 1,
- "fkiTranqcontractID": 39,
- "fkiTemplateID": 232,
- "fkiInscriptionchecklistID": 191,
- "fkiFolderID": 81,
- "fkiRejectedoffertopurchaseID": 532,
- "fkiDisclosureID": 51,
- "fkiReconciliationID": 140,
- "fkiEzsigndocumentIDReference": 97,
- "eAttachmentDocumenttype": "Adjustment",
- "sAttachmentName": "Document.pdf",
- "eAttachmentPrivacy": "All",
- "fkiUserIDSpecific": 70,
- "eAttachmentType": "Other",
- "iAttachmentSize": 277465200,
- "iAttachmentEDMmoduleflag": 65,
- "sAttachmentMD5": "2cb29026e8a93c930e71598579400db6",
- "bAttachmentDeleted": false,
- "bAttachmentValid": true,
- "eAttachmentVerified": "No",
- "tAttachmentRejectioncomment": "Unreadable",
- "fkiUserIDOwner": 70,
- "objAudit": {
- "objAuditdetailCreated": {
- "fkiUserID": null,
- "fkiApikeyID": null,
- "sUserLoginname": null,
- "sUserLastname": null,
- "sUserFirstname": null,
- "sApikeyDescriptionX": null,
- "dtAuditdetailDate": null
}, - "objAuditdetailModified": {
- "fkiUserID": null,
- "fkiApikeyID": null,
- "sUserLoginname": null,
- "sUserLastname": null,
- "sUserFirstname": null,
- "sApikeyDescriptionX": null,
- "dtAuditdetailDate": null
}
}
}
], - "a_objAttachmentVersion": [
- {
- "pkiAttachmentID": 1,
- "fkiComputerID": 249,
- "fkiAdjustmentID": 202,
- "fkiAgentID": 1,
- "fkiBankaccountID": 46,
- "fkiBrokerID": 26,
- "fkiCommissionadvanceID": 115,
- "fkiCommunicationID": 1,
- "fkiCustomerID": 18,
- "fkiCustomertemplateID": 152,
- "fkiDepositID": 54,
- "fkiDeposittransitchequeID": 251,
- "fkiElectronicfundstransferID": 1262,
- "fkiEmployeeID": 31,
- "fkiExternalbrokerID": 1,
- "fkiEzcomadvanceserverID": 238,
- "fkiEzcomcompanyID": 170,
- "fkiEzsigndocumentID": 97,
- "fkiGhacqcontractID": 217,
- "fkiInscriptionID": 17,
- "fkiInscriptiontempID": 2445,
- "fkiInscriptionnotauthenticatedID": 24,
- "fkiInvoiceID": 1,
- "fkiBuyercontractID": 38,
- "fkiFranchisebrokerID": 61,
- "fkiFranchiseagenceID": 117,
- "fkiFranchiseofficeID": 50,
- "fkiFranchisefranchiseID": 156,
- "fkiFranchisecomplaintID": 24,
- "fkiLeadID": 117,
- "fkiMarketingprogramID": 178,
- "fkiMarketingfollowID": 45,
- "fkiNotaryID": 1,
- "fkiOfficetaxreportID": 200,
- "fkiOtherincomeID": 142,
- "fkiPaymentpreparationID": 124,
- "fkiPurchaseID": 155,
- "fkiSalaryID": 73,
- "fkiSupplierID": 1,
- "fkiTranqcontractID": 39,
- "fkiTemplateID": 232,
- "fkiInscriptionchecklistID": 191,
- "fkiFolderID": 81,
- "fkiRejectedoffertopurchaseID": 532,
- "fkiDisclosureID": 51,
- "fkiReconciliationID": 140,
- "fkiEzsigndocumentIDReference": 97,
- "eAttachmentDocumenttype": "Adjustment",
- "sAttachmentName": "Document.pdf",
- "eAttachmentPrivacy": "All",
- "fkiUserIDSpecific": 70,
- "eAttachmentType": "Other",
- "iAttachmentSize": 277465200,
- "iAttachmentEDMmoduleflag": 65,
- "sAttachmentMD5": "2cb29026e8a93c930e71598579400db6",
- "bAttachmentDeleted": false,
- "bAttachmentValid": true,
- "eAttachmentVerified": "No",
- "tAttachmentRejectioncomment": "Unreadable",
- "fkiUserIDOwner": 70,
- "objAudit": {
- "objAuditdetailCreated": {
- "fkiUserID": null,
- "fkiApikeyID": null,
- "sUserLoginname": null,
- "sUserLastname": null,
- "sUserFirstname": null,
- "sApikeyDescriptionX": null,
- "dtAuditdetailDate": null
}, - "objAuditdetailModified": {
- "fkiUserID": null,
- "fkiApikeyID": null,
- "sUserLoginname": null,
- "sUserLastname": null,
- "sUserFirstname": null,
- "sApikeyDescriptionX": null,
- "dtAuditdetailDate": null
}
}
}
]
}
]
}
]
}, - "objDebugPayload": {
- "iVersionMin": 1,
- "iVersionMax": 2,
- "a_RequiredPermission": [
- 117
], - "bVersionDeprecated": false,
- "dtResponseDate": "2020-12-31 23:59:59"
}, - "objDebug": {
- "sMemoryUsage": "11,923MB",
- "sRunTime": "0.6084s",
- "iSQLSelects": 3,
- "iSQLQueries": 6,
- "a_objSQLQuery": [
- {
- "sQuery": "SELECT * FROM table",
- "fDuration": 0.0001
}, - {
- "sQuery": "SELECT * FROM table",
- "fDuration": 0.0001
}
]
}
}
pkiEzsigndocumentID required | integer (Field-pkiEzsigndocumentID) >= 0 Example: 97 The unique ID of the Ezsigndocument |
eGet required | string Enum: "All" "Words" Specify if you want to retrieve All words or specific Words from the document. If you specify Words, you must send the list of words to search for in a_sWord. |
bWordCaseSensitive required | boolean IF true, words will be searched case-sensitive and results will be returned case-sensitive. IF false, words will be searched case-insensitive and results will be returned case-insensitive. |
a_sWord | Array of strings Array of words to find in the document |
{- "eGet": "All",
- "bWordCaseSensitive": true,
- "a_sWord": [
- "string"
]
}
{- "mPayload": [
- {
- "sWord": "string",
- "a_objWordPositionOccurence": [
- {
- "iPage": 1,
- "iX": 0,
- "iY": 0
}
]
}
], - "objDebugPayload": {
- "iVersionMin": 1,
- "iVersionMax": 2,
- "a_RequiredPermission": [
- 117
], - "bVersionDeprecated": false,
- "dtResponseDate": "2020-12-31 23:59:59"
}, - "objDebug": {
- "sMemoryUsage": "11,923MB",
- "sRunTime": "0.6084s",
- "iSQLSelects": 3,
- "iSQLQueries": 6,
- "a_objSQLQuery": [
- {
- "sQuery": "SELECT * FROM table",
- "fDuration": 0.0001
}, - {
- "sQuery": "SELECT * FROM table",
- "fDuration": 0.0001
}
]
}
}
Retrieve the temporary proof while the Ezsigndocument is being processed since the proof isn't available until the Ezsigndocument is completed
pkiEzsigndocumentID required | integer (Field-pkiEzsigndocumentID) >= 0 Example: 97 The unique ID of the Ezsigndocument |
{- "mPayload": {
- "a_objEzsigndocumentlog": [
- {
- "fkiUserID": 70,
- "fkiEzsignsignerID": 89,
- "dtEzsigndocumentlogDatetime": "2020-12-31 23:59:59",
- "eEzsigndocumentlogType": "Createpage",
- "sEzsigndocumentlogDetail": "Page 1 MD5: a56bbc742ba2a4d074f2493550cf6ea5",
- "sEzsigndocumentlogLastname": "Doe",
- "sEzsigndocumentlogFirstname": "John",
- "sEzsigndocumentlogIP": "127.0.0.1"
}
]
}, - "objDebugPayload": {
- "iVersionMin": 1,
- "iVersionMax": 2,
- "a_RequiredPermission": [
- 117
], - "bVersionDeprecated": false,
- "dtResponseDate": "2020-12-31 23:59:59"
}, - "objDebug": {
- "sMemoryUsage": "11,923MB",
- "sRunTime": "0.6084s",
- "iSQLSelects": 3,
- "iSQLQueries": 6,
- "a_objSQLQuery": [
- {
- "sQuery": "SELECT * FROM table",
- "fDuration": 0.0001
}, - {
- "sQuery": "SELECT * FROM table",
- "fDuration": 0.0001
}
]
}
}
pkiEzsigndocumentID required | integer (Field-pkiEzsigndocumentID) >= 0 Example: 97 The unique ID of the Ezsigndocument |
bEzsignformIsdraft required | boolean Whether the Ezsignform submitted is a draft or not. |
required | Array of objects (Custom-Ezsignformfieldgroup-Request) non-empty |
{- "bEzsignformIsdraft": true,
- "a_objEzsignformfieldgroup": [
- {
- "pkiEzsignformfieldgroupID": 26,
- "sEzsignformfieldgroupLabel": "Allergies",
- "a_objEzsignformfield": [
- {
- "pkiEzsignformfieldID": 32,
- "sEzsignformfieldLabel": "Peanuts",
- "bEzsignformfieldSelected": true,
- "sEzsignformfieldEnteredvalue": "Montreal"
}
]
}
]
}
{- "objDebugPayload": {
- "iVersionMin": 1,
- "iVersionMax": 2,
- "a_RequiredPermission": [
- 117
], - "bVersionDeprecated": false,
- "dtResponseDate": "2020-12-31 23:59:59"
}, - "objDebug": {
- "sMemoryUsage": "11,923MB",
- "sRunTime": "0.6084s",
- "iSQLSelects": 3,
- "iSQLQueries": 6,
- "a_objSQLQuery": [
- {
- "sQuery": "SELECT * FROM table",
- "fDuration": 0.0001
}, - {
- "sQuery": "SELECT * FROM table",
- "fDuration": 0.0001
}
]
}
}
Once an Ezsigndocument has been sent to signatories, it cannot be modified.
Using this endpoint, you can unsend the Ezsigndocument and make it modifiable again.
Signatories will receive an email informing them the signature process was aborted and they might receive a new invitation to sign.
⚠️ Warning: Any signature previously made by signatories on this Ezsigndocumentswill be lost.
pkiEzsigndocumentID required | integer (Field-pkiEzsigndocumentID) >= 0 Example: 97 The unique ID of the Ezsigndocument |
Request for POST /1/object/ezsigndocument/{pkiEzsigndocumentID}/unsend
Intentionally empty for future-proofing
{ }
{- "objDebugPayload": {
- "iVersionMin": 1,
- "iVersionMax": 2,
- "a_RequiredPermission": [
- 117
], - "bVersionDeprecated": false,
- "dtResponseDate": "2020-12-31 23:59:59"
}, - "objDebug": {
- "sMemoryUsage": "11,923MB",
- "sRunTime": "0.6084s",
- "iSQLSelects": 3,
- "iSQLQueries": 6,
- "a_objSQLQuery": [
- {
- "sQuery": "SELECT * FROM table",
- "fDuration": 0.0001
}, - {
- "sQuery": "SELECT * FROM table",
- "fDuration": 0.0001
}
]
}
}
This Webhook will be called when the last signature on an Ezsigndocument is made.
required | object (ezsigndocument-Response) An Ezsigndocument Object |
required | object (Custom-Webhook-Response) A custom Webhook object |
required | Array of objects (attempt-ResponseCompound) An array containing details of previous attempts that were made to deliver the message. The array is empty if it's the first attempt. |
{- "objEzsigndocument": {
- "pkiEzsigndocumentID": 97,
- "fkiEzsignfolderID": 33,
- "fkiEzsignfoldersignerassociationIDDeclinedtosign": 20,
- "dtEzsigndocumentDuedate": "2020-12-31 23:59:59",
- "dtEzsignformCompleted": "2020-12-31 23:59:59",
- "fkiLanguageID": 2,
- "sEzsigndocumentName": "Contract #123",
- "eEzsigndocumentStep": "Completed",
- "dtEzsigndocumentFirstsend": "2020-12-31 23:59:59",
- "dtEzsigndocumentLastsend": "2020-12-31 23:59:59",
- "iEzsigndocumentOrder": 1,
- "iEzsigndocumentPagetotal": 4,
- "iEzsigndocumentSignaturesigned": 3,
- "iEzsigndocumentSignaturetotal": 4,
- "sEzsigndocumentMD5initial": "012345678901234567890123456789AB",
- "tEzsigndocumentDeclinedtosignreason": "The conditions in the contract are different than those discuted",
- "sEzsigndocumentMD5signed": "012345678901234567890123456789AB",
- "bEzsigndocumentEzsignform": true,
- "bEzsigndocumentHassignedsignatures": true,
- "objAudit": {
- "objAuditdetailCreated": {
- "fkiUserID": 70,
- "fkiApikeyID": 99,
- "sUserLoginname": "JohnDoe",
- "sUserLastname": "Doe",
- "sUserFirstname": "John",
- "sApikeyDescriptionX": "Project X",
- "dtAuditdetailDate": "2020-12-31 23:59:59"
}, - "objAuditdetailModified": {
- "fkiUserID": 70,
- "fkiApikeyID": 99,
- "sUserLoginname": "JohnDoe",
- "sUserLastname": "Doe",
- "sUserFirstname": "John",
- "sApikeyDescriptionX": "Project X",
- "dtAuditdetailDate": "2020-12-31 23:59:59"
}
}, - "sEzsigndocumentExternalid": "{\"ID\": 1234, \"TAGS\": [\"tag1\", \"tag2\", \"tag3\"]}",
- "iEzsigndocumentEzsignsignatureattachmenttotal": 3,
- "iEzsigndocumentEzsigndiscussiontotal": 14
}, - "objWebhook": {
- "pksCustomerCode": "demo",
- "bWebhookTest": true,
- "pkiWebhookID": 77,
- "sWebhookDescription": "Import into our system",
- "fkiEzsignfoldertypeID": 5,
- "sEzsignfoldertypeNameX": "Default",
- "eWebhookModule": "Ezsign",
- "eWebhookEzsignevent": "FolderCompleted",
- "eWebhookManagementevent": "UserCreated",
- "sWebhookEmailfailed": "email@example.com",
- "sWebhookApikey": "string",
- "sWebhookSecret": "string",
- "bWebhookIsactive": true,
- "bWebhookIssigned": true,
- "bWebhookSkipsslvalidation": false,
- "objAudit": {
- "objAuditdetailCreated": {
- "fkiUserID": 70,
- "fkiApikeyID": 99,
- "sUserLoginname": "JohnDoe",
- "sUserLastname": "Doe",
- "sUserFirstname": "John",
- "sApikeyDescriptionX": "Project X",
- "dtAuditdetailDate": "2020-12-31 23:59:59"
}, - "objAuditdetailModified": {
- "fkiUserID": 70,
- "fkiApikeyID": 99,
- "sUserLoginname": "JohnDoe",
- "sUserLastname": "Doe",
- "sUserFirstname": "John",
- "sApikeyDescriptionX": "Project X",
- "dtAuditdetailDate": "2020-12-31 23:59:59"
}
}, - "sWebhookEvent": "Ezsign-DocumentCompleted",
- "a_objWebhookheader": [
- {
- "pkiWebhookheaderID": 77,
- "fkiWebhookID": 77,
- "sWebhookheaderName": "Authorization",
- "sWebhookheaderValue": "d75fca0e12b6c671e7f6d4df0cf59e4e"
}
]
}, - "a_objAttempt": [
- {
- "dtAttemptStart": "2020-12-31 23:59:59",
- "sAttemptResult": "Success",
- "iAttemptDuration": 1
}
]
}
This Webhook will be called when the last form on an Ezsigndocument is completed.
required | object (ezsigndocument-Response) An Ezsigndocument Object |
required | object (Custom-Webhook-Response) A custom Webhook object |
required | Array of objects (attempt-ResponseCompound) An array containing details of previous attempts that were made to deliver the message. The array is empty if it's the first attempt. |
{- "objEzsigndocument": {
- "pkiEzsigndocumentID": 97,
- "fkiEzsignfolderID": 33,
- "fkiEzsignfoldersignerassociationIDDeclinedtosign": 20,
- "dtEzsigndocumentDuedate": "2020-12-31 23:59:59",
- "dtEzsignformCompleted": "2020-12-31 23:59:59",
- "fkiLanguageID": 2,
- "sEzsigndocumentName": "Contract #123",
- "eEzsigndocumentStep": "Completed",
- "dtEzsigndocumentFirstsend": "2020-12-31 23:59:59",
- "dtEzsigndocumentLastsend": "2020-12-31 23:59:59",
- "iEzsigndocumentOrder": 1,
- "iEzsigndocumentPagetotal": 4,
- "iEzsigndocumentSignaturesigned": 3,
- "iEzsigndocumentSignaturetotal": 4,
- "sEzsigndocumentMD5initial": "012345678901234567890123456789AB",
- "tEzsigndocumentDeclinedtosignreason": "The conditions in the contract are different than those discuted",
- "sEzsigndocumentMD5signed": "012345678901234567890123456789AB",
- "bEzsigndocumentEzsignform": true,
- "bEzsigndocumentHassignedsignatures": true,
- "objAudit": {
- "objAuditdetailCreated": {
- "fkiUserID": 70,
- "fkiApikeyID": 99,
- "sUserLoginname": "JohnDoe",
- "sUserLastname": "Doe",
- "sUserFirstname": "John",
- "sApikeyDescriptionX": "Project X",
- "dtAuditdetailDate": "2020-12-31 23:59:59"
}, - "objAuditdetailModified": {
- "fkiUserID": 70,
- "fkiApikeyID": 99,
- "sUserLoginname": "JohnDoe",
- "sUserLastname": "Doe",
- "sUserFirstname": "John",
- "sApikeyDescriptionX": "Project X",
- "dtAuditdetailDate": "2020-12-31 23:59:59"
}
}, - "sEzsigndocumentExternalid": "{\"ID\": 1234, \"TAGS\": [\"tag1\", \"tag2\", \"tag3\"]}",
- "iEzsigndocumentEzsignsignatureattachmenttotal": 3,
- "iEzsigndocumentEzsigndiscussiontotal": 14
}, - "objWebhook": {
- "pksCustomerCode": "demo",
- "bWebhookTest": true,
- "pkiWebhookID": 77,
- "sWebhookDescription": "Import into our system",
- "fkiEzsignfoldertypeID": 5,
- "sEzsignfoldertypeNameX": "Default",
- "eWebhookModule": "Ezsign",
- "eWebhookEzsignevent": "FolderCompleted",
- "eWebhookManagementevent": "UserCreated",
- "sWebhookEmailfailed": "email@example.com",
- "sWebhookApikey": "string",
- "sWebhookSecret": "string",
- "bWebhookIsactive": true,
- "bWebhookIssigned": true,
- "bWebhookSkipsslvalidation": false,
- "objAudit": {
- "objAuditdetailCreated": {
- "fkiUserID": 70,
- "fkiApikeyID": 99,
- "sUserLoginname": "JohnDoe",
- "sUserLastname": "Doe",
- "sUserFirstname": "John",
- "sApikeyDescriptionX": "Project X",
- "dtAuditdetailDate": "2020-12-31 23:59:59"
}, - "objAuditdetailModified": {
- "fkiUserID": 70,
- "fkiApikeyID": 99,
- "sUserLoginname": "JohnDoe",
- "sUserLastname": "Doe",
- "sUserFirstname": "John",
- "sApikeyDescriptionX": "Project X",
- "dtAuditdetailDate": "2020-12-31 23:59:59"
}
}, - "sWebhookEvent": "Ezsign-DocumentCompleted",
- "a_objWebhookheader": [
- {
- "pkiWebhookheaderID": 77,
- "fkiWebhookID": 77,
- "sWebhookheaderName": "Authorization",
- "sWebhookheaderValue": "d75fca0e12b6c671e7f6d4df0cf59e4e"
}
]
}, - "a_objAttempt": [
- {
- "dtAttemptStart": "2020-12-31 23:59:59",
- "sAttemptResult": "Success",
- "iAttemptDuration": 1
}
]
}
This Webhook will be called when the Ezsigndocument is unsent.
required | object (ezsigndocument-Response) An Ezsigndocument Object |
required | object (Custom-Webhook-Response) A custom Webhook object |
required | Array of objects (attempt-ResponseCompound) An array containing details of previous attempts that were made to deliver the message. The array is empty if it's the first attempt. |
{- "objEzsigndocument": {
- "pkiEzsigndocumentID": 97,
- "fkiEzsignfolderID": 33,
- "fkiEzsignfoldersignerassociationIDDeclinedtosign": 20,
- "dtEzsigndocumentDuedate": "2020-12-31 23:59:59",
- "dtEzsignformCompleted": "2020-12-31 23:59:59",
- "fkiLanguageID": 2,
- "sEzsigndocumentName": "Contract #123",
- "eEzsigndocumentStep": "Completed",
- "dtEzsigndocumentFirstsend": "2020-12-31 23:59:59",
- "dtEzsigndocumentLastsend": "2020-12-31 23:59:59",
- "iEzsigndocumentOrder": 1,
- "iEzsigndocumentPagetotal": 4,
- "iEzsigndocumentSignaturesigned": 3,
- "iEzsigndocumentSignaturetotal": 4,
- "sEzsigndocumentMD5initial": "012345678901234567890123456789AB",
- "tEzsigndocumentDeclinedtosignreason": "The conditions in the contract are different than those discuted",
- "sEzsigndocumentMD5signed": "012345678901234567890123456789AB",
- "bEzsigndocumentEzsignform": true,
- "bEzsigndocumentHassignedsignatures": true,
- "objAudit": {
- "objAuditdetailCreated": {
- "fkiUserID": 70,
- "fkiApikeyID": 99,
- "sUserLoginname": "JohnDoe",
- "sUserLastname": "Doe",
- "sUserFirstname": "John",
- "sApikeyDescriptionX": "Project X",
- "dtAuditdetailDate": "2020-12-31 23:59:59"
}, - "objAuditdetailModified": {
- "fkiUserID": 70,
- "fkiApikeyID": 99,
- "sUserLoginname": "JohnDoe",
- "sUserLastname": "Doe",
- "sUserFirstname": "John",
- "sApikeyDescriptionX": "Project X",
- "dtAuditdetailDate": "2020-12-31 23:59:59"
}
}, - "sEzsigndocumentExternalid": "{\"ID\": 1234, \"TAGS\": [\"tag1\", \"tag2\", \"tag3\"]}",
- "iEzsigndocumentEzsignsignatureattachmenttotal": 3,
- "iEzsigndocumentEzsigndiscussiontotal": 14
}, - "objWebhook": {
- "pksCustomerCode": "demo",
- "bWebhookTest": true,
- "pkiWebhookID": 77,
- "sWebhookDescription": "Import into our system",
- "fkiEzsignfoldertypeID": 5,
- "sEzsignfoldertypeNameX": "Default",
- "eWebhookModule": "Ezsign",
- "eWebhookEzsignevent": "FolderCompleted",
- "eWebhookManagementevent": "UserCreated",
- "sWebhookEmailfailed": "email@example.com",
- "sWebhookApikey": "string",
- "sWebhookSecret": "string",
- "bWebhookIsactive": true,
- "bWebhookIssigned": true,
- "bWebhookSkipsslvalidation": false,
- "objAudit": {
- "objAuditdetailCreated": {
- "fkiUserID": 70,
- "fkiApikeyID": 99,
- "sUserLoginname": "JohnDoe",
- "sUserLastname": "Doe",
- "sUserFirstname": "John",
- "sApikeyDescriptionX": "Project X",
- "dtAuditdetailDate": "2020-12-31 23:59:59"
}, - "objAuditdetailModified": {
- "fkiUserID": 70,
- "fkiApikeyID": 99,
- "sUserLoginname": "JohnDoe",
- "sUserLastname": "Doe",
- "sUserFirstname": "John",
- "sApikeyDescriptionX": "Project X",
- "dtAuditdetailDate": "2020-12-31 23:59:59"
}
}, - "sWebhookEvent": "Ezsign-DocumentCompleted",
- "a_objWebhookheader": [
- {
- "pkiWebhookheaderID": 77,
- "fkiWebhookID": 77,
- "sWebhookheaderName": "Authorization",
- "sWebhookheaderValue": "d75fca0e12b6c671e7f6d4df0cf59e4e"
}
]
}, - "a_objAttempt": [
- {
- "dtAttemptStart": "2020-12-31 23:59:59",
- "sAttemptResult": "Success",
- "iAttemptDuration": 1
}
]
}
Ezsignfolder contains detail about the container containing signers, documents to sign, etc. Sometimes referred as "Envelopes" in competitor products
pkiEzsignfolderID required | integer (Field-pkiEzsignfolderID) >= 0 Example: 33 The unique ID of the Ezsignfolder |
Request for POST /1/object/ezsignfolder/{pkiEzsignfolderID}/archive
Intentionally empty for future-proofing
{ }
{- "objDebugPayload": {
- "iVersionMin": 1,
- "iVersionMax": 2,
- "a_RequiredPermission": [
- 117
], - "bVersionDeprecated": false,
- "dtResponseDate": "2020-12-31 23:59:59"
}, - "objDebug": {
- "sMemoryUsage": "11,923MB",
- "sRunTime": "0.6084s",
- "iSQLSelects": 3,
- "iSQLQueries": 6,
- "a_objSQLQuery": [
- {
- "sQuery": "SELECT * FROM table",
- "fDuration": 0.0001
}, - {
- "sQuery": "SELECT * FROM table",
- "fDuration": 0.0001
}
]
}
}
The endpoint allows to create one or many elements at once.
required | Array of objects (ezsignfolder-RequestCompound) non-empty |
{- "a_objEzsignfolder": [
- {
- "pkiEzsignfolderID": 33,
- "fkiEzsignfoldertypeID": 5,
- "fkiEzsigntsarequirementID": 1,
- "sEzsignfolderDescription": "Test eZsign Folder",
- "tEzsignfolderNote": "This is a note",
- "eEzsignfolderSendreminderfrequency": "None",
- "sEzsignfolderExternalid": "{\"ID\": 1234, \"TAGS\": [\"tag1\", \"tag2\", \"tag3\"]}"
}
]
}
{- "mPayload": {
- "a_pkiEzsignfolderID": [
- 33
]
}, - "objDebugPayload": {
- "iVersionMin": 1,
- "iVersionMax": 2,
- "a_RequiredPermission": [
- 117
], - "bVersionDeprecated": false,
- "dtResponseDate": "2020-12-31 23:59:59"
}, - "objDebug": {
- "sMemoryUsage": "11,923MB",
- "sRunTime": "0.6084s",
- "iSQLSelects": 3,
- "iSQLQueries": 6,
- "a_objSQLQuery": [
- {
- "sQuery": "SELECT * FROM table",
- "fDuration": 0.0001
}, - {
- "sQuery": "SELECT * FROM table",
- "fDuration": 0.0001
}
]
}
}
The endpoint allows to create one or many elements at once.
The array can contain simple (Just the object) or compound (The object and its child) objects.
Creating compound elements allows to reduce the multiple requests to create all child objects.
object (ezsignfolder-Request) An Ezsignfolder Object | |
object (ezsignfolder-RequestCompound) An Ezsignfolder Object and children to create a complete structure |
[- {
- "objEzsignfolder": {
- "pkiEzsignfolderID": 33,
- "fkiEzsignfoldertypeID": 5,
- "fkiEzsigntsarequirementID": 1,
- "sEzsignfolderDescription": "Test eZsign Folder",
- "tEzsignfolderNote": "This is a note",
- "eEzsignfolderSendreminderfrequency": "None",
- "sEzsignfolderExternalid": "{\"ID\": 1234, \"TAGS\": [\"tag1\", \"tag2\", \"tag3\"]}"
}, - "objEzsignfolderCompound": {
- "pkiEzsignfolderID": 33,
- "fkiEzsignfoldertypeID": 5,
- "fkiEzsigntsarequirementID": 1,
- "sEzsignfolderDescription": "Test eZsign Folder",
- "tEzsignfolderNote": "This is a note",
- "eEzsignfolderSendreminderfrequency": "None",
- "sEzsignfolderExternalid": "{\"ID\": 1234, \"TAGS\": [\"tag1\", \"tag2\", \"tag3\"]}"
}
}
]
{- "mPayload": {
- "a_pkiEzsignfolderID": [
- 33
]
}, - "objDebugPayload": {
- "iVersionMin": 1,
- "iVersionMax": 2,
- "a_RequiredPermission": [
- 117
], - "bVersionDeprecated": false,
- "dtResponseDate": "2020-12-31 23:59:59"
}, - "objDebug": {
- "sMemoryUsage": "11,923MB",
- "sRunTime": "0.6084s",
- "iSQLSelects": 3,
- "iSQLQueries": 6,
- "a_objSQLQuery": [
- {
- "sQuery": "SELECT * FROM table",
- "fDuration": 0.0001
}, - {
- "sQuery": "SELECT * FROM table",
- "fDuration": 0.0001
}
]
}
}
pkiEzsignfolderID required | integer (Field-pkiEzsignfolderID) >= 0 Example: 33 The unique ID of the Ezsignfolder |
{- "objDebugPayload": {
- "iVersionMin": 1,
- "iVersionMax": 2,
- "a_RequiredPermission": [
- 117
], - "bVersionDeprecated": false,
- "dtResponseDate": "2020-12-31 23:59:59"
}, - "objDebug": {
- "sMemoryUsage": "11,923MB",
- "sRunTime": "0.6084s",
- "iSQLSelects": 3,
- "iSQLQueries": 6,
- "a_objSQLQuery": [
- {
- "sQuery": "SELECT * FROM table",
- "fDuration": 0.0001
}, - {
- "sQuery": "SELECT * FROM table",
- "fDuration": 0.0001
}
]
}
}
a_pkiEzsignfolderID required | Array of integers (Field-pkiEzsignfolderID) [ 1 .. 500 ] items [ items >= 0 ] |
{- "a_pkiEzsignfolderID": [
- 33
]
}
{- "objDebugPayload": {
- "iVersionMin": 1,
- "iVersionMax": 2,
- "a_RequiredPermission": [
- 117
], - "bVersionDeprecated": false,
- "dtResponseDate": "2020-12-31 23:59:59"
}, - "objDebug": {
- "sMemoryUsage": "11,923MB",
- "sRunTime": "0.6084s",
- "iSQLSelects": 3,
- "iSQLQueries": 6,
- "a_objSQLQuery": [
- {
- "sQuery": "SELECT * FROM table",
- "fDuration": 0.0001
}, - {
- "sQuery": "SELECT * FROM table",
- "fDuration": 0.0001
}
]
}
}
pkiEzsignfolderID required | integer (Field-pkiEzsignfolderID) >= 0 Example: 33 The unique ID of the Ezsignfolder |
Request for POST /1/object/ezsignfolder/{pkiEzsignfolderID}/dispose
Intentionally empty for future-proofing
{ }
{- "objDebugPayload": {
- "iVersionMin": 1,
- "iVersionMax": 2,
- "a_RequiredPermission": [
- 117
], - "bVersionDeprecated": false,
- "dtResponseDate": "2020-12-31 23:59:59"
}, - "objDebug": {
- "sMemoryUsage": "11,923MB",
- "sRunTime": "0.6084s",
- "iSQLSelects": 3,
- "iSQLQueries": 6,
- "a_objSQLQuery": [
- {
- "sQuery": "SELECT * FROM table",
- "fDuration": 0.0001
}, - {
- "sQuery": "SELECT * FROM table",
- "fDuration": 0.0001
}
]
}
}
pkiEzsignfolderID required | integer (Field-pkiEzsignfolderID) >= 0 Example: 33 The unique ID of the Ezsignfolder |
a_pkiEzsigndocumentID required | Array of integers (Field-pkiEzsigndocumentID) non-empty [ items >= 0 ] |
a_eDocumentType required | Array of strings Items Enum: "Signed" "Proof" "Proofdocument" The type of document to retrieve.
|
{- "a_pkiEzsigndocumentID": [
- 97
], - "a_eDocumentType": [
- "Signed"
]
}
{- "sErrorMessage": "Invalid Signature Headers",
- "eErrorCode": "BADREQUEST"
}
pkiEzsignfolderID required | integer (Field-pkiEzsignfolderID) >= 0 Example: 33 The unique ID of the Ezsignfolder |
required | object (ezsignfolder-RequestCompound) An Ezsignfolder Object and children to create a complete structure |
{- "objEzsignfolder": {
- "pkiEzsignfolderID": 33,
- "fkiEzsignfoldertypeID": 5,
- "fkiEzsigntsarequirementID": 1,
- "sEzsignfolderDescription": "Test eZsign Folder",
- "tEzsignfolderNote": "This is a note",
- "eEzsignfolderSendreminderfrequency": "None",
- "sEzsignfolderExternalid": "{\"ID\": 1234, \"TAGS\": [\"tag1\", \"tag2\", \"tag3\"]}"
}
}
{- "objDebugPayload": {
- "iVersionMin": 1,
- "iVersionMax": 2,
- "a_RequiredPermission": [
- 117
], - "bVersionDeprecated": false,
- "dtResponseDate": "2020-12-31 23:59:59"
}, - "objDebug": {
- "sMemoryUsage": "11,923MB",
- "sRunTime": "0.6084s",
- "iSQLSelects": 3,
- "iSQLQueries": 6,
- "a_objSQLQuery": [
- {
- "sQuery": "SELECT * FROM table",
- "fDuration": 0.0001
}, - {
- "sQuery": "SELECT * FROM table",
- "fDuration": 0.0001
}
]
}
}
End prematurely all Ezsigndocument of Ezsignfolder when some signatures are still required
pkiEzsignfolderID required | integer (Field-pkiEzsignfolderID) >= 0 Example: 33 The unique ID of the Ezsignfolder |
Request for POST /1/object/ezsignfolder/{pkiEzsignfolderID}/endPrematurely
Intentionally empty for future-proofing
{ }
{- "objDebugPayload": {
- "iVersionMin": 1,
- "iVersionMax": 2,
- "a_RequiredPermission": [
- 117
], - "bVersionDeprecated": false,
- "dtResponseDate": "2020-12-31 23:59:59"
}, - "objDebug": {
- "sMemoryUsage": "11,923MB",
- "sRunTime": "0.6084s",
- "iSQLSelects": 3,
- "iSQLQueries": 6,
- "a_objSQLQuery": [
- {
- "sQuery": "SELECT * FROM table",
- "fDuration": 0.0001
}, - {
- "sQuery": "SELECT * FROM table",
- "fDuration": 0.0001
}
]
}
}
pkiEzsignfolderID required | integer (Field-pkiEzsignfolderID) >= 0 Example: 33 The unique ID of the Ezsignfolder |
a_fkiEzsignfoldersignerassociationID required | Array of integers (Field-pkiEzsignfoldersignerassociationID) non-empty unique [ items >= 0 ] |
{- "a_fkiEzsignfoldersignerassociationID": [
- 20
]
}
{- "mPayload": {
- "a_pkiEzsignfoldersignerassociationID": [
- 20
]
}, - "objDebugPayload": {
- "iVersionMin": 1,
- "iVersionMax": 2,
- "a_RequiredPermission": [
- 117
], - "bVersionDeprecated": false,
- "dtResponseDate": "2020-12-31 23:59:59"
}, - "objDebug": {
- "sMemoryUsage": "11,923MB",
- "sRunTime": "0.6084s",
- "iSQLSelects": 3,
- "iSQLQueries": 6,
- "a_objSQLQuery": [
- {
- "sQuery": "SELECT * FROM table",
- "fDuration": 0.0001
}, - {
- "sQuery": "SELECT * FROM table",
- "fDuration": 0.0001
}
]
}
}
This endpoint imports all of the Ezsigntemplates from the Ezsigntemplatepackage into the Ezsignfolder as Ezsigndocuments.
This allows to automatically apply all the Ezsigntemplateformfieldgroups and Ezsigntemplatesignatures on the newly created Ezsigndocuments in a single step.
pkiEzsignfolderID required | integer (Field-pkiEzsignfolderID) >= 0 Example: 33 The unique ID of the Ezsignfolder |
fkiEzsigntemplatepackageID required | integer (Field-pkiEzsigntemplatepackageID) >= 0 The unique ID of the Ezsigntemplatepackage |
dtEzsigndocumentDuedate required | string (Field-dtEzsigndocumentDuedate) The maximum date and time at which the Ezsigndocument can be signed. |
required | Array of objects (Custom-ImportEzsigntemplatepackageRelation-Request) |
{- "fkiEzsigntemplatepackageID": 99,
- "dtEzsigndocumentDuedate": "2020-12-31 23:59:59",
- "a_objImportEzsigntemplatepackageRelation": [
- {
- "fkiEzsigntemplatepackagesignerID": 174,
- "fkiEzsignfoldersignerassociationID": 20,
- "sEzsigntemplatepackagesignerDescription": "Customer"
}
]
}
{- "mPayload": {
- "a_objEzsigndocument": [
- {
- "pkiEzsigndocumentID": 97,
- "fkiEzsignfolderID": 33,
- "fkiEzsignfoldersignerassociationIDDeclinedtosign": 20,
- "dtEzsigndocumentDuedate": "2020-12-31 23:59:59",
- "dtEzsignformCompleted": "2020-12-31 23:59:59",
- "fkiLanguageID": 2,
- "sEzsigndocumentName": "Contract #123",
- "eEzsigndocumentStep": "Completed",
- "dtEzsigndocumentFirstsend": "2020-12-31 23:59:59",
- "dtEzsigndocumentLastsend": "2020-12-31 23:59:59",
- "iEzsigndocumentOrder": 1,
- "iEzsigndocumentPagetotal": 4,
- "iEzsigndocumentSignaturesigned": 3,
- "iEzsigndocumentSignaturetotal": 4,
- "sEzsigndocumentMD5initial": "012345678901234567890123456789AB",
- "tEzsigndocumentDeclinedtosignreason": "The conditions in the contract are different than those discuted",
- "sEzsigndocumentMD5signed": "012345678901234567890123456789AB",
- "bEzsigndocumentEzsignform": true,
- "bEzsigndocumentHassignedsignatures": true,
- "objAudit": {
- "objAuditdetailCreated": {
- "fkiUserID": 70,
- "fkiApikeyID": 99,
- "sUserLoginname": "JohnDoe",
- "sUserLastname": "Doe",
- "sUserFirstname": "John",
- "sApikeyDescriptionX": "Project X",
- "dtAuditdetailDate": "2020-12-31 23:59:59"
}, - "objAuditdetailModified": {
- "fkiUserID": 70,
- "fkiApikeyID": 99,
- "sUserLoginname": "JohnDoe",
- "sUserLastname": "Doe",
- "sUserFirstname": "John",
- "sApikeyDescriptionX": "Project X",
- "dtAuditdetailDate": "2020-12-31 23:59:59"
}
}, - "sEzsigndocumentExternalid": "{\"ID\": 1234, \"TAGS\": [\"tag1\", \"tag2\", \"tag3\"]}",
- "iEzsigndocumentEzsignsignatureattachmenttotal": 3,
- "iEzsigndocumentEzsigndiscussiontotal": 14,
- "eEzsigndocumentSteptype": "Sign",
- "iEzsigndocumentStepformtotal": 2,
- "iEzsigndocumentStepformcurrent": 1,
- "iEzsigndocumentStepsignaturetotal": 2,
- "iEzsigndocumentStepsignatureCurrent": 0,
- "a_objEzsignfoldersignerassociationstatus": [
- {
- "fkiEzsignfoldersignerassociationID": 20,
- "sEzsignfoldersignerassociationstatusLastname": "Doe",
- "sEzsignfoldersignerassociationstatusFirstname": "John",
- "sEzsignfoldersignerassociationstatusDescriptionX": "John Doe",
- "a_objEzsignsignaturestatus": [
- {
- "eEzsignsignaturestatusSteptype": "Form",
- "iEzsignsignaturestatusStep": 1,
- "iEzsignsignaturestatusTotal": 2,
- "iEzsignsignaturestatusSigned": 1
}
]
}
]
}
]
}, - "objDebugPayload": {
- "iVersionMin": 1,
- "iVersionMax": 2,
- "a_RequiredPermission": [
- 117
], - "bVersionDeprecated": false,
- "dtResponseDate": "2020-12-31 23:59:59"
}, - "objDebug": {
- "sMemoryUsage": "11,923MB",
- "sRunTime": "0.6084s",
- "iSQLSelects": 3,
- "iSQLQueries": 6,
- "a_objSQLQuery": [
- {
- "sQuery": "SELECT * FROM table",
- "fDuration": 0.0001
}, - {
- "sQuery": "SELECT * FROM table",
- "fDuration": 0.0001
}
]
}
}
pkiEzsignfolderID required | integer (Field-pkiEzsignfolderID) >= 0 Example: 33 The unique ID of the Ezsignfolder |
a_pkiEzsigndocumentID required | Array of integers (Field-pkiEzsigndocumentID) non-empty [ items >= 0 ] |
{- "a_pkiEzsigndocumentID": [
- 97
]
}
{- "objDebugPayload": {
- "iVersionMin": 1,
- "iVersionMax": 2,
- "a_RequiredPermission": [
- 117
], - "bVersionDeprecated": false,
- "dtResponseDate": "2020-12-31 23:59:59"
}, - "objDebug": {
- "sMemoryUsage": "11,923MB",
- "sRunTime": "0.6084s",
- "iSQLSelects": 3,
- "iSQLQueries": 6,
- "a_objSQLQuery": [
- {
- "sQuery": "SELECT * FROM table",
- "fDuration": 0.0001
}, - {
- "sQuery": "SELECT * FROM table",
- "fDuration": 0.0001
}
]
}
}
Return the Ezsignsignatures that can be signed and Ezsignformfieldgroups that can be filled by the current user at the current step in the process
pkiEzsignfolderID required | integer (Field-pkiEzsignfolderID) >= 0 Example: 33 The unique ID of the Ezsignfolder |
{- "mPayload": {
- "a_objEzsignsignature": [
- {
- "pkiEzsignsignatureID": 49,
- "fkiEzsigndocumentID": 97,
- "fkiEzsignfoldersignerassociationID": 20,
- "fkiEzsignsigningreasonID": 194,
- "sEzsignsigningreasonDescriptionX": "I approve this document",
- "iEzsignpagePagenumber": 1,
- "iEzsignsignatureX": 200,
- "iEzsignsignatureY": 300,
- "iEzsignsignatureHeight": 200,
- "iEzsignsignatureWidth": 200,
- "iEzsignsignatureStep": 1,
- "iEzsignsignatureStepadjusted": 1,
- "eEzsignsignatureType": "Name",
- "tEzsignsignatureTooltip": "Please sign here if you agree to the terms",
- "eEzsignsignatureTooltipposition": "TopLeft",
- "eEzsignsignatureFont": "Normal",
- "iEzsignsignatureValidationstep": 1,
- "sEzsignsignatureAttachmentdescription": "Attachment",
- "eEzsignsignatureAttachmentnamesource": "Description",
- "bEzsignsignatureRequired": true,
- "fkiEzsignfoldersignerassociationIDValidation": 20,
- "dtEzsignsignatureDate": "2020-12-31 23:59:59",
- "iEzsignsignatureattachmentCount": 7,
- "sEzsignsignatureDescription": "Montreal",
- "iEzsignsignatureMaxlength": 75,
- "eEzsignsignatureTextvalidation": "None",
- "eEzsignsignatureDependencyrequirement": "AllOf",
- "sEzsignsignatureRegexp": "/[-0-9a-zA-Z.+_]+@[-0-9a-zA-Z.+_]+.[a-zA-Z]{2,4}/",
- "objContactName": {
- "sContactFirstname": "John",
- "sContactLastname": "Doe",
- "sContactCompany": "eZmax Solutions Inc."
}, - "objContactNameDelegation": {
- "sContactFirstname": "John",
- "sContactLastname": "Doe",
- "sContactCompany": "eZmax Solutions Inc."
}, - "bEzsignsignatureCustomdate": true,
- "a_objEzsignsignaturecustomdate": [
- {
- "pkiEzsignsignaturecustomdateID": 27,
- "iEzsignsignaturecustomdateX": 200,
- "iEzsignsignaturecustomdateY": 300,
- "iEzsignsignaturecustomdateOffsetx": 200,
- "iEzsignsignaturecustomdateOffsety": 300,
- "sEzsignsignaturecustomdateFormat": "Signature date: {YYYY}/{MM}/{DD} {hh}:{mm}{ss} {Z}"
}
], - "objCreditcardtransaction": {
- "eCreditcardtypeCodename": "visa",
- "dCreditcardtransactionAmount": "167.58",
- "sCreditcardtransactionPartiallydecryptednumber": "XXXX XXXX XXXX 1234",
- "sCreditcardtransactionReferencenumber": "651447854715478415"
}, - "a_objEzsignelementdependency": [
- {
- "pkiEzsignelementdependencyID": 89,
- "fkiEzsignformfieldID": 32,
- "fkiEzsignsignatureID": 49,
- "fkiEzsignformfieldIDValidation": 32,
- "fkiEzsignformfieldgroupIDValidation": 26,
- "eEzsignelementdependencyValidation": "Value",
- "bEzsignelementdependencySelected": false,
- "eEzsignelementdependencyOperator": "eq",
- "sEzsignelementdependencyValue": "Montreal"
}
]
}
], - "a_objEzsignformfieldgroup": [
- {
- "pkiEzsignformfieldgroupID": 26,
- "fkiEzsigndocumentID": 97,
- "eEzsignformfieldgroupType": "Text",
- "eEzsignformfieldgroupSignerrequirement": "One",
- "sEzsignformfieldgroupLabel": "Allergies",
- "iEzsignformfieldgroupStep": 1,
- "sEzsignformfieldgroupDefaultvalue": "Foo",
- "iEzsignformfieldgroupFilledmin": 1,
- "iEzsignformfieldgroupFilledmax": 2,
- "bEzsignformfieldgroupReadonly": true,
- "iEzsignformfieldgroupMaxlength": 75,
- "bEzsignformfieldgroupEncrypted": true,
- "eEzsignformfieldgroupTextvalidation": "None",
- "sEzsignformfieldgroupRegexp": "/[-0-9a-zA-Z.+_]+@[-0-9a-zA-Z.+_]+.[a-zA-Z]{2,4}/",
- "tEzsignformfieldgroupTooltip": "Please enter a valid email address",
- "eEzsignformfieldgroupTooltipposition": "TopLeft",
- "a_objEzsignformfield": [
- {
- "pkiEzsignformfieldID": 32,
- "iEzsignpagePagenumber": 1,
- "sEzsignformfieldLabel": "Peanuts",
- "sEzsignformfieldValue": "Yes",
- "iEzsignformfieldX": 200,
- "iEzsignformfieldY": 300,
- "iEzsignformfieldWidth": 102,
- "iEzsignformfieldHeight": 22,
- "bEzsignformfieldAutocomplete": true,
- "bEzsignformfieldSelected": true,
- "sEzsignformfieldEnteredvalue": "Montreal",
- "eEzsignformfieldDependencyrequirement": "AllOf",
- "a_objEzsignelementdependency": [
- {
- "pkiEzsignelementdependencyID": 89,
- "fkiEzsignformfieldID": 32,
- "fkiEzsignsignatureID": 49,
- "fkiEzsignformfieldIDValidation": 32,
- "fkiEzsignformfieldgroupIDValidation": 26,
- "eEzsignelementdependencyValidation": "Value",
- "bEzsignelementdependencySelected": false,
- "eEzsignelementdependencyOperator": "eq",
- "sEzsignelementdependencyValue": "Montreal"
}
]
}
], - "a_objDropdownElement": [
- {
- "sLabel": "string",
- "sValue": "string"
}
], - "a_objEzsignformfieldgroupsigner": [
- {
- "pkiEzsignformfieldgroupsignerID": 81,
- "fkiEzsignfoldersignerassociationID": 20
}
]
}
]
}, - "objDebugPayload": {
- "iVersionMin": 1,
- "iVersionMax": 2,
- "a_RequiredPermission": [
- 117
], - "bVersionDeprecated": false,
- "dtResponseDate": "2020-12-31 23:59:59"
}, - "objDebug": {
- "sMemoryUsage": "11,923MB",
- "sRunTime": "0.6084s",
- "iSQLSelects": 3,
- "iSQLQueries": 6,
- "a_objSQLQuery": [
- {
- "sQuery": "SELECT * FROM table",
- "fDuration": 0.0001
}, - {
- "sQuery": "SELECT * FROM table",
- "fDuration": 0.0001
}
]
}
}
pkiEzsignfolderID required | integer (Field-pkiEzsignfolderID) >= 0 Example: 33 The unique ID of the Ezsignfolder |
{- "mPayload": {
- "objEzsignfolder": {
- "pkiEzsignfolderID": 33,
- "fkiEzsignfoldertypeID": 5,
- "objEzsignfoldertype": {
- "pkiEzsignfoldertypeID": 5,
- "sEzsignfoldertypeNameX": "Default",
- "bEzsignfoldertypeSendproofezsignsigner": false,
- "bEzsignfoldertypeAllowdownloadattachmentezsignsigner": false,
- "bEzsignfoldertypeAllowdownloadproofezsignsigner": false,
- "bEzsignfoldertypeDelegate": true,
- "bEzsignfoldertypeDiscussion": true,
- "bEzsignfoldertypeReassignezsignsigner": true,
- "bEzsignfoldertypeReassignuser": true
}, - "eEzsignfolderCompletion": "PerEzsigndocument",
- "sEzsignfoldertypeNameX": "string",
- "fkiBillingentityinternalID": 1,
- "sBillingentityinternalDescriptionX": "Default",
- "fkiEzsigntsarequirementID": 1,
- "sEzsigntsarequirementDescriptionX": "No",
- "sEzsignfolderDescription": "Test eZsign Folder",
- "tEzsignfolderNote": "This is a note",
- "bEzsignfolderIsdisposable": false,
- "eEzsignfolderSendreminderfrequency": "None",
- "dtEzsignfolderDelayedsenddate": "2020-12-31T23:59:59.000Z",
- "dtEzsignfolderDuedate": "2020-12-31 23:59:59",
- "dtEzsignfolderSentdate": "2020-12-31T23:59:59.000Z",
- "dtEzsignfolderScheduledarchive": "2020-12-31 23:59:59",
- "dtEzsignfolderScheduleddispose": "2020-12-31",
- "eEzsignfolderStep": "Completed",
- "dtEzsignfolderClose": "2020-12-31 23:59:59",
- "tEzsignfolderMessage": "Hi everyone,\n\nThis is the document I need you to review.\n\nCould you sign it before Monday please.\n\nBest Regards.\n\nMary",
- "objAudit": {
- "objAuditdetailCreated": {
- "fkiUserID": 70,
- "fkiApikeyID": 99,
- "sUserLoginname": "JohnDoe",
- "sUserLastname": "Doe",
- "sUserFirstname": "John",
- "sApikeyDescriptionX": "Project X",
- "dtAuditdetailDate": "2020-12-31 23:59:59"
}, - "objAuditdetailModified": {
- "fkiUserID": 70,
- "fkiApikeyID": 99,
- "sUserLoginname": "JohnDoe",
- "sUserLastname": "Doe",
- "sUserFirstname": "John",
- "sApikeyDescriptionX": "Project X",
- "dtAuditdetailDate": "2020-12-31 23:59:59"
}
}, - "sEzsignfolderExternalid": "{\"ID\": 1234, \"TAGS\": [\"tag1\", \"tag2\", \"tag3\"]}"
}
}, - "objDebugPayload": {
- "iVersionMin": 1,
- "iVersionMax": 2,
- "a_RequiredPermission": [
- 117
], - "bVersionDeprecated": false,
- "dtResponseDate": "2020-12-31 23:59:59"
}, - "objDebug": {
- "sMemoryUsage": "11,923MB",
- "sRunTime": "0.6084s",
- "iSQLSelects": 3,
- "iSQLQueries": 6,
- "a_objSQLQuery": [
- {
- "sQuery": "SELECT * FROM table",
- "fDuration": 0.0001
}, - {
- "sQuery": "SELECT * FROM table",
- "fDuration": 0.0001
}
]
}
}
pkiEzsignfolderID required | integer (Field-pkiEzsignfolderID) >= 0 Example: 33 The unique ID of the Ezsignfolder |
{- "mPayload": {
- "pkiEzsignfolderID": 33,
- "fkiEzsignfoldertypeID": 5,
- "objEzsignfoldertype": {
- "pkiEzsignfoldertypeID": 5,
- "sEzsignfoldertypeNameX": "Default",
- "bEzsignfoldertypeSendproofezsignsigner": false,
- "bEzsignfoldertypeAllowdownloadattachmentezsignsigner": false,
- "bEzsignfoldertypeAllowdownloadproofezsignsigner": false,
- "bEzsignfoldertypeDelegate": true,
- "bEzsignfoldertypeDiscussion": true,
- "bEzsignfoldertypeReassignezsignsigner": true,
- "bEzsignfoldertypeReassignuser": true
}, - "eEzsignfolderCompletion": "PerEzsigndocument",
- "sEzsignfoldertypeNameX": "string",
- "fkiBillingentityinternalID": 1,
- "sBillingentityinternalDescriptionX": "Default",
- "fkiEzsigntsarequirementID": 1,
- "sEzsigntsarequirementDescriptionX": "No",
- "sEzsignfolderDescription": "Test eZsign Folder",
- "tEzsignfolderNote": "This is a note",
- "bEzsignfolderIsdisposable": false,
- "eEzsignfolderSendreminderfrequency": "None",
- "dtEzsignfolderDelayedsenddate": "2020-12-31T23:59:59.000Z",
- "dtEzsignfolderDuedate": "2020-12-31 23:59:59",
- "dtEzsignfolderSentdate": "2020-12-31T23:59:59.000Z",
- "dtEzsignfolderScheduledarchive": "2020-12-31 23:59:59",
- "dtEzsignfolderScheduleddispose": "2020-12-31",
- "eEzsignfolderStep": "Completed",
- "dtEzsignfolderClose": "2020-12-31 23:59:59",
- "tEzsignfolderMessage": "Hi everyone,\n\nThis is the document I need you to review.\n\nCould you sign it before Monday please.\n\nBest Regards.\n\nMary",
- "objAudit": {
- "objAuditdetailCreated": {
- "fkiUserID": 70,
- "fkiApikeyID": 99,
- "sUserLoginname": "JohnDoe",
- "sUserLastname": "Doe",
- "sUserFirstname": "John",
- "sApikeyDescriptionX": "Project X",
- "dtAuditdetailDate": "2020-12-31 23:59:59"
}, - "objAuditdetailModified": {
- "fkiUserID": 70,
- "fkiApikeyID": 99,
- "sUserLoginname": "JohnDoe",
- "sUserLastname": "Doe",
- "sUserFirstname": "John",
- "sApikeyDescriptionX": "Project X",
- "dtAuditdetailDate": "2020-12-31 23:59:59"
}
}, - "sEzsignfolderExternalid": "{\"ID\": 1234, \"TAGS\": [\"tag1\", \"tag2\", \"tag3\"]}"
}, - "objDebugPayload": {
- "iVersionMin": 1,
- "iVersionMax": 2,
- "a_RequiredPermission": [
- 117
], - "bVersionDeprecated": false,
- "dtResponseDate": "2020-12-31 23:59:59"
}, - "objDebug": {
- "sMemoryUsage": "11,923MB",
- "sRunTime": "0.6084s",
- "iSQLSelects": 3,
- "iSQLQueries": 6,
- "a_objSQLQuery": [
- {
- "sQuery": "SELECT * FROM table",
- "fDuration": 0.0001
}, - {
- "sQuery": "SELECT * FROM table",
- "fDuration": 0.0001
}
]
}
}
Return the Ezsignsignatures that can be signed by the current user at the current step in the process
pkiEzsignfolderID required | integer (Field-pkiEzsignfolderID) >= 0 Example: 33 The unique ID of the Ezsignfolder |
{- "mPayload": {
- "a_eEzsignsignatureType": [
- "Name"
], - "a_objEzsignfolder": [
- {
- "pkiEzsignfolderID": 33,
- "sEzsignfolderDescription": "Test eZsign Folder",
- "a_objEzsigndocument": [
- {
- "pkiEzsigndocumentID": 97,
- "sEzsigndocumentName": "Contract #123",
- "a_objEzsignsignature": [
- {
- "pkiEzsignsignatureID": 49,
- "eEzsignsignatureType": "Name",
- "iEzsignpagePagenumber": 1
}
]
}
]
}
]
}, - "objDebugPayload": {
- "iVersionMin": 1,
- "iVersionMax": 2,
- "a_RequiredPermission": [
- 117
], - "bVersionDeprecated": false,
- "dtResponseDate": "2020-12-31 23:59:59"
}, - "objDebug": {
- "sMemoryUsage": "11,923MB",
- "sRunTime": "0.6084s",
- "iSQLSelects": 3,
- "iSQLQueries": 6,
- "a_objSQLQuery": [
- {
- "sQuery": "SELECT * FROM table",
- "fDuration": 0.0001
}, - {
- "sQuery": "SELECT * FROM table",
- "fDuration": 0.0001
}
]
}
}
pkiEzsignfolderID required | integer (Field-pkiEzsignfolderID) >= 0 Example: 33 The unique ID of the Ezsignfolder |
{- "mPayload": {
- "a_objEzsigndocument": [
- {
- "pkiEzsigndocumentID": 97,
- "fkiEzsignfolderID": 33,
- "fkiEzsignfoldersignerassociationIDDeclinedtosign": 20,
- "dtEzsigndocumentDuedate": "2020-12-31 23:59:59",
- "dtEzsignformCompleted": "2020-12-31 23:59:59",
- "fkiLanguageID": 2,
- "sEzsigndocumentName": "Contract #123",
- "eEzsigndocumentStep": "Completed",
- "dtEzsigndocumentFirstsend": "2020-12-31 23:59:59",
- "dtEzsigndocumentLastsend": "2020-12-31 23:59:59",
- "iEzsigndocumentOrder": 1,
- "iEzsigndocumentPagetotal": 4,
- "iEzsigndocumentSignaturesigned": 3,
- "iEzsigndocumentSignaturetotal": 4,
- "sEzsigndocumentMD5initial": "012345678901234567890123456789AB",
- "tEzsigndocumentDeclinedtosignreason": "The conditions in the contract are different than those discuted",
- "sEzsigndocumentMD5signed": "012345678901234567890123456789AB",
- "bEzsigndocumentEzsignform": true,
- "bEzsigndocumentHassignedsignatures": true,
- "objAudit": {
- "objAuditdetailCreated": {
- "fkiUserID": 70,
- "fkiApikeyID": 99,
- "sUserLoginname": "JohnDoe",
- "sUserLastname": "Doe",
- "sUserFirstname": "John",
- "sApikeyDescriptionX": "Project X",
- "dtAuditdetailDate": "2020-12-31 23:59:59"
}, - "objAuditdetailModified": {
- "fkiUserID": 70,
- "fkiApikeyID": 99,
- "sUserLoginname": "JohnDoe",
- "sUserLastname": "Doe",
- "sUserFirstname": "John",
- "sApikeyDescriptionX": "Project X",
- "dtAuditdetailDate": "2020-12-31 23:59:59"
}
}, - "sEzsigndocumentExternalid": "{\"ID\": 1234, \"TAGS\": [\"tag1\", \"tag2\", \"tag3\"]}",
- "iEzsigndocumentEzsignsignatureattachmenttotal": 3,
- "iEzsigndocumentEzsigndiscussiontotal": 14,
- "eEzsigndocumentSteptype": "Sign",
- "iEzsigndocumentStepformtotal": 2,
- "iEzsigndocumentStepformcurrent": 1,
- "iEzsigndocumentStepsignaturetotal": 2,
- "iEzsigndocumentStepsignatureCurrent": 0,
- "a_objEzsignfoldersignerassociationstatus": [
- {
- "fkiEzsignfoldersignerassociationID": 20,
- "sEzsignfoldersignerassociationstatusLastname": "Doe",
- "sEzsignfoldersignerassociationstatusFirstname": "John",
- "sEzsignfoldersignerassociationstatusDescriptionX": "John Doe",
- "a_objEzsignsignaturestatus": [
- {
- "eEzsignsignaturestatusSteptype": "Form",
- "iEzsignsignaturestatusStep": 1,
- "iEzsignsignaturestatusTotal": 2,
- "iEzsignsignaturestatusSigned": 1
}
]
}
]
}
]
}, - "objDebugPayload": {
- "iVersionMin": 1,
- "iVersionMax": 2,
- "a_RequiredPermission": [
- 117
], - "bVersionDeprecated": false,
- "dtResponseDate": "2020-12-31 23:59:59"
}, - "objDebug": {
- "sMemoryUsage": "11,923MB",
- "sRunTime": "0.6084s",
- "iSQLSelects": 3,
- "iSQLQueries": 6,
- "a_objSQLQuery": [
- {
- "sQuery": "SELECT * FROM table",
- "fDuration": 0.0001
}, - {
- "sQuery": "SELECT * FROM table",
- "fDuration": 0.0001
}
]
}
}
pkiEzsignfolderID required | integer (Field-pkiEzsignfolderID) >= 0 Example: 33 The unique ID of the Ezsignfolder |
{- "mPayload": {
- "a_objEzsignfoldersignerassociation": [
- {
- "pkiEzsignfoldersignerassociationID": 20,
- "fkiEzsignfolderID": 33,
- "bEzsignfoldersignerassociationDelayedsend": true,
- "bEzsignfoldersignerassociationReceivecopy": true,
- "tEzsignfoldersignerassociationMessage": "Hi John,\n\nThis is the document I need you to review.\n\nCould you sign it before Monday please.\n\nBest Regards.\n\nMary",
- "bEzsignfoldersignerassociationAllowsigninginperson": true,
- "objEzsignsignergroup": {
- "pkiEzsignsignergroupID": 27,
- "objEzsignsignergroupDescription": {
- "sEzsignsignergroupDescription1": "RH",
- "sEzsignsignergroupDescription2": "HR"
}, - "sEzsignsignergroupDescriptionX": "HR"
}, - "objUser": {
- "pkiUserID": 70,
- "fkiLanguageID": 2,
- "sUserFirstname": "John",
- "sUserLastname": "Doe",
- "sEmailAddress": "email@example.com"
}, - "objEzsignsigner": {
- "pkiEzsignsignerID": 89,
- "fkiTaxassignmentID": 1,
- "fkiSecretquestionID": 7,
- "fkiUserlogintypeID": 2,
- "sUserlogintypeDescriptionX": "Email and phone or SMS",
- "objContact": {
- "pkiContactID": 21,
- "sContactFirstname": "John",
- "sContactLastname": "Doe",
- "fkiLanguageID": 2,
- "sEmailAddress": "email@example.com",
- "sPhoneE164": "+15149901516",
- "sPhoneExtension": "123",
- "sPhoneE164Cell": "+15149901516"
}
}, - "bEzsignfoldersignerassociationHasactionableelementsCurrent": true,
- "bEzsignfoldersignerassociationHasactionableelementsFuture": true
}
]
}, - "objDebugPayload": {
- "iVersionMin": 1,
- "iVersionMax": 2,
- "a_RequiredPermission": [
- 117
], - "bVersionDeprecated": false,
- "dtResponseDate": "2020-12-31 23:59:59"
}, - "objDebug": {
- "sMemoryUsage": "11,923MB",
- "sRunTime": "0.6084s",
- "iSQLSelects": 3,
- "iSQLQueries": 6,
- "a_objSQLQuery": [
- {
- "sQuery": "SELECT * FROM table",
- "fDuration": 0.0001
}, - {
- "sQuery": "SELECT * FROM table",
- "fDuration": 0.0001
}
]
}
}
pkiEzsignfolderID required | integer (Field-pkiEzsignfolderID) >= 0 Example: 33 The unique ID of the Ezsignfolder |
{- "mPayload": {
- "objFormsDataFolder": {
- "pkiEzsignfolderID": 33,
- "sEzsignfolderDescription": "Test eZsign Folder",
- "a_objFormDataDocument": [
- {
- "pkiEzsigndocumentID": 97,
- "fkiEzsignfolderID": 33,
- "sEzsigndocumentName": "Contract #123",
- "dtModifiedDate": "2020-12-31 23:59:59",
- "a_objFormDataSigner": [
- {
- "fkiEzsignfoldersignerassociationID": 20,
- "fkiUserID": 70,
- "sContactFirstname": "John",
- "sContactLastname": "Doe",
- "a_objEzsignformfieldgroup": [
- {
- "sEzsignformfieldgroupLabel": "Allergies",
- "a_objEzsignformfield": [
- null
]
}
]
}
]
}
]
}
}, - "objDebugPayload": {
- "iVersionMin": 1,
- "iVersionMax": 2,
- "a_RequiredPermission": [
- 117
], - "bVersionDeprecated": false,
- "dtResponseDate": "2020-12-31 23:59:59"
}, - "objDebug": {
- "sMemoryUsage": "11,923MB",
- "sRunTime": "0.6084s",
- "iSQLSelects": 3,
- "iSQLQueries": 6,
- "a_objSQLQuery": [
- {
- "sQuery": "SELECT * FROM table",
- "fDuration": 0.0001
}, - {
- "sQuery": "SELECT * FROM table",
- "fDuration": 0.0001
}
]
}
}
pkiEzsignfolderID required | integer (Field-pkiEzsignfolderID) >= 0 Example: 33 The unique ID of the Ezsignfolder |
{- "mPayload": {
- "iAttachmentCount": 4
}, - "objDebugPayload": {
- "iVersionMin": 1,
- "iVersionMax": 2,
- "a_RequiredPermission": [
- 117
], - "bVersionDeprecated": false,
- "dtResponseDate": "2020-12-31 23:59:59"
}, - "objDebug": {
- "sMemoryUsage": "11,923MB",
- "sRunTime": "0.6084s",
- "iSQLSelects": 3,
- "iSQLQueries": 6,
- "a_objSQLQuery": [
- {
- "sQuery": "SELECT * FROM table",
- "fDuration": 0.0001
}, - {
- "sQuery": "SELECT * FROM table",
- "fDuration": 0.0001
}
]
}
}
pkiEzsignfolderID required | integer (Field-pkiEzsignfolderID) >= 0 Example: 33 The unique ID of the Ezsignfolder |
{- "mPayload": {
- "iCommunicationCount": 8
}, - "objDebugPayload": {
- "iVersionMin": 1,
- "iVersionMax": 2,
- "a_RequiredPermission": [
- 117
], - "bVersionDeprecated": false,
- "dtResponseDate": "2020-12-31 23:59:59"
}, - "objDebug": {
- "sMemoryUsage": "11,923MB",
- "sRunTime": "0.6084s",
- "iSQLSelects": 3,
- "iSQLQueries": 6,
- "a_objSQLQuery": [
- {
- "sQuery": "SELECT * FROM table",
- "fDuration": 0.0001
}, - {
- "sQuery": "SELECT * FROM table",
- "fDuration": 0.0001
}
]
}
}
pkiEzsignfolderID required | integer (Field-pkiEzsignfolderID) >= 0 Example: 33 The unique ID of the Ezsignfolder |
{- "mPayload": {
- "a_objCommunication": [
- {
- "pkiCommunicationID": 1,
- "dtCreatedDate": "2020-12-31 23:59:59",
- "eCommunicationDirection": "Outbound",
- "eCommunicationImportance": "Normal",
- "eCommunicationType": "Email",
- "iCommunicationrecipientCount": 8,
- "sCommunicationSubject": "This is an example of subject",
- "sCommunicationSender": "John Doe",
- "sCommunicationRecipient": "Jane Doe"
}
]
}, - "objDebugPayload": {
- "iVersionMin": 1,
- "iVersionMax": 2,
- "a_RequiredPermission": [
- 117
], - "bVersionDeprecated": false,
- "dtResponseDate": "2020-12-31 23:59:59",
- "a_Filter": {
- "a_AutoType": {
- "property1": "string",
- "property2": "string"
}, - "a_AutoTypeHaving": {
- "property1": "string",
- "property2": "string"
}, - "a_Enum": {
- "property1": {
- "property1": "string",
- "property2": "string"
}, - "property2": {
- "property1": "string",
- "property2": "string"
}
}
}, - "a_OrderBy": {
- "property1": "string",
- "property2": "string"
}, - "iRowMax": 100,
- "iRowOffset": 0
}, - "objDebug": {
- "sMemoryUsage": "11,923MB",
- "sRunTime": "0.6084s",
- "iSQLSelects": 3,
- "iSQLQueries": 6,
- "a_objSQLQuery": [
- {
- "sQuery": "SELECT * FROM table",
- "fDuration": 0.0001
}, - {
- "sQuery": "SELECT * FROM table",
- "fDuration": 0.0001
}
]
}
}
Enum values that can be filtered in query parameter sFilter:
Variable | Valid values |
---|---|
eEzsignfolderStep | Unsent Sent PartiallySigned Expired Completed Archived Disposed |
eEzsignfoldertypePrivacylevel | User Usergroup |
Advanced filters that can be used in query parameter sFilter:
Variable |
---|
fkiUserID |
sContactFirstname |
sContactLastname |
sEzsigndocumentName |
eOrderBy | string Enum: "pkiEzsignfolderID_ASC" "pkiEzsignfolderID_DESC" "sEzsignfolderDescription_ASC" "sEzsignfolderDescription_DESC" "dtCreatedDate_ASC" … 25 more Specify how you want the results to be sorted |
iRowMax | integer (Field-iRowMax) [ 1 .. 10000 ] Example: iRowMax=100 The maximum numbers of results to be returned. When the content-type is application/json there is an implicit default of 10 000. When it's application/vnd.openxmlformats-officedocument.spreadsheetml.sheet the is no implicit default so if you do not specify iRowMax, all records will be returned. |
iRowOffset | integer (Field-iRowOffset) >= 0 Default: 0 Example: iRowOffset=0 The starting element from where to start retrieving the results. For example if you started at iRowOffset=0 and asked for iRowMax=100, to get the next 100 results, you could specify iRowOffset=100&iRowMax=100, |
sFilter | string (Field-sFilter) Example: sFilter=bField1 eq true and iField2 gte 0 and iField2 lte 1000 and sField3 eq 'Other' and eField4 eq 'Paid' and sField5 like '%needle%' and iField6 in '1,2,3' and dtField7 rg '=m,=3mm' The filter to apply to the request to limit results. |
Accept-Language | string (Header-Accept-Language) Enum: "*" "en" "fr" Example: en The language of the returned content.
|
{- "mPayload": {
- "a_objEzsignfolder": [
- {
- "pkiEzsignfolderID": 33,
- "fkiEzsignfoldertypeID": 5,
- "eEzsignfoldertypePrivacylevel": "User",
- "sEzsignfoldertypeNameX": "Default",
- "sEzsignfolderDescription": "Test eZsign Folder",
- "eEzsignfolderStep": "Completed",
- "dtCreatedDate": "2020-12-31 23:59:59",
- "dtEzsignfolderDelayedsenddate": "2020-12-31T23:59:59.000Z",
- "dtEzsignfolderSentdate": "2020-12-31T23:59:59.000Z",
- "dtEzsignfolderDuedate": "2020-12-31 23:59:59",
- "iEzsigndocument": 0,
- "iEzsigndocumentEdm": 0,
- "iEzsignsignature": 0,
- "iEzsignsignatureSigned": 0,
- "iEzsignformfieldgroup": 0,
- "iEzsignformfieldgroupCompleted": 0,
- "bEzsignformHasdependencies": true,
- "dEzsignfolderCompletedpercentage": "string"
}
], - "iRowReturned": 100,
- "iRowFiltered": 533
}, - "objDebugPayload": {
- "iVersionMin": 1,
- "iVersionMax": 2,
- "a_RequiredPermission": [
- 117
], - "bVersionDeprecated": false,
- "dtResponseDate": "2020-12-31 23:59:59",
- "a_Filter": {
- "a_AutoType": {
- "property1": "string",
- "property2": "string"
}, - "a_AutoTypeHaving": {
- "property1": "string",
- "property2": "string"
}, - "a_Enum": {
- "property1": {
- "property1": "string",
- "property2": "string"
}, - "property2": {
- "property1": "string",
- "property2": "string"
}
}
}, - "a_OrderBy": {
- "property1": "string",
- "property2": "string"
}, - "iRowMax": 100,
- "iRowOffset": 0
}, - "objDebug": {
- "sMemoryUsage": "11,923MB",
- "sRunTime": "0.6084s",
- "iSQLSelects": 3,
- "iSQLQueries": 6,
- "a_objSQLQuery": [
- {
- "sQuery": "SELECT * FROM table",
- "fDuration": 0.0001
}, - {
- "sQuery": "SELECT * FROM table",
- "fDuration": 0.0001
}
]
}
}
pkiEzsignfolderID required | integer (Field-pkiEzsignfolderID) >= 0 Example: 33 The unique ID of the Ezsignfolder |
{- "mPayload": {
- "a_objAttachmentdocumenttype": [
- {
- "eAttachmentDocumenttype": "Adjustment",
- "a_objAttachment": [
- {
- "pkiAttachmentID": 1,
- "fkiComputerID": 249,
- "fkiAdjustmentID": 202,
- "fkiAgentID": 1,
- "fkiBankaccountID": 46,
- "fkiBrokerID": 26,
- "fkiCommissionadvanceID": 115,
- "fkiCommunicationID": 1,
- "fkiCustomerID": 18,
- "fkiCustomertemplateID": 152,
- "fkiDepositID": 54,
- "fkiDeposittransitchequeID": 251,
- "fkiElectronicfundstransferID": 1262,
- "fkiEmployeeID": 31,
- "fkiExternalbrokerID": 1,
- "fkiEzcomadvanceserverID": 238,
- "fkiEzcomcompanyID": 170,
- "fkiEzsigndocumentID": 97,
- "fkiGhacqcontractID": 217,
- "fkiInscriptionID": 17,
- "fkiInscriptiontempID": 2445,
- "fkiInscriptionnotauthenticatedID": 24,
- "fkiInvoiceID": 1,
- "fkiBuyercontractID": 38,
- "fkiFranchisebrokerID": 61,
- "fkiFranchiseagenceID": 117,
- "fkiFranchiseofficeID": 50,
- "fkiFranchisefranchiseID": 156,
- "fkiFranchisecomplaintID": 24,
- "fkiLeadID": 117,
- "fkiMarketingprogramID": 178,
- "fkiMarketingfollowID": 45,
- "fkiNotaryID": 1,
- "fkiOfficetaxreportID": 200,
- "fkiOtherincomeID": 142,
- "fkiPaymentpreparationID": 124,
- "fkiPurchaseID": 155,
- "fkiSalaryID": 73,
- "fkiSupplierID": 1,
- "fkiTranqcontractID": 39,
- "fkiTemplateID": 232,
- "fkiInscriptionchecklistID": 191,
- "fkiFolderID": 81,
- "fkiRejectedoffertopurchaseID": 532,
- "fkiDisclosureID": 51,
- "fkiReconciliationID": 140,
- "fkiEzsigndocumentIDReference": 97,
- "eAttachmentDocumenttype": "Adjustment",
- "sAttachmentName": "Document.pdf",
- "eAttachmentPrivacy": "All",
- "fkiUserIDSpecific": 70,
- "eAttachmentType": "Other",
- "iAttachmentSize": 277465200,
- "iAttachmentEDMmoduleflag": 65,
- "sAttachmentMD5": "2cb29026e8a93c930e71598579400db6",
- "bAttachmentDeleted": false,
- "bAttachmentValid": true,
- "eAttachmentVerified": "No",
- "tAttachmentRejectioncomment": "Unreadable",
- "fkiUserIDOwner": 70,
- "objAudit": {
- "objAuditdetailCreated": {
- "fkiUserID": 70,
- "fkiApikeyID": 99,
- "sUserLoginname": "JohnDoe",
- "sUserLastname": "Doe",
- "sUserFirstname": "John",
- "sApikeyDescriptionX": "Project X",
- "dtAuditdetailDate": "2020-12-31 23:59:59"
}, - "objAuditdetailModified": {
- "fkiUserID": 70,
- "fkiApikeyID": 99,
- "sUserLoginname": "JohnDoe",
- "sUserLastname": "Doe",
- "sUserFirstname": "John",
- "sApikeyDescriptionX": "Project X",
- "dtAuditdetailDate": "2020-12-31 23:59:59"
}
}, - "objAttachmentProof": {
- "pkiAttachmentID": 1,
- "fkiComputerID": 249,
- "fkiAdjustmentID": 202,
- "fkiAgentID": 1,
- "fkiBankaccountID": 46,
- "fkiBrokerID": 26,
- "fkiCommissionadvanceID": 115,
- "fkiCommunicationID": 1,
- "fkiCustomerID": 18,
- "fkiCustomertemplateID": 152,
- "fkiDepositID": 54,
- "fkiDeposittransitchequeID": 251,
- "fkiElectronicfundstransferID": 1262,
- "fkiEmployeeID": 31,
- "fkiExternalbrokerID": 1,
- "fkiEzcomadvanceserverID": 238,
- "fkiEzcomcompanyID": 170,
- "fkiEzsigndocumentID": 97,
- "fkiGhacqcontractID": 217,
- "fkiInscriptionID": 17,
- "fkiInscriptiontempID": 2445,
- "fkiInscriptionnotauthenticatedID": 24,
- "fkiInvoiceID": 1,
- "fkiBuyercontractID": 38,
- "fkiFranchisebrokerID": 61,
- "fkiFranchiseagenceID": 117,
- "fkiFranchiseofficeID": 50,
- "fkiFranchisefranchiseID": 156,
- "fkiFranchisecomplaintID": 24,
- "fkiLeadID": 117,
- "fkiMarketingprogramID": 178,
- "fkiMarketingfollowID": 45,
- "fkiNotaryID": 1,
- "fkiOfficetaxreportID": 200,
- "fkiOtherincomeID": 142,
- "fkiPaymentpreparationID": 124,
- "fkiPurchaseID": 155,
- "fkiSalaryID": 73,
- "fkiSupplierID": 1,
- "fkiTranqcontractID": 39,
- "fkiTemplateID": 232,
- "fkiInscriptionchecklistID": 191,
- "fkiFolderID": 81,
- "fkiRejectedoffertopurchaseID": 532,
- "fkiDisclosureID": 51,
- "fkiReconciliationID": 140,
- "fkiEzsigndocumentIDReference": 97,
- "eAttachmentDocumenttype": "Adjustment",
- "sAttachmentName": "Document.pdf",
- "eAttachmentPrivacy": "All",
- "fkiUserIDSpecific": 70,
- "eAttachmentType": "Other",
- "iAttachmentSize": 277465200,
- "iAttachmentEDMmoduleflag": 65,
- "sAttachmentMD5": "2cb29026e8a93c930e71598579400db6",
- "bAttachmentDeleted": false,
- "bAttachmentValid": true,
- "eAttachmentVerified": "No",
- "tAttachmentRejectioncomment": "Unreadable",
- "fkiUserIDOwner": 70,
- "objAudit": {
- "objAuditdetailCreated": {
- "fkiUserID": 70,
- "fkiApikeyID": 99,
- "sUserLoginname": "JohnDoe",
- "sUserLastname": "Doe",
- "sUserFirstname": "John",
- "sApikeyDescriptionX": "Project X",
- "dtAuditdetailDate": "2020-12-31 23:59:59"
}, - "objAuditdetailModified": {
- "fkiUserID": 70,
- "fkiApikeyID": 99,
- "sUserLoginname": "JohnDoe",
- "sUserLastname": "Doe",
- "sUserFirstname": "John",
- "sApikeyDescriptionX": "Project X",
- "dtAuditdetailDate": "2020-12-31 23:59:59"
}
}
}, - "objAttachmentProofdocument": {
- "pkiAttachmentID": 1,
- "fkiComputerID": 249,
- "fkiAdjustmentID": 202,
- "fkiAgentID": 1,
- "fkiBankaccountID": 46,
- "fkiBrokerID": 26,
- "fkiCommissionadvanceID": 115,
- "fkiCommunicationID": 1,
- "fkiCustomerID": 18,
- "fkiCustomertemplateID": 152,
- "fkiDepositID": 54,
- "fkiDeposittransitchequeID": 251,
- "fkiElectronicfundstransferID": 1262,
- "fkiEmployeeID": 31,
- "fkiExternalbrokerID": 1,
- "fkiEzcomadvanceserverID": 238,
- "fkiEzcomcompanyID": 170,
- "fkiEzsigndocumentID": 97,
- "fkiGhacqcontractID": 217,
- "fkiInscriptionID": 17,
- "fkiInscriptiontempID": 2445,
- "fkiInscriptionnotauthenticatedID": 24,
- "fkiInvoiceID": 1,
- "fkiBuyercontractID": 38,
- "fkiFranchisebrokerID": 61,
- "fkiFranchiseagenceID": 117,
- "fkiFranchiseofficeID": 50,
- "fkiFranchisefranchiseID": 156,
- "fkiFranchisecomplaintID": 24,
- "fkiLeadID": 117,
- "fkiMarketingprogramID": 178,
- "fkiMarketingfollowID": 45,
- "fkiNotaryID": 1,
- "fkiOfficetaxreportID": 200,
- "fkiOtherincomeID": 142,
- "fkiPaymentpreparationID": 124,
- "fkiPurchaseID": 155,
- "fkiSalaryID": 73,
- "fkiSupplierID": 1,
- "fkiTranqcontractID": 39,
- "fkiTemplateID": 232,
- "fkiInscriptionchecklistID": 191,
- "fkiFolderID": 81,
- "fkiRejectedoffertopurchaseID": 532,
- "fkiDisclosureID": 51,
- "fkiReconciliationID": 140,
- "fkiEzsigndocumentIDReference": 97,
- "eAttachmentDocumenttype": "Adjustment",
- "sAttachmentName": "Document.pdf",
- "eAttachmentPrivacy": "All",
- "fkiUserIDSpecific": 70,
- "eAttachmentType": "Other",
- "iAttachmentSize": 277465200,
- "iAttachmentEDMmoduleflag": 65,
- "sAttachmentMD5": "2cb29026e8a93c930e71598579400db6",
- "bAttachmentDeleted": false,
- "bAttachmentValid": true,
- "eAttachmentVerified": "No",
- "tAttachmentRejectioncomment": "Unreadable",
- "fkiUserIDOwner": 70,
- "objAudit": {
- "objAuditdetailCreated": {
- "fkiUserID": 70,
- "fkiApikeyID": 99,
- "sUserLoginname": "JohnDoe",
- "sUserLastname": "Doe",
- "sUserFirstname": "John",
- "sApikeyDescriptionX": "Project X",
- "dtAuditdetailDate": "2020-12-31 23:59:59"
}, - "objAuditdetailModified": {
- "fkiUserID": 70,
- "fkiApikeyID": 99,
- "sUserLoginname": "JohnDoe",
- "sUserLastname": "Doe",
- "sUserFirstname": "John",
- "sApikeyDescriptionX": "Project X",
- "dtAuditdetailDate": "2020-12-31 23:59:59"
}
}
}, - "a_objAttachmentAttachment": [
- {
- "pkiAttachmentID": 1,
- "fkiComputerID": 249,
- "fkiAdjustmentID": 202,
- "fkiAgentID": 1,
- "fkiBankaccountID": 46,
- "fkiBrokerID": 26,
- "fkiCommissionadvanceID": 115,
- "fkiCommunicationID": 1,
- "fkiCustomerID": 18,
- "fkiCustomertemplateID": 152,
- "fkiDepositID": 54,
- "fkiDeposittransitchequeID": 251,
- "fkiElectronicfundstransferID": 1262,
- "fkiEmployeeID": 31,
- "fkiExternalbrokerID": 1,
- "fkiEzcomadvanceserverID": 238,
- "fkiEzcomcompanyID": 170,
- "fkiEzsigndocumentID": 97,
- "fkiGhacqcontractID": 217,
- "fkiInscriptionID": 17,
- "fkiInscriptiontempID": 2445,
- "fkiInscriptionnotauthenticatedID": 24,
- "fkiInvoiceID": 1,
- "fkiBuyercontractID": 38,
- "fkiFranchisebrokerID": 61,
- "fkiFranchiseagenceID": 117,
- "fkiFranchiseofficeID": 50,
- "fkiFranchisefranchiseID": 156,
- "fkiFranchisecomplaintID": 24,
- "fkiLeadID": 117,
- "fkiMarketingprogramID": 178,
- "fkiMarketingfollowID": 45,
- "fkiNotaryID": 1,
- "fkiOfficetaxreportID": 200,
- "fkiOtherincomeID": 142,
- "fkiPaymentpreparationID": 124,
- "fkiPurchaseID": 155,
- "fkiSalaryID": 73,
- "fkiSupplierID": 1,
- "fkiTranqcontractID": 39,
- "fkiTemplateID": 232,
- "fkiInscriptionchecklistID": 191,
- "fkiFolderID": 81,
- "fkiRejectedoffertopurchaseID": 532,
- "fkiDisclosureID": 51,
- "fkiReconciliationID": 140,
- "fkiEzsigndocumentIDReference": 97,
- "eAttachmentDocumenttype": "Adjustment",
- "sAttachmentName": "Document.pdf",
- "eAttachmentPrivacy": "All",
- "fkiUserIDSpecific": 70,
- "eAttachmentType": "Other",
- "iAttachmentSize": 277465200,
- "iAttachmentEDMmoduleflag": 65,
- "sAttachmentMD5": "2cb29026e8a93c930e71598579400db6",
- "bAttachmentDeleted": false,
- "bAttachmentValid": true,
- "eAttachmentVerified": "No",
- "tAttachmentRejectioncomment": "Unreadable",
- "fkiUserIDOwner": 70,
- "objAudit": {
- "objAuditdetailCreated": {
- "fkiUserID": null,
- "fkiApikeyID": null,
- "sUserLoginname": null,
- "sUserLastname": null,
- "sUserFirstname": null,
- "sApikeyDescriptionX": null,
- "dtAuditdetailDate": null
}, - "objAuditdetailModified": {
- "fkiUserID": null,
- "fkiApikeyID": null,
- "sUserLoginname": null,
- "sUserLastname": null,
- "sUserFirstname": null,
- "sApikeyDescriptionX": null,
- "dtAuditdetailDate": null
}
}
}
], - "a_objAttachmentVersion": [
- {
- "pkiAttachmentID": 1,
- "fkiComputerID": 249,
- "fkiAdjustmentID": 202,
- "fkiAgentID": 1,
- "fkiBankaccountID": 46,
- "fkiBrokerID": 26,
- "fkiCommissionadvanceID": 115,
- "fkiCommunicationID": 1,
- "fkiCustomerID": 18,
- "fkiCustomertemplateID": 152,
- "fkiDepositID": 54,
- "fkiDeposittransitchequeID": 251,
- "fkiElectronicfundstransferID": 1262,
- "fkiEmployeeID": 31,
- "fkiExternalbrokerID": 1,
- "fkiEzcomadvanceserverID": 238,
- "fkiEzcomcompanyID": 170,
- "fkiEzsigndocumentID": 97,
- "fkiGhacqcontractID": 217,
- "fkiInscriptionID": 17,
- "fkiInscriptiontempID": 2445,
- "fkiInscriptionnotauthenticatedID": 24,
- "fkiInvoiceID": 1,
- "fkiBuyercontractID": 38,
- "fkiFranchisebrokerID": 61,
- "fkiFranchiseagenceID": 117,
- "fkiFranchiseofficeID": 50,
- "fkiFranchisefranchiseID": 156,
- "fkiFranchisecomplaintID": 24,
- "fkiLeadID": 117,
- "fkiMarketingprogramID": 178,
- "fkiMarketingfollowID": 45,
- "fkiNotaryID": 1,
- "fkiOfficetaxreportID": 200,
- "fkiOtherincomeID": 142,
- "fkiPaymentpreparationID": 124,
- "fkiPurchaseID": 155,
- "fkiSalaryID": 73,
- "fkiSupplierID": 1,
- "fkiTranqcontractID": 39,
- "fkiTemplateID": 232,
- "fkiInscriptionchecklistID": 191,
- "fkiFolderID": 81,
- "fkiRejectedoffertopurchaseID": 532,
- "fkiDisclosureID": 51,
- "fkiReconciliationID": 140,
- "fkiEzsigndocumentIDReference": 97,
- "eAttachmentDocumenttype": "Adjustment",
- "sAttachmentName": "Document.pdf",
- "eAttachmentPrivacy": "All",
- "fkiUserIDSpecific": 70,
- "eAttachmentType": "Other",
- "iAttachmentSize": 277465200,
- "iAttachmentEDMmoduleflag": 65,
- "sAttachmentMD5": "2cb29026e8a93c930e71598579400db6",
- "bAttachmentDeleted": false,
- "bAttachmentValid": true,
- "eAttachmentVerified": "No",
- "tAttachmentRejectioncomment": "Unreadable",
- "fkiUserIDOwner": 70,
- "objAudit": {
- "objAuditdetailCreated": {
- "fkiUserID": null,
- "fkiApikeyID": null,
- "sUserLoginname": null,
- "sUserLastname": null,
- "sUserFirstname": null,
- "sApikeyDescriptionX": null,
- "dtAuditdetailDate": null
}, - "objAuditdetailModified": {
- "fkiUserID": null,
- "fkiApikeyID": null,
- "sUserLoginname": null,
- "sUserLastname": null,
- "sUserFirstname": null,
- "sApikeyDescriptionX": null,
- "dtAuditdetailDate": null
}
}
}
]
}
]
}
]
}, - "objDebugPayload": {
- "iVersionMin": 1,
- "iVersionMax": 2,
- "a_RequiredPermission": [
- 117
], - "bVersionDeprecated": false,
- "dtResponseDate": "2020-12-31 23:59:59"
}, - "objDebug": {
- "sMemoryUsage": "11,923MB",
- "sRunTime": "0.6084s",
- "iSQLSelects": 3,
- "iSQLQueries": 6,
- "a_objSQLQuery": [
- {
- "sQuery": "SELECT * FROM table",
- "fDuration": 0.0001
}, - {
- "sQuery": "SELECT * FROM table",
- "fDuration": 0.0001
}
]
}
}
pkiEzsignfolderID required | integer (Field-pkiEzsignfolderID) >= 0 Example: 33 The unique ID of the Ezsignfolder |
{- "mPayload": {
- "a_objCommunicationrecipientsgroup": [
- {
- "sCommunicationrecipientsgroupLabel": "string",
- "a_objCommunicationrecipientsrecipient": [
- {
- "fkiAgentID": 1,
- "fkiBrokerID": 26,
- "fkiContactID": 21,
- "fkiCustomerID": 18,
- "fkiEmployeeID": 31,
- "fkiEzsignsignerID": 89,
- "fkiFranchiseofficeID": 50,
- "fkiUserID": 70,
- "fkiAgentincorporationID": 1,
- "fkiAssistantID": 1,
- "fkiExternalbrokerID": 1,
- "fkiEzcomagentID": 1,
- "fkiNotaryID": 1,
- "fkiRewardmemberID": 1,
- "fkiSupplierID": 1,
- "eCommunicationrecipientsrecipientObjecttype": "User",
- "objContactName": {
- "sContactFirstname": "John",
- "sContactLastname": "Doe",
- "sContactCompany": "eZmax Solutions Inc."
}, - "objEmail": {
- "pkiEmailID": 22,
- "fkiEmailtypeID": 1,
- "sEmailAddress": "email@example.com"
}, - "objPhoneFax": {
- "pkiPhoneID": 1,
- "fkiPhonetypeID": 1,
- "ePhoneType": "Local",
- "sPhoneE164": "+15149901516",
- "sPhoneExtension": "123",
- "bPhoneInternational": true
}, - "objPhoneSMS": {
- "pkiPhoneID": 1,
- "fkiPhonetypeID": 1,
- "ePhoneType": "Local",
- "sPhoneE164": "+15149901516",
- "sPhoneExtension": "123",
- "bPhoneInternational": true
}
}
]
}
]
}, - "objDebugPayload": {
- "iVersionMin": 1,
- "iVersionMax": 2,
- "a_RequiredPermission": [
- 117
], - "bVersionDeprecated": false,
- "dtResponseDate": "2020-12-31 23:59:59"
}, - "objDebug": {
- "sMemoryUsage": "11,923MB",
- "sRunTime": "0.6084s",
- "iSQLSelects": 3,
- "iSQLQueries": 6,
- "a_objSQLQuery": [
- {
- "sQuery": "SELECT * FROM table",
- "fDuration": 0.0001
}, - {
- "sQuery": "SELECT * FROM table",
- "fDuration": 0.0001
}
]
}
}
pkiEzsignfolderID required | integer (Field-pkiEzsignfolderID) >= 0 Example: 33 The unique ID of the Ezsignfolder |
{- "mPayload": {
- "a_objCommunicationsenders": [
- {
- "fkiAgentID": 1,
- "fkiBrokerID": 26,
- "fkiUserID": 70,
- "fkiMailboxsharedID": 47,
- "fkiPhonelinesharedID": 47,
- "eCommunicationsenderObjecttype": "User",
- "objContactName": {
- "sContactFirstname": "John",
- "sContactLastname": "Doe",
- "sContactCompany": "eZmax Solutions Inc."
}, - "objEmail": {
- "pkiEmailID": 22,
- "fkiEmailtypeID": 1,
- "sEmailAddress": "email@example.com"
}, - "objPhoneFax": {
- "pkiPhoneID": 1,
- "fkiPhonetypeID": 1,
- "ePhoneType": "Local",
- "sPhoneE164": "+15149901516",
- "sPhoneExtension": "123",
- "bPhoneInternational": true
}, - "objPhoneSMS": {
- "pkiPhoneID": 1,
- "fkiPhonetypeID": 1,
- "ePhoneType": "Local",
- "sPhoneE164": "+15149901516",
- "sPhoneExtension": "123",
- "bPhoneInternational": true
}
}
]
}, - "objDebugPayload": {
- "iVersionMin": 1,
- "iVersionMax": 2,
- "a_RequiredPermission": [
- 117
], - "bVersionDeprecated": false,
- "dtResponseDate": "2020-12-31 23:59:59"
}, - "objDebug": {
- "sMemoryUsage": "11,923MB",
- "sRunTime": "0.6084s",
- "iSQLSelects": 3,
- "iSQLQueries": 6,
- "a_objSQLQuery": [
- {
- "sQuery": "SELECT * FROM table",
- "fDuration": 0.0001
}, - {
- "sQuery": "SELECT * FROM table",
- "fDuration": 0.0001
}
]
}
}
pkiEzsignfolderID required | integer (Field-pkiEzsignfolderID) >= 0 Example: 33 The unique ID of the Ezsignfolder |
tEzsignfolderMessage | string (Field-tEzsignfolderMessage) A custom text message that will be added to the email sent. |
dtEzsignfolderDelayedsenddate | string (Field-dtEzsignfolderDelayedsenddate) The date and time at which the Ezsignfolder will be sent in the future. |
a_fkiEzsignfoldersignerassociationID required | Array of integers (Field-pkiEzsignfoldersignerassociationID) [ items >= 0 ] |
{- "tEzsignfolderMessage": "Hi everyone,\n\nThis is the document I need you to review.\n\nCould you sign it before Monday please.\n\nBest Regards.\n\nMary",
- "dtEzsignfolderDelayedsenddate": "2020-12-31T23:59:59.000Z",
- "a_fkiEzsignfoldersignerassociationID": [
- 20
]
}
{- "objDebugPayload": {
- "iVersionMin": 1,
- "iVersionMax": 2,
- "a_RequiredPermission": [
- 117
], - "bVersionDeprecated": false,
- "dtResponseDate": "2020-12-31 23:59:59"
}, - "objDebug": {
- "sMemoryUsage": "11,923MB",
- "sRunTime": "0.6084s",
- "iSQLSelects": 3,
- "iSQLQueries": 6,
- "a_objSQLQuery": [
- {
- "sQuery": "SELECT * FROM table",
- "fDuration": 0.0001
}, - {
- "sQuery": "SELECT * FROM table",
- "fDuration": 0.0001
}
]
}
}
pkiEzsignfolderID required | integer (Field-pkiEzsignfolderID) >= 0 Example: 33 The unique ID of the Ezsignfolder |
tExtraMessage required | string (Field-tExtraMessage) A custom text message that will be added to the email sent. |
{- "tExtraMessage": "Hi John,\n\nThis is the document I need you to review.\n\nCould you sign it before Monday please.\n\nBest Regards.\n\nMary"
}
{- "objDebugPayload": {
- "iVersionMin": 1,
- "iVersionMax": 2,
- "a_RequiredPermission": [
- 117
], - "bVersionDeprecated": false,
- "dtResponseDate": "2020-12-31 23:59:59"
}, - "objDebug": {
- "sMemoryUsage": "11,923MB",
- "sRunTime": "0.6084s",
- "iSQLSelects": 3,
- "iSQLQueries": 6,
- "a_objSQLQuery": [
- {
- "sQuery": "SELECT * FROM table",
- "fDuration": 0.0001
}, - {
- "sQuery": "SELECT * FROM table",
- "fDuration": 0.0001
}
]
}
}
Once an Ezsignfolder has been sent to signatories, it cannot be modified.
Using this endpoint, you can unsend the Ezsignfolder and make it modifiable again.
Signatories will receive an email informing them the signature process was aborted and they might receive a new invitation to sign.
⚠️ Warning: Any signature previously made by signatories on "Non-completed" Ezsigndocuments will be lost.
pkiEzsignfolderID required | integer (Field-pkiEzsignfolderID) >= 0 Example: 33 The unique ID of the Ezsignfolder |
Request for POST /1/object/ezsignfolder/{pkiEzsignfolderID}/unsend
Intentionally empty for future-proofing
{ }
{- "objDebugPayload": {
- "iVersionMin": 1,
- "iVersionMax": 2,
- "a_RequiredPermission": [
- 117
], - "bVersionDeprecated": false,
- "dtResponseDate": "2020-12-31 23:59:59"
}, - "objDebug": {
- "sMemoryUsage": "11,923MB",
- "sRunTime": "0.6084s",
- "iSQLSelects": 3,
- "iSQLQueries": 6,
- "a_objSQLQuery": [
- {
- "sQuery": "SELECT * FROM table",
- "fDuration": 0.0001
}, - {
- "sQuery": "SELECT * FROM table",
- "fDuration": 0.0001
}
]
}
}
This Webhook will be called when the last signature on the last Ezsigndocument from the folder is made.
required | object (ezsignfolder-Response) An Ezsignfolder Object |
required | object (Custom-Webhook-Response) A custom Webhook object |
required | Array of objects (attempt-ResponseCompound) An array containing details of previous attempts that were made to deliver the message. The array is empty if it's the first attempt. |
{- "objEzsignfolder": {
- "pkiEzsignfolderID": 33,
- "fkiEzsignfoldertypeID": 5,
- "objEzsignfoldertype": {
- "pkiEzsignfoldertypeID": 5,
- "sEzsignfoldertypeNameX": "Default",
- "bEzsignfoldertypeSendproofezsignsigner": false,
- "bEzsignfoldertypeAllowdownloadattachmentezsignsigner": false,
- "bEzsignfoldertypeAllowdownloadproofezsignsigner": false,
- "bEzsignfoldertypeDelegate": true,
- "bEzsignfoldertypeDiscussion": true,
- "bEzsignfoldertypeReassignezsignsigner": true,
- "bEzsignfoldertypeReassignuser": true
}, - "eEzsignfolderCompletion": "PerEzsigndocument",
- "sEzsignfoldertypeNameX": "string",
- "fkiBillingentityinternalID": 1,
- "sBillingentityinternalDescriptionX": "Default",
- "fkiEzsigntsarequirementID": 1,
- "sEzsigntsarequirementDescriptionX": "No",
- "sEzsignfolderDescription": "Test eZsign Folder",
- "tEzsignfolderNote": "This is a note",
- "bEzsignfolderIsdisposable": false,
- "eEzsignfolderSendreminderfrequency": "None",
- "dtEzsignfolderDelayedsenddate": "2020-12-31T23:59:59.000Z",
- "dtEzsignfolderDuedate": "2020-12-31 23:59:59",
- "dtEzsignfolderSentdate": "2020-12-31T23:59:59.000Z",
- "dtEzsignfolderScheduledarchive": "2020-12-31 23:59:59",
- "dtEzsignfolderScheduleddispose": "2020-12-31",
- "eEzsignfolderStep": "Completed",
- "dtEzsignfolderClose": "2020-12-31 23:59:59",
- "tEzsignfolderMessage": "Hi everyone,\n\nThis is the document I need you to review.\n\nCould you sign it before Monday please.\n\nBest Regards.\n\nMary",
- "objAudit": {
- "objAuditdetailCreated": {
- "fkiUserID": 70,
- "fkiApikeyID": 99,
- "sUserLoginname": "JohnDoe",
- "sUserLastname": "Doe",
- "sUserFirstname": "John",
- "sApikeyDescriptionX": "Project X",
- "dtAuditdetailDate": "2020-12-31 23:59:59"
}, - "objAuditdetailModified": {
- "fkiUserID": 70,
- "fkiApikeyID": 99,
- "sUserLoginname": "JohnDoe",
- "sUserLastname": "Doe",
- "sUserFirstname": "John",
- "sApikeyDescriptionX": "Project X",
- "dtAuditdetailDate": "2020-12-31 23:59:59"
}
}, - "sEzsignfolderExternalid": "{\"ID\": 1234, \"TAGS\": [\"tag1\", \"tag2\", \"tag3\"]}"
}, - "objWebhook": {
- "pksCustomerCode": "demo",
- "bWebhookTest": true,
- "pkiWebhookID": 77,
- "sWebhookDescription": "Import into our system",
- "fkiEzsignfoldertypeID": 5,
- "sEzsignfoldertypeNameX": "Default",
- "eWebhookModule": "Ezsign",
- "eWebhookEzsignevent": "FolderCompleted",
- "eWebhookManagementevent": "UserCreated",
- "sWebhookEmailfailed": "email@example.com",
- "sWebhookApikey": "string",
- "sWebhookSecret": "string",
- "bWebhookIsactive": true,
- "bWebhookIssigned": true,
- "bWebhookSkipsslvalidation": false,
- "objAudit": {
- "objAuditdetailCreated": {
- "fkiUserID": 70,
- "fkiApikeyID": 99,
- "sUserLoginname": "JohnDoe",
- "sUserLastname": "Doe",
- "sUserFirstname": "John",
- "sApikeyDescriptionX": "Project X",
- "dtAuditdetailDate": "2020-12-31 23:59:59"
}, - "objAuditdetailModified": {
- "fkiUserID": 70,
- "fkiApikeyID": 99,
- "sUserLoginname": "JohnDoe",
- "sUserLastname": "Doe",
- "sUserFirstname": "John",
- "sApikeyDescriptionX": "Project X",
- "dtAuditdetailDate": "2020-12-31 23:59:59"
}
}, - "sWebhookEvent": "Ezsign-DocumentCompleted",
- "a_objWebhookheader": [
- {
- "pkiWebhookheaderID": 77,
- "fkiWebhookID": 77,
- "sWebhookheaderName": "Authorization",
- "sWebhookheaderValue": "d75fca0e12b6c671e7f6d4df0cf59e4e"
}
]
}, - "a_objAttempt": [
- {
- "dtAttemptStart": "2020-12-31 23:59:59",
- "sAttemptResult": "Success",
- "iAttemptDuration": 1
}
]
}
This Webhook will be called when we dispose Ezsignfolder.
required | object (ezsignfolder-Response) An Ezsignfolder Object |
required | object (Custom-Webhook-Response) A custom Webhook object |
required | Array of objects (attempt-ResponseCompound) An array containing details of previous attempts that were made to deliver the message. The array is empty if it's the first attempt. |
{- "objEzsignfolder": {
- "pkiEzsignfolderID": 33,
- "fkiEzsignfoldertypeID": 5,
- "objEzsignfoldertype": {
- "pkiEzsignfoldertypeID": 5,
- "sEzsignfoldertypeNameX": "Default",
- "bEzsignfoldertypeSendproofezsignsigner": false,
- "bEzsignfoldertypeAllowdownloadattachmentezsignsigner": false,
- "bEzsignfoldertypeAllowdownloadproofezsignsigner": false,
- "bEzsignfoldertypeDelegate": true,
- "bEzsignfoldertypeDiscussion": true,
- "bEzsignfoldertypeReassignezsignsigner": true,
- "bEzsignfoldertypeReassignuser": true
}, - "eEzsignfolderCompletion": "PerEzsigndocument",
- "sEzsignfoldertypeNameX": "string",
- "fkiBillingentityinternalID": 1,
- "sBillingentityinternalDescriptionX": "Default",
- "fkiEzsigntsarequirementID": 1,
- "sEzsigntsarequirementDescriptionX": "No",
- "sEzsignfolderDescription": "Test eZsign Folder",
- "tEzsignfolderNote": "This is a note",
- "bEzsignfolderIsdisposable": false,
- "eEzsignfolderSendreminderfrequency": "None",
- "dtEzsignfolderDelayedsenddate": "2020-12-31T23:59:59.000Z",
- "dtEzsignfolderDuedate": "2020-12-31 23:59:59",
- "dtEzsignfolderSentdate": "2020-12-31T23:59:59.000Z",
- "dtEzsignfolderScheduledarchive": "2020-12-31 23:59:59",
- "dtEzsignfolderScheduleddispose": "2020-12-31",
- "eEzsignfolderStep": "Completed",
- "dtEzsignfolderClose": "2020-12-31 23:59:59",
- "tEzsignfolderMessage": "Hi everyone,\n\nThis is the document I need you to review.\n\nCould you sign it before Monday please.\n\nBest Regards.\n\nMary",
- "objAudit": {
- "objAuditdetailCreated": {
- "fkiUserID": 70,
- "fkiApikeyID": 99,
- "sUserLoginname": "JohnDoe",
- "sUserLastname": "Doe",
- "sUserFirstname": "John",
- "sApikeyDescriptionX": "Project X",
- "dtAuditdetailDate": "2020-12-31 23:59:59"
}, - "objAuditdetailModified": {
- "fkiUserID": 70,
- "fkiApikeyID": 99,
- "sUserLoginname": "JohnDoe",
- "sUserLastname": "Doe",
- "sUserFirstname": "John",
- "sApikeyDescriptionX": "Project X",
- "dtAuditdetailDate": "2020-12-31 23:59:59"
}
}, - "sEzsignfolderExternalid": "{\"ID\": 1234, \"TAGS\": [\"tag1\", \"tag2\", \"tag3\"]}"
}, - "objWebhook": {
- "pksCustomerCode": "demo",
- "bWebhookTest": true,
- "pkiWebhookID": 77,
- "sWebhookDescription": "Import into our system",
- "fkiEzsignfoldertypeID": 5,
- "sEzsignfoldertypeNameX": "Default",
- "eWebhookModule": "Ezsign",
- "eWebhookEzsignevent": "FolderCompleted",
- "eWebhookManagementevent": "UserCreated",
- "sWebhookEmailfailed": "email@example.com",
- "sWebhookApikey": "string",
- "sWebhookSecret": "string",
- "bWebhookIsactive": true,
- "bWebhookIssigned": true,
- "bWebhookSkipsslvalidation": false,
- "objAudit": {
- "objAuditdetailCreated": {
- "fkiUserID": 70,
- "fkiApikeyID": 99,
- "sUserLoginname": "JohnDoe",
- "sUserLastname": "Doe",
- "sUserFirstname": "John",
- "sApikeyDescriptionX": "Project X",
- "dtAuditdetailDate": "2020-12-31 23:59:59"
}, - "objAuditdetailModified": {
- "fkiUserID": 70,
- "fkiApikeyID": 99,
- "sUserLoginname": "JohnDoe",
- "sUserLastname": "Doe",
- "sUserFirstname": "John",
- "sApikeyDescriptionX": "Project X",
- "dtAuditdetailDate": "2020-12-31 23:59:59"
}
}, - "sWebhookEvent": "Ezsign-DocumentCompleted",
- "a_objWebhookheader": [
- {
- "pkiWebhookheaderID": 77,
- "fkiWebhookID": 77,
- "sWebhookheaderName": "Authorization",
- "sWebhookheaderValue": "d75fca0e12b6c671e7f6d4df0cf59e4e"
}
]
}, - "a_objAttempt": [
- {
- "dtAttemptStart": "2020-12-31 23:59:59",
- "sAttemptResult": "Success",
- "iAttemptDuration": 1
}
]
}
This Webhook will be called when we sent Ezsigndocument to sign.
required | object (ezsignfolder-Response) An Ezsignfolder Object |
required | object (Custom-Webhook-Response) A custom Webhook object |
required | Array of objects (attempt-ResponseCompound) An array containing details of previous attempts that were made to deliver the message. The array is empty if it's the first attempt. |
{- "objEzsignfolder": {
- "pkiEzsignfolderID": 33,
- "fkiEzsignfoldertypeID": 5,
- "objEzsignfoldertype": {
- "pkiEzsignfoldertypeID": 5,
- "sEzsignfoldertypeNameX": "Default",
- "bEzsignfoldertypeSendproofezsignsigner": false,
- "bEzsignfoldertypeAllowdownloadattachmentezsignsigner": false,
- "bEzsignfoldertypeAllowdownloadproofezsignsigner": false,
- "bEzsignfoldertypeDelegate": true,
- "bEzsignfoldertypeDiscussion": true,
- "bEzsignfoldertypeReassignezsignsigner": true,
- "bEzsignfoldertypeReassignuser": true
}, - "eEzsignfolderCompletion": "PerEzsigndocument",
- "sEzsignfoldertypeNameX": "string",
- "fkiBillingentityinternalID": 1,
- "sBillingentityinternalDescriptionX": "Default",
- "fkiEzsigntsarequirementID": 1,
- "sEzsigntsarequirementDescriptionX": "No",
- "sEzsignfolderDescription": "Test eZsign Folder",
- "tEzsignfolderNote": "This is a note",
- "bEzsignfolderIsdisposable": false,
- "eEzsignfolderSendreminderfrequency": "None",
- "dtEzsignfolderDelayedsenddate": "2020-12-31T23:59:59.000Z",
- "dtEzsignfolderDuedate": "2020-12-31 23:59:59",
- "dtEzsignfolderSentdate": "2020-12-31T23:59:59.000Z",
- "dtEzsignfolderScheduledarchive": "2020-12-31 23:59:59",
- "dtEzsignfolderScheduleddispose": "2020-12-31",
- "eEzsignfolderStep": "Completed",
- "dtEzsignfolderClose": "2020-12-31 23:59:59",
- "tEzsignfolderMessage": "Hi everyone,\n\nThis is the document I need you to review.\n\nCould you sign it before Monday please.\n\nBest Regards.\n\nMary",
- "objAudit": {
- "objAuditdetailCreated": {
- "fkiUserID": 70,
- "fkiApikeyID": 99,
- "sUserLoginname": "JohnDoe",
- "sUserLastname": "Doe",
- "sUserFirstname": "John",
- "sApikeyDescriptionX": "Project X",
- "dtAuditdetailDate": "2020-12-31 23:59:59"
}, - "objAuditdetailModified": {
- "fkiUserID": 70,
- "fkiApikeyID": 99,
- "sUserLoginname": "JohnDoe",
- "sUserLastname": "Doe",
- "sUserFirstname": "John",
- "sApikeyDescriptionX": "Project X",
- "dtAuditdetailDate": "2020-12-31 23:59:59"
}
}, - "sEzsignfolderExternalid": "{\"ID\": 1234, \"TAGS\": [\"tag1\", \"tag2\", \"tag3\"]}"
}, - "objWebhook": {
- "pksCustomerCode": "demo",
- "bWebhookTest": true,
- "pkiWebhookID": 77,
- "sWebhookDescription": "Import into our system",
- "fkiEzsignfoldertypeID": 5,
- "sEzsignfoldertypeNameX": "Default",
- "eWebhookModule": "Ezsign",
- "eWebhookEzsignevent": "FolderCompleted",
- "eWebhookManagementevent": "UserCreated",
- "sWebhookEmailfailed": "email@example.com",
- "sWebhookApikey": "string",
- "sWebhookSecret": "string",
- "bWebhookIsactive": true,
- "bWebhookIssigned": true,
- "bWebhookSkipsslvalidation": false,
- "objAudit": {
- "objAuditdetailCreated": {
- "fkiUserID": 70,
- "fkiApikeyID": 99,
- "sUserLoginname": "JohnDoe",
- "sUserLastname": "Doe",
- "sUserFirstname": "John",
- "sApikeyDescriptionX": "Project X",
- "dtAuditdetailDate": "2020-12-31 23:59:59"
}, - "objAuditdetailModified": {
- "fkiUserID": 70,
- "fkiApikeyID": 99,
- "sUserLoginname": "JohnDoe",
- "sUserLastname": "Doe",
- "sUserFirstname": "John",
- "sApikeyDescriptionX": "Project X",
- "dtAuditdetailDate": "2020-12-31 23:59:59"
}
}, - "sWebhookEvent": "Ezsign-DocumentCompleted",
- "a_objWebhookheader": [
- {
- "pkiWebhookheaderID": 77,
- "fkiWebhookID": 77,
- "sWebhookheaderName": "Authorization",
- "sWebhookheaderValue": "d75fca0e12b6c671e7f6d4df0cf59e4e"
}
]
}, - "a_objAttempt": [
- {
- "dtAttemptStart": "2020-12-31 23:59:59",
- "sAttemptResult": "Success",
- "iAttemptDuration": 1
}
]
}
This Webhook will be called when we return ezsignfolder to initial state to modify the forms and signature fields in Ezsingdocument.
required | object (ezsignfolder-Response) An Ezsignfolder Object |
required | object (Custom-Webhook-Response) A custom Webhook object |
required | Array of objects (attempt-ResponseCompound) An array containing details of previous attempts that were made to deliver the message. The array is empty if it's the first attempt. |
{- "objEzsignfolder": {
- "pkiEzsignfolderID": 33,
- "fkiEzsignfoldertypeID": 5,
- "objEzsignfoldertype": {
- "pkiEzsignfoldertypeID": 5,
- "sEzsignfoldertypeNameX": "Default",
- "bEzsignfoldertypeSendproofezsignsigner": false,
- "bEzsignfoldertypeAllowdownloadattachmentezsignsigner": false,
- "bEzsignfoldertypeAllowdownloadproofezsignsigner": false,
- "bEzsignfoldertypeDelegate": true,
- "bEzsignfoldertypeDiscussion": true,
- "bEzsignfoldertypeReassignezsignsigner": true,
- "bEzsignfoldertypeReassignuser": true
}, - "eEzsignfolderCompletion": "PerEzsigndocument",
- "sEzsignfoldertypeNameX": "string",
- "fkiBillingentityinternalID": 1,
- "sBillingentityinternalDescriptionX": "Default",
- "fkiEzsigntsarequirementID": 1,
- "sEzsigntsarequirementDescriptionX": "No",
- "sEzsignfolderDescription": "Test eZsign Folder",
- "tEzsignfolderNote": "This is a note",
- "bEzsignfolderIsdisposable": false,
- "eEzsignfolderSendreminderfrequency": "None",
- "dtEzsignfolderDelayedsenddate": "2020-12-31T23:59:59.000Z",
- "dtEzsignfolderDuedate": "2020-12-31 23:59:59",
- "dtEzsignfolderSentdate": "2020-12-31T23:59:59.000Z",
- "dtEzsignfolderScheduledarchive": "2020-12-31 23:59:59",
- "dtEzsignfolderScheduleddispose": "2020-12-31",
- "eEzsignfolderStep": "Completed",
- "dtEzsignfolderClose": "2020-12-31 23:59:59",
- "tEzsignfolderMessage": "Hi everyone,\n\nThis is the document I need you to review.\n\nCould you sign it before Monday please.\n\nBest Regards.\n\nMary",
- "objAudit": {
- "objAuditdetailCreated": {
- "fkiUserID": 70,
- "fkiApikeyID": 99,
- "sUserLoginname": "JohnDoe",
- "sUserLastname": "Doe",
- "sUserFirstname": "John",
- "sApikeyDescriptionX": "Project X",
- "dtAuditdetailDate": "2020-12-31 23:59:59"
}, - "objAuditdetailModified": {
- "fkiUserID": 70,
- "fkiApikeyID": 99,
- "sUserLoginname": "JohnDoe",
- "sUserLastname": "Doe",
- "sUserFirstname": "John",
- "sApikeyDescriptionX": "Project X",
- "dtAuditdetailDate": "2020-12-31 23:59:59"
}
}, - "sEzsignfolderExternalid": "{\"ID\": 1234, \"TAGS\": [\"tag1\", \"tag2\", \"tag3\"]}"
}, - "objWebhook": {
- "pksCustomerCode": "demo",
- "bWebhookTest": true,
- "pkiWebhookID": 77,
- "sWebhookDescription": "Import into our system",
- "fkiEzsignfoldertypeID": 5,
- "sEzsignfoldertypeNameX": "Default",
- "eWebhookModule": "Ezsign",
- "eWebhookEzsignevent": "FolderCompleted",
- "eWebhookManagementevent": "UserCreated",
- "sWebhookEmailfailed": "email@example.com",
- "sWebhookApikey": "string",
- "sWebhookSecret": "string",
- "bWebhookIsactive": true,
- "bWebhookIssigned": true,
- "bWebhookSkipsslvalidation": false,
- "objAudit": {
- "objAuditdetailCreated": {
- "fkiUserID": 70,
- "fkiApikeyID": 99,
- "sUserLoginname": "JohnDoe",
- "sUserLastname": "Doe",
- "sUserFirstname": "John",
- "sApikeyDescriptionX": "Project X",
- "dtAuditdetailDate": "2020-12-31 23:59:59"
}, - "objAuditdetailModified": {
- "fkiUserID": 70,
- "fkiApikeyID": 99,
- "sUserLoginname": "JohnDoe",
- "sUserLastname": "Doe",
- "sUserFirstname": "John",
- "sApikeyDescriptionX": "Project X",
- "dtAuditdetailDate": "2020-12-31 23:59:59"
}
}, - "sWebhookEvent": "Ezsign-DocumentCompleted",
- "a_objWebhookheader": [
- {
- "pkiWebhookheaderID": 77,
- "fkiWebhookID": 77,
- "sWebhookheaderName": "Authorization",
- "sWebhookheaderValue": "d75fca0e12b6c671e7f6d4df0cf59e4e"
}
]
}, - "a_objAttempt": [
- {
- "dtAttemptStart": "2020-12-31 23:59:59",
- "sAttemptResult": "Success",
- "iAttemptDuration": 1
}
]
}
Ezsignfoldersignerassociation contains detail about the signers that will be invited to sign the documents. Signers can be users from the system or persons outside of the system.
The endpoint allows to create one or many elements at once.
required | Array of objects (ezsignfoldersignerassociation-RequestCompound) non-empty |
{- "a_objEzsignfoldersignerassociation": [
- {
- "pkiEzsignfoldersignerassociationID": 20,
- "fkiUserID": 70,
- "fkiEzsignsignergroupID": 27,
- "fkiEzsignfolderID": 33,
- "bEzsignfoldersignerassociationReceivecopy": true,
- "tEzsignfoldersignerassociationMessage": "Hi John,\n\nThis is the document I need you to review.\n\nCould you sign it before Monday please.\n\nBest Regards.\n\nMary",
- "objEzsignsigner": {
- "fkiTaxassignmentID": 1,
- "fkiSecretquestionID": 5,
- "eEzsignsignerLogintype": "PasswordQuestion",
- "sEzsignsignerSecretanswer": "This Is My Secret Answer",
- "objContact": {
- "sContactFirstname": "John",
- "sContactLastname": "Doe",
- "fkiLanguageID": 2,
- "sEmailAddress": "email@example.com",
- "sPhoneE164": "+15149901516",
- "sPhoneExtension": "123",
- "sPhoneE164Cell": "+15149901516",
- "sPhoneNumber": "string",
- "sPhoneNumberCell": "string"
}
}
}
]
}
{- "mPayload": {
- "a_pkiEzsignfoldersignerassociationID": [
- 20
]
}, - "objDebugPayload": {
- "iVersionMin": 1,
- "iVersionMax": 2,
- "a_RequiredPermission": [
- 117
], - "bVersionDeprecated": false,
- "dtResponseDate": "2020-12-31 23:59:59"
}, - "objDebug": {
- "sMemoryUsage": "11,923MB",
- "sRunTime": "0.6084s",
- "iSQLSelects": 3,
- "iSQLQueries": 6,
- "a_objSQLQuery": [
- {
- "sQuery": "SELECT * FROM table",
- "fDuration": 0.0001
}, - {
- "sQuery": "SELECT * FROM table",
- "fDuration": 0.0001
}
]
}
}
The endpoint allows to create one or many elements at once.
The array can contain simple (Just the object) or compound (The object and its child) objects.
Creating compound elements allows to reduce the multiple requests to create all child objects.
object (ezsignfoldersignerassociation-Request) An Ezsignfoldersignerassociation Object | |
object (ezsignfoldersignerassociation-RequestCompound) An Ezsignfoldersignerassociation Object and children to create a complete structure |
[- {
- "objEzsignfoldersignerassociation": {
- "pkiEzsignfoldersignerassociationID": 20,
- "fkiUserID": 70,
- "fkiEzsignsignergroupID": 27,
- "fkiEzsignfolderID": 33,
- "bEzsignfoldersignerassociationReceivecopy": true,
- "tEzsignfoldersignerassociationMessage": "Hi John,\n\nThis is the document I need you to review.\n\nCould you sign it before Monday please.\n\nBest Regards.\n\nMary"
}, - "objEzsignfoldersignerassociationCompound": {
- "pkiEzsignfoldersignerassociationID": 20,
- "fkiUserID": 70,
- "fkiEzsignsignergroupID": 27,
- "fkiEzsignfolderID": 33,
- "bEzsignfoldersignerassociationReceivecopy": true,
- "tEzsignfoldersignerassociationMessage": "Hi John,\n\nThis is the document I need you to review.\n\nCould you sign it before Monday please.\n\nBest Regards.\n\nMary",
- "objEzsignsigner": {
- "fkiTaxassignmentID": 1,
- "fkiSecretquestionID": 5,
- "eEzsignsignerLogintype": "PasswordQuestion",
- "sEzsignsignerSecretanswer": "This Is My Secret Answer",
- "objContact": {
- "sContactFirstname": "John",
- "sContactLastname": "Doe",
- "fkiLanguageID": 2,
- "sEmailAddress": "email@example.com",
- "sPhoneE164": "+15149901516",
- "sPhoneExtension": "123",
- "sPhoneE164Cell": "+15149901516",
- "sPhoneNumber": "string",
- "sPhoneNumberCell": "string"
}
}
}
}
]
{- "mPayload": {
- "a_pkiEzsignfoldersignerassociationID": [
- 20
]
}, - "objDebugPayload": {
- "iVersionMin": 1,
- "iVersionMax": 2,
- "a_RequiredPermission": [
- 117
], - "bVersionDeprecated": false,
- "dtResponseDate": "2020-12-31 23:59:59"
}, - "objDebug": {
- "sMemoryUsage": "11,923MB",
- "sRunTime": "0.6084s",
- "iSQLSelects": 3,
- "iSQLQueries": 6,
- "a_objSQLQuery": [
- {
- "sQuery": "SELECT * FROM table",
- "fDuration": 0.0001
}, - {
- "sQuery": "SELECT * FROM table",
- "fDuration": 0.0001
}
]
}
}
This endpoint creates an Url that can be used in a browser or embedded in an I-Frame to allow signing.
The signer Login type must be configured as Embedded.
There will be a list to retrieve informations after the signing happens in the embedded version. To do so, there is a list of parameter to add to your sReturnUrl.
In example: https://www.example.com/sReturl?sParameter1&sParameter2. The sParameter1 et sParameter2 will be replace when we will redirect on the url.
pkiEzsignfoldersignerassociationID required | integer (Field-pkiEzsignfoldersignerassociationID) >= 0 Example: 20 The unique ID of the Ezsignfoldersignerassociation |
sReturnUrl | string^(https|http):\/\/[^\s\/$.?#].[^\s]*$ The return Url to redirect after the signing is completed |
sIframedomain | string Domain protection for the iFrame |
bIsIframe | boolean Whether the url would be in an iFrame or not |
{- "sReturnUrl": "Https://www.example.com",
- "sIframedomain": "*.example.com",
- "bIsIframe": true
}
{- "mPayload": {
- "sEmbeddedUrl": "string"
}, - "objDebugPayload": {
- "iVersionMin": 1,
- "iVersionMax": 2,
- "a_RequiredPermission": [
- 117
], - "bVersionDeprecated": false,
- "dtResponseDate": "2020-12-31 23:59:59"
}, - "objDebug": {
- "sMemoryUsage": "11,923MB",
- "sRunTime": "0.6084s",
- "iSQLSelects": 3,
- "iSQLQueries": 6,
- "a_objSQLQuery": [
- {
- "sQuery": "SELECT * FROM table",
- "fDuration": 0.0001
}, - {
- "sQuery": "SELECT * FROM table",
- "fDuration": 0.0001
}
]
}
}
pkiEzsignfoldersignerassociationID required | integer (Field-pkiEzsignfoldersignerassociationID) >= 0 Example: 20 The unique ID of the Ezsignfoldersignerassociation |
{- "objDebugPayload": {
- "iVersionMin": 1,
- "iVersionMax": 2,
- "a_RequiredPermission": [
- 117
], - "bVersionDeprecated": false,
- "dtResponseDate": "2020-12-31 23:59:59"
}, - "objDebug": {
- "sMemoryUsage": "11,923MB",
- "sRunTime": "0.6084s",
- "iSQLSelects": 3,
- "iSQLQueries": 6,
- "a_objSQLQuery": [
- {
- "sQuery": "SELECT * FROM table",
- "fDuration": 0.0001
}, - {
- "sQuery": "SELECT * FROM table",
- "fDuration": 0.0001
}
]
}
}
pkiEzsignfoldersignerassociationID required | integer (Field-pkiEzsignfoldersignerassociationID) >= 0 Example: 20 The unique ID of the Ezsignfoldersignerassociation |
Request for POST /1/object/ezsignfoldersignerassociation/{pkiEzsignfoldersignerassociation}/forceDisconnect
Intentionally empty for future-proofing
{ }
{- "objDebugPayload": {
- "iVersionMin": 1,
- "iVersionMax": 2,
- "a_RequiredPermission": [
- 117
], - "bVersionDeprecated": false,
- "dtResponseDate": "2020-12-31 23:59:59"
}, - "objDebug": {
- "sMemoryUsage": "11,923MB",
- "sRunTime": "0.6084s",
- "iSQLSelects": 3,
- "iSQLQueries": 6,
- "a_objSQLQuery": [
- {
- "sQuery": "SELECT * FROM table",
- "fDuration": 0.0001
}, - {
- "sQuery": "SELECT * FROM table",
- "fDuration": 0.0001
}
]
}
}
pkiEzsignfoldersignerassociationID required | integer (Field-pkiEzsignfoldersignerassociationID) >= 0 Example: 20 The unique ID of the Ezsignfoldersignerassociation |
required | object (ezsignfoldersignerassociation-RequestCompound) An Ezsignfoldersignerassociation Object and children to create a complete structure |
{- "objEzsignfoldersignerassociation": {
- "pkiEzsignfoldersignerassociationID": 20,
- "fkiUserID": 70,
- "fkiEzsignsignergroupID": 27,
- "fkiEzsignfolderID": 33,
- "bEzsignfoldersignerassociationReceivecopy": true,
- "tEzsignfoldersignerassociationMessage": "Hi John,\n\nThis is the document I need you to review.\n\nCould you sign it before Monday please.\n\nBest Regards.\n\nMary",
- "objEzsignsigner": {
- "fkiTaxassignmentID": 1,
- "fkiSecretquestionID": 5,
- "eEzsignsignerLogintype": "PasswordQuestion",
- "sEzsignsignerSecretanswer": "This Is My Secret Answer",
- "objContact": {
- "sContactFirstname": "John",
- "sContactLastname": "Doe",
- "fkiLanguageID": 2,
- "sEmailAddress": "email@example.com",
- "sPhoneE164": "+15149901516",
- "sPhoneExtension": "123",
- "sPhoneE164Cell": "+15149901516",
- "sPhoneNumber": "string",
- "sPhoneNumberCell": "string"
}
}
}
}
{- "objDebugPayload": {
- "iVersionMin": 1,
- "iVersionMax": 2,
- "a_RequiredPermission": [
- 117
], - "bVersionDeprecated": false,
- "dtResponseDate": "2020-12-31 23:59:59"
}, - "objDebug": {
- "sMemoryUsage": "11,923MB",
- "sRunTime": "0.6084s",
- "iSQLSelects": 3,
- "iSQLQueries": 6,
- "a_objSQLQuery": [
- {
- "sQuery": "SELECT * FROM table",
- "fDuration": 0.0001
}, - {
- "sQuery": "SELECT * FROM table",
- "fDuration": 0.0001
}
]
}
}
pkiEzsignfoldersignerassociationID required | integer (Field-pkiEzsignfoldersignerassociationID) >= 0 Example: 20 The unique ID of the Ezsignfoldersignerassociation |
required | object (ezsignfoldersignerassociation-RequestPatch) An Ezsignfoldersignerassociation Object |
{- "objEzsignfoldersignerassociation": {
- "tEzsignfoldersignerassociationMessage": "Hi John,\n\nThis is the document I need you to review.\n\nCould you sign it before Monday please.\n\nBest Regards.\n\nMary"
}
}
{- "objDebugPayload": {
- "iVersionMin": 1,
- "iVersionMax": 2,
- "a_RequiredPermission": [
- 117
], - "bVersionDeprecated": false,
- "dtResponseDate": "2020-12-31 23:59:59"
}, - "objDebug": {
- "sMemoryUsage": "11,923MB",
- "sRunTime": "0.6084s",
- "iSQLSelects": 3,
- "iSQLQueries": 6,
- "a_objSQLQuery": [
- {
- "sQuery": "SELECT * FROM table",
- "fDuration": 0.0001
}, - {
- "sQuery": "SELECT * FROM table",
- "fDuration": 0.0001
}
]
}
}
This endpoint returns a Login Url that can be used in a browser or embedded in an I-Frame to allow in person signing.
The signer Login type must be configured as In-Person.
pkiEzsignfoldersignerassociationID required | integer (Field-pkiEzsignfoldersignerassociationID) >= 0 Example: 20 The unique ID of the Ezsignfoldersignerassociation |
{- "mPayload": {
- "sLoginUrl": "string"
}, - "objDebugPayload": {
- "iVersionMin": 1,
- "iVersionMax": 2,
- "a_RequiredPermission": [
- 117
], - "bVersionDeprecated": false,
- "dtResponseDate": "2020-12-31 23:59:59"
}, - "objDebug": {
- "sMemoryUsage": "11,923MB",
- "sRunTime": "0.6084s",
- "iSQLSelects": 3,
- "iSQLQueries": 6,
- "a_objSQLQuery": [
- {
- "sQuery": "SELECT * FROM table",
- "fDuration": 0.0001
}, - {
- "sQuery": "SELECT * FROM table",
- "fDuration": 0.0001
}
]
}
}
pkiEzsignfoldersignerassociationID required | integer (Field-pkiEzsignfoldersignerassociationID) >= 0 Example: 20 The unique ID of the Ezsignfoldersignerassociation |
{- "mPayload": {
- "objEzsignfoldersignerassociation": {
- "pkiEzsignfoldersignerassociationID": 20,
- "fkiEzsignfolderID": 33,
- "bEzsignfoldersignerassociationDelayedsend": true,
- "bEzsignfoldersignerassociationReceivecopy": true,
- "tEzsignfoldersignerassociationMessage": "Hi John,\n\nThis is the document I need you to review.\n\nCould you sign it before Monday please.\n\nBest Regards.\n\nMary",
- "bEzsignfoldersignerassociationAllowsigninginperson": true,
- "objEzsignsignergroup": {
- "pkiEzsignsignergroupID": 27,
- "objEzsignsignergroupDescription": {
- "sEzsignsignergroupDescription1": "RH",
- "sEzsignsignergroupDescription2": "HR"
}, - "sEzsignsignergroupDescriptionX": "HR"
}, - "objUser": {
- "pkiUserID": 70,
- "fkiLanguageID": 2,
- "sUserFirstname": "John",
- "sUserLastname": "Doe",
- "sEmailAddress": "email@example.com"
}, - "objEzsignsigner": {
- "pkiEzsignsignerID": 89,
- "fkiTaxassignmentID": 1,
- "fkiSecretquestionID": 7,
- "fkiUserlogintypeID": 2,
- "sUserlogintypeDescriptionX": "Email and phone or SMS",
- "objContact": {
- "pkiContactID": 21,
- "sContactFirstname": "John",
- "sContactLastname": "Doe",
- "fkiLanguageID": 2,
- "sEmailAddress": "email@example.com",
- "sPhoneE164": "+15149901516",
- "sPhoneExtension": "123",
- "sPhoneE164Cell": "+15149901516"
}
}
}
}, - "objDebugPayload": {
- "iVersionMin": 1,
- "iVersionMax": 2,
- "a_RequiredPermission": [
- 117
], - "bVersionDeprecated": false,
- "dtResponseDate": "2020-12-31 23:59:59"
}, - "objDebug": {
- "sMemoryUsage": "11,923MB",
- "sRunTime": "0.6084s",
- "iSQLSelects": 3,
- "iSQLQueries": 6,
- "a_objSQLQuery": [
- {
- "sQuery": "SELECT * FROM table",
- "fDuration": 0.0001
}, - {
- "sQuery": "SELECT * FROM table",
- "fDuration": 0.0001
}
]
}
}
pkiEzsignfoldersignerassociationID required | integer (Field-pkiEzsignfoldersignerassociationID) >= 0 Example: 20 The unique ID of the Ezsignfoldersignerassociation |
{- "mPayload": {
- "pkiEzsignfoldersignerassociationID": 20,
- "fkiEzsignfolderID": 33,
- "bEzsignfoldersignerassociationDelayedsend": true,
- "bEzsignfoldersignerassociationReceivecopy": true,
- "tEzsignfoldersignerassociationMessage": "Hi John,\n\nThis is the document I need you to review.\n\nCould you sign it before Monday please.\n\nBest Regards.\n\nMary",
- "bEzsignfoldersignerassociationAllowsigninginperson": true,
- "objEzsignsignergroup": {
- "pkiEzsignsignergroupID": 27,
- "objEzsignsignergroupDescription": {
- "sEzsignsignergroupDescription1": "RH",
- "sEzsignsignergroupDescription2": "HR"
}, - "sEzsignsignergroupDescriptionX": "HR"
}, - "objUser": {
- "pkiUserID": 70,
- "fkiLanguageID": 2,
- "sUserFirstname": "John",
- "sUserLastname": "Doe",
- "sEmailAddress": "email@example.com"
}, - "objEzsignsigner": {
- "pkiEzsignsignerID": 89,
- "fkiTaxassignmentID": 1,
- "fkiSecretquestionID": 7,
- "fkiUserlogintypeID": 2,
- "sUserlogintypeDescriptionX": "Email and phone or SMS",
- "objContact": {
- "pkiContactID": 21,
- "sContactFirstname": "John",
- "sContactLastname": "Doe",
- "fkiLanguageID": 2,
- "sEmailAddress": "email@example.com",
- "sPhoneE164": "+15149901516",
- "sPhoneExtension": "123",
- "sPhoneE164Cell": "+15149901516"
}
}
}, - "objDebugPayload": {
- "iVersionMin": 1,
- "iVersionMax": 2,
- "a_RequiredPermission": [
- 117
], - "bVersionDeprecated": false,
- "dtResponseDate": "2020-12-31 23:59:59"
}, - "objDebug": {
- "sMemoryUsage": "11,923MB",
- "sRunTime": "0.6084s",
- "iSQLSelects": 3,
- "iSQLQueries": 6,
- "a_objSQLQuery": [
- {
- "sQuery": "SELECT * FROM table",
- "fDuration": 0.0001
}, - {
- "sQuery": "SELECT * FROM table",
- "fDuration": 0.0001
}
]
}
}
This Webhook will be called when an ezsignsigner accept the clauses.
object (ezsignfolder-Response) An Ezsignfolder Object | |
required | object (ezsignfoldersignerassociation-ResponseCompound) An Ezsignfoldersignerassociation Object |
required | object (Custom-Webhook-Response) A custom Webhook object |
required | Array of objects (attempt-ResponseCompound) An array containing details of previous attempts that were made to deliver the message. The array is empty if it's the first attempt. |
{- "objEzsignfolder": {
- "pkiEzsignfolderID": 33,
- "fkiEzsignfoldertypeID": 5,
- "objEzsignfoldertype": {
- "pkiEzsignfoldertypeID": 5,
- "sEzsignfoldertypeNameX": "Default",
- "bEzsignfoldertypeSendproofezsignsigner": false,
- "bEzsignfoldertypeAllowdownloadattachmentezsignsigner": false,
- "bEzsignfoldertypeAllowdownloadproofezsignsigner": false,
- "bEzsignfoldertypeDelegate": true,
- "bEzsignfoldertypeDiscussion": true,
- "bEzsignfoldertypeReassignezsignsigner": true,
- "bEzsignfoldertypeReassignuser": true
}, - "eEzsignfolderCompletion": "PerEzsigndocument",
- "sEzsignfoldertypeNameX": "string",
- "fkiBillingentityinternalID": 1,
- "sBillingentityinternalDescriptionX": "Default",
- "fkiEzsigntsarequirementID": 1,
- "sEzsigntsarequirementDescriptionX": "No",
- "sEzsignfolderDescription": "Test eZsign Folder",
- "tEzsignfolderNote": "This is a note",
- "bEzsignfolderIsdisposable": false,
- "eEzsignfolderSendreminderfrequency": "None",
- "dtEzsignfolderDelayedsenddate": "2020-12-31T23:59:59.000Z",
- "dtEzsignfolderDuedate": "2020-12-31 23:59:59",
- "dtEzsignfolderSentdate": "2020-12-31T23:59:59.000Z",
- "dtEzsignfolderScheduledarchive": "2020-12-31 23:59:59",
- "dtEzsignfolderScheduleddispose": "2020-12-31",
- "eEzsignfolderStep": "Completed",
- "dtEzsignfolderClose": "2020-12-31 23:59:59",
- "tEzsignfolderMessage": "Hi everyone,\n\nThis is the document I need you to review.\n\nCould you sign it before Monday please.\n\nBest Regards.\n\nMary",
- "objAudit": {
- "objAuditdetailCreated": {
- "fkiUserID": 70,
- "fkiApikeyID": 99,
- "sUserLoginname": "JohnDoe",
- "sUserLastname": "Doe",
- "sUserFirstname": "John",
- "sApikeyDescriptionX": "Project X",
- "dtAuditdetailDate": "2020-12-31 23:59:59"
}, - "objAuditdetailModified": {
- "fkiUserID": 70,
- "fkiApikeyID": 99,
- "sUserLoginname": "JohnDoe",
- "sUserLastname": "Doe",
- "sUserFirstname": "John",
- "sApikeyDescriptionX": "Project X",
- "dtAuditdetailDate": "2020-12-31 23:59:59"
}
}, - "sEzsignfolderExternalid": "{\"ID\": 1234, \"TAGS\": [\"tag1\", \"tag2\", \"tag3\"]}"
}, - "objEzsignfoldersignerassociation": {
- "pkiEzsignfoldersignerassociationID": 20,
- "fkiEzsignfolderID": 33,
- "bEzsignfoldersignerassociationDelayedsend": true,
- "bEzsignfoldersignerassociationReceivecopy": true,
- "tEzsignfoldersignerassociationMessage": "Hi John,\n\nThis is the document I need you to review.\n\nCould you sign it before Monday please.\n\nBest Regards.\n\nMary",
- "bEzsignfoldersignerassociationAllowsigninginperson": true,
- "objEzsignsignergroup": {
- "pkiEzsignsignergroupID": 27,
- "objEzsignsignergroupDescription": {
- "sEzsignsignergroupDescription1": "RH",
- "sEzsignsignergroupDescription2": "HR"
}, - "sEzsignsignergroupDescriptionX": "HR"
}, - "objUser": {
- "pkiUserID": 70,
- "fkiLanguageID": 2,
- "sUserFirstname": "John",
- "sUserLastname": "Doe",
- "sEmailAddress": "email@example.com"
}, - "objEzsignsigner": {
- "pkiEzsignsignerID": 89,
- "fkiTaxassignmentID": 1,
- "fkiSecretquestionID": 7,
- "fkiUserlogintypeID": 2,
- "sUserlogintypeDescriptionX": "Email and phone or SMS",
- "objContact": {
- "pkiContactID": 21,
- "sContactFirstname": "John",
- "sContactLastname": "Doe",
- "fkiLanguageID": 2,
- "sEmailAddress": "email@example.com",
- "sPhoneE164": "+15149901516",
- "sPhoneExtension": "123",
- "sPhoneE164Cell": "+15149901516"
}
}
}, - "objWebhook": {
- "pksCustomerCode": "demo",
- "bWebhookTest": true,
- "pkiWebhookID": 77,
- "sWebhookDescription": "Import into our system",
- "fkiEzsignfoldertypeID": 5,
- "sEzsignfoldertypeNameX": "Default",
- "eWebhookModule": "Ezsign",
- "eWebhookEzsignevent": "FolderCompleted",
- "eWebhookManagementevent": "UserCreated",
- "sWebhookEmailfailed": "email@example.com",
- "sWebhookApikey": "string",
- "sWebhookSecret": "string",
- "bWebhookIsactive": true,
- "bWebhookIssigned": true,
- "bWebhookSkipsslvalidation": false,
- "objAudit": {
- "objAuditdetailCreated": {
- "fkiUserID": 70,
- "fkiApikeyID": 99,
- "sUserLoginname": "JohnDoe",
- "sUserLastname": "Doe",
- "sUserFirstname": "John",
- "sApikeyDescriptionX": "Project X",
- "dtAuditdetailDate": "2020-12-31 23:59:59"
}, - "objAuditdetailModified": {
- "fkiUserID": 70,
- "fkiApikeyID": 99,
- "sUserLoginname": "JohnDoe",
- "sUserLastname": "Doe",
- "sUserFirstname": "John",
- "sApikeyDescriptionX": "Project X",
- "dtAuditdetailDate": "2020-12-31 23:59:59"
}
}, - "sWebhookEvent": "Ezsign-DocumentCompleted",
- "a_objWebhookheader": [
- {
- "pkiWebhookheaderID": 77,
- "fkiWebhookID": 77,
- "sWebhookheaderName": "Authorization",
- "sWebhookheaderValue": "d75fca0e12b6c671e7f6d4df0cf59e4e"
}
]
}, - "a_objAttempt": [
- {
- "dtAttemptStart": "2020-12-31 23:59:59",
- "sAttemptResult": "Success",
- "iAttemptDuration": 1
}
]
}
This Webhook will be called when an ezsignsigner log in.
object (ezsignfolder-Response) An Ezsignfolder Object | |
required | object (ezsignfoldersignerassociation-ResponseCompound) An Ezsignfoldersignerassociation Object |
required | object (Custom-Webhook-Response) A custom Webhook object |
required | Array of objects (attempt-ResponseCompound) An array containing details of previous attempts that were made to deliver the message. The array is empty if it's the first attempt. |
{- "objEzsignfolder": {
- "pkiEzsignfolderID": 33,
- "fkiEzsignfoldertypeID": 5,
- "objEzsignfoldertype": {
- "pkiEzsignfoldertypeID": 5,
- "sEzsignfoldertypeNameX": "Default",
- "bEzsignfoldertypeSendproofezsignsigner": false,
- "bEzsignfoldertypeAllowdownloadattachmentezsignsigner": false,
- "bEzsignfoldertypeAllowdownloadproofezsignsigner": false,
- "bEzsignfoldertypeDelegate": true,
- "bEzsignfoldertypeDiscussion": true,
- "bEzsignfoldertypeReassignezsignsigner": true,
- "bEzsignfoldertypeReassignuser": true
}, - "eEzsignfolderCompletion": "PerEzsigndocument",
- "sEzsignfoldertypeNameX": "string",
- "fkiBillingentityinternalID": 1,
- "sBillingentityinternalDescriptionX": "Default",
- "fkiEzsigntsarequirementID": 1,
- "sEzsigntsarequirementDescriptionX": "No",
- "sEzsignfolderDescription": "Test eZsign Folder",
- "tEzsignfolderNote": "This is a note",
- "bEzsignfolderIsdisposable": false,
- "eEzsignfolderSendreminderfrequency": "None",
- "dtEzsignfolderDelayedsenddate": "2020-12-31T23:59:59.000Z",
- "dtEzsignfolderDuedate": "2020-12-31 23:59:59",
- "dtEzsignfolderSentdate": "2020-12-31T23:59:59.000Z",
- "dtEzsignfolderScheduledarchive": "2020-12-31 23:59:59",
- "dtEzsignfolderScheduleddispose": "2020-12-31",
- "eEzsignfolderStep": "Completed",
- "dtEzsignfolderClose": "2020-12-31 23:59:59",
- "tEzsignfolderMessage": "Hi everyone,\n\nThis is the document I need you to review.\n\nCould you sign it before Monday please.\n\nBest Regards.\n\nMary",
- "objAudit": {
- "objAuditdetailCreated": {
- "fkiUserID": 70,
- "fkiApikeyID": 99,
- "sUserLoginname": "JohnDoe",
- "sUserLastname": "Doe",
- "sUserFirstname": "John",
- "sApikeyDescriptionX": "Project X",
- "dtAuditdetailDate": "2020-12-31 23:59:59"
}, - "objAuditdetailModified": {
- "fkiUserID": 70,
- "fkiApikeyID": 99,
- "sUserLoginname": "JohnDoe",
- "sUserLastname": "Doe",
- "sUserFirstname": "John",
- "sApikeyDescriptionX": "Project X",
- "dtAuditdetailDate": "2020-12-31 23:59:59"
}
}, - "sEzsignfolderExternalid": "{\"ID\": 1234, \"TAGS\": [\"tag1\", \"tag2\", \"tag3\"]}"
}, - "objEzsignfoldersignerassociation": {
- "pkiEzsignfoldersignerassociationID": 20,
- "fkiEzsignfolderID": 33,
- "bEzsignfoldersignerassociationDelayedsend": true,
- "bEzsignfoldersignerassociationReceivecopy": true,
- "tEzsignfoldersignerassociationMessage": "Hi John,\n\nThis is the document I need you to review.\n\nCould you sign it before Monday please.\n\nBest Regards.\n\nMary",
- "bEzsignfoldersignerassociationAllowsigninginperson": true,
- "objEzsignsignergroup": {
- "pkiEzsignsignergroupID": 27,
- "objEzsignsignergroupDescription": {
- "sEzsignsignergroupDescription1": "RH",
- "sEzsignsignergroupDescription2": "HR"
}, - "sEzsignsignergroupDescriptionX": "HR"
}, - "objUser": {
- "pkiUserID": 70,
- "fkiLanguageID": 2,
- "sUserFirstname": "John",
- "sUserLastname": "Doe",
- "sEmailAddress": "email@example.com"
}, - "objEzsignsigner": {
- "pkiEzsignsignerID": 89,
- "fkiTaxassignmentID": 1,
- "fkiSecretquestionID": 7,
- "fkiUserlogintypeID": 2,
- "sUserlogintypeDescriptionX": "Email and phone or SMS",
- "objContact": {
- "pkiContactID": 21,
- "sContactFirstname": "John",
- "sContactLastname": "Doe",
- "fkiLanguageID": 2,
- "sEmailAddress": "email@example.com",
- "sPhoneE164": "+15149901516",
- "sPhoneExtension": "123",
- "sPhoneE164Cell": "+15149901516"
}
}
}, - "objWebhook": {
- "pksCustomerCode": "demo",
- "bWebhookTest": true,
- "pkiWebhookID": 77,
- "sWebhookDescription": "Import into our system",
- "fkiEzsignfoldertypeID": 5,
- "sEzsignfoldertypeNameX": "Default",
- "eWebhookModule": "Ezsign",
- "eWebhookEzsignevent": "FolderCompleted",
- "eWebhookManagementevent": "UserCreated",
- "sWebhookEmailfailed": "email@example.com",
- "sWebhookApikey": "string",
- "sWebhookSecret": "string",
- "bWebhookIsactive": true,
- "bWebhookIssigned": true,
- "bWebhookSkipsslvalidation": false,
- "objAudit": {
- "objAuditdetailCreated": {
- "fkiUserID": 70,
- "fkiApikeyID": 99,
- "sUserLoginname": "JohnDoe",
- "sUserLastname": "Doe",
- "sUserFirstname": "John",
- "sApikeyDescriptionX": "Project X",
- "dtAuditdetailDate": "2020-12-31 23:59:59"
}, - "objAuditdetailModified": {
- "fkiUserID": 70,
- "fkiApikeyID": 99,
- "sUserLoginname": "JohnDoe",
- "sUserLastname": "Doe",
- "sUserFirstname": "John",
- "sApikeyDescriptionX": "Project X",
- "dtAuditdetailDate": "2020-12-31 23:59:59"
}
}, - "sWebhookEvent": "Ezsign-DocumentCompleted",
- "a_objWebhookheader": [
- {
- "pkiWebhookheaderID": 77,
- "fkiWebhookID": 77,
- "sWebhookheaderName": "Authorization",
- "sWebhookheaderValue": "d75fca0e12b6c671e7f6d4df0cf59e4e"
}
]
}, - "a_objAttempt": [
- {
- "dtAttemptStart": "2020-12-31 23:59:59",
- "sAttemptResult": "Success",
- "iAttemptDuration": 1
}
]
}
The endpoint allows to create one or many elements at once.
required | Array of objects (ezsignfoldertype-RequestCompoundV2) non-empty |
{- "a_objEzsignfoldertype": [
- {
- "pkiEzsignfoldertypeID": 5,
- "objEzsignfoldertypeName": {
- "sEzsignfoldertypeName1": "Embauche",
- "sEzsignfoldertypeName2": "Recruitment"
}, - "fkiBrandingID": 78,
- "fkiBillingentityinternalID": 1,
- "fkiEzsigntsarequirementID": 1,
- "a_fkiUserlogintypeID": [
- 2
], - "a_fkiUsergroupIDAll": [
- 2
], - "a_fkiUsergroupIDRestricted": [
- 2
], - "a_fkiUsergroupIDTemplate": [
- 2
], - "sEmailAddressSigned": "email@example.com",
- "sEmailAddressSummary": "email@example.com",
- "eEzsignfoldertypePrivacylevel": "User",
- "eEzsignfoldertypeSendreminderfrequency": "None",
- "iEzsignfoldertypeArchivaldays": 30,
- "eEzsignfoldertypeDisposal": "Manual",
- "eEzsignfoldertypeCompletion": "PerEzsigndocument",
- "iEzsignfoldertypeDisposaldays": 365,
- "iEzsignfoldertypeDeadlinedays": 5,
- "bEzsignfoldertypeDelegate": true,
- "bEzsignfoldertypeDiscussion": true,
- "bEzsignfoldertypeReassignezsignsigner": true,
- "bEzsignfoldertypeReassignuser": true,
- "bEzsignfoldertypeSendsignedtoezsignsigner": false,
- "bEzsignfoldertypeSendsignedtouser": false,
- "bEzsignfoldertypeSendattachmentezsignsigner": false,
- "bEzsignfoldertypeSendproofezsignsigner": false,
- "bEzsignfoldertypeSendattachmentuser": false,
- "bEzsignfoldertypeSendproofuser": false,
- "bEzsignfoldertypeSendproofemail": false,
- "bEzsignfoldertypeAllowdownloadattachmentezsignsigner": false,
- "bEzsignfoldertypeAllowdownloadproofezsignsigner": false,
- "bEzsignfoldertypeSendproofreceivealldocument": false,
- "bEzsignfoldertypeSendsignedtodocumentowner": false,
- "bEzsignfoldertypeSendsignedtofolderowner": false,
- "bEzsignfoldertypeSendsignedtofullgroup": false,
- "bEzsignfoldertypeSendsignedtolimitedgroup": false,
- "bEzsignfoldertypeSendsignedtocolleague": false,
- "bEzsignfoldertypeSendsummarytodocumentowner": false,
- "bEzsignfoldertypeSendsummarytofolderowner": false,
- "bEzsignfoldertypeSendsummarytofullgroup": false,
- "bEzsignfoldertypeSendsummarytolimitedgroup": false,
- "bEzsignfoldertypeSendsummarytocolleague": false,
- "bEzsignfoldertypeIsactive": true,
- "a_fkiUserIDSigned": [
- 70
], - "a_fkiUserIDSummary": [
- 70
]
}
]
}
{- "mPayload": {
- "a_pkiEzsignfoldertypeID": [
- 5
]
}, - "objDebugPayload": {
- "iVersionMin": 1,
- "iVersionMax": 2,
- "a_RequiredPermission": [
- 117
], - "bVersionDeprecated": false,
- "dtResponseDate": "2020-12-31 23:59:59"
}, - "objDebug": {
- "sMemoryUsage": "11,923MB",
- "sRunTime": "0.6084s",
- "iSQLSelects": 3,
- "iSQLQueries": 6,
- "a_objSQLQuery": [
- {
- "sQuery": "SELECT * FROM table",
- "fDuration": 0.0001
}, - {
- "sQuery": "SELECT * FROM table",
- "fDuration": 0.0001
}
]
}
}
pkiEzsignfoldertypeID required | integer (Field-pkiEzsignfoldertypeID) [ 0 .. 65535 ] Example: 5 The unique ID of the Ezsignfoldertype. |
required | object (ezsignfoldertype-RequestCompoundV2) A Ezsignfoldertype Object and children |
{- "objEzsignfoldertype": {
- "pkiEzsignfoldertypeID": 5,
- "objEzsignfoldertypeName": {
- "sEzsignfoldertypeName1": "Embauche",
- "sEzsignfoldertypeName2": "Recruitment"
}, - "fkiBrandingID": 78,
- "fkiBillingentityinternalID": 1,
- "fkiEzsigntsarequirementID": 1,
- "a_fkiUserlogintypeID": [
- 2
], - "a_fkiUsergroupIDAll": [
- 2
], - "a_fkiUsergroupIDRestricted": [
- 2
], - "a_fkiUsergroupIDTemplate": [
- 2
], - "sEmailAddressSigned": "email@example.com",
- "sEmailAddressSummary": "email@example.com",
- "eEzsignfoldertypePrivacylevel": "User",
- "eEzsignfoldertypeSendreminderfrequency": "None",
- "iEzsignfoldertypeArchivaldays": 30,
- "eEzsignfoldertypeDisposal": "Manual",
- "eEzsignfoldertypeCompletion": "PerEzsigndocument",
- "iEzsignfoldertypeDisposaldays": 365,
- "iEzsignfoldertypeDeadlinedays": 5,
- "bEzsignfoldertypeDelegate": true,
- "bEzsignfoldertypeDiscussion": true,
- "bEzsignfoldertypeReassignezsignsigner": true,
- "bEzsignfoldertypeReassignuser": true,
- "bEzsignfoldertypeSendsignedtoezsignsigner": false,
- "bEzsignfoldertypeSendsignedtouser": false,
- "bEzsignfoldertypeSendattachmentezsignsigner": false,
- "bEzsignfoldertypeSendproofezsignsigner": false,
- "bEzsignfoldertypeSendattachmentuser": false,
- "bEzsignfoldertypeSendproofuser": false,
- "bEzsignfoldertypeSendproofemail": false,
- "bEzsignfoldertypeAllowdownloadattachmentezsignsigner": false,
- "bEzsignfoldertypeAllowdownloadproofezsignsigner": false,
- "bEzsignfoldertypeSendproofreceivealldocument": false,
- "bEzsignfoldertypeSendsignedtodocumentowner": false,
- "bEzsignfoldertypeSendsignedtofolderowner": false,
- "bEzsignfoldertypeSendsignedtofullgroup": false,
- "bEzsignfoldertypeSendsignedtolimitedgroup": false,
- "bEzsignfoldertypeSendsignedtocolleague": false,
- "bEzsignfoldertypeSendsummarytodocumentowner": false,
- "bEzsignfoldertypeSendsummarytofolderowner": false,
- "bEzsignfoldertypeSendsummarytofullgroup": false,
- "bEzsignfoldertypeSendsummarytolimitedgroup": false,
- "bEzsignfoldertypeSendsummarytocolleague": false,
- "bEzsignfoldertypeIsactive": true,
- "a_fkiUserIDSigned": [
- 70
], - "a_fkiUserIDSummary": [
- 70
]
}
}
{- "objDebugPayload": {
- "iVersionMin": 1,
- "iVersionMax": 2,
- "a_RequiredPermission": [
- 117
], - "bVersionDeprecated": false,
- "dtResponseDate": "2020-12-31 23:59:59"
}, - "objDebug": {
- "sMemoryUsage": "11,923MB",
- "sRunTime": "0.6084s",
- "iSQLSelects": 3,
- "iSQLQueries": 6,
- "a_objSQLQuery": [
- {
- "sQuery": "SELECT * FROM table",
- "fDuration": 0.0001
}, - {
- "sQuery": "SELECT * FROM table",
- "fDuration": 0.0001
}
]
}
}
pkiEzsignfoldertypeID required | integer (Field-pkiEzsignfoldertypeID) [ 0 .. 65535 ] Example: 5 The unique ID of the Ezsignfoldertype. |
required | object (ezsignfoldertype-RequestCompound) A Ezsignfoldertype Object and children |
{- "objEzsignfoldertype": {
- "pkiEzsignfoldertypeID": 5,
- "objEzsignfoldertypeName": {
- "sEzsignfoldertypeName1": "Embauche",
- "sEzsignfoldertypeName2": "Recruitment"
}, - "fkiBrandingID": 78,
- "fkiBillingentityinternalID": 1,
- "fkiUsergroupID": 2,
- "fkiUsergroupIDRestricted": 2,
- "fkiEzsigntsarequirementID": 1,
- "sEmailAddressSigned": "email@example.com",
- "sEmailAddressSummary": "email@example.com",
- "eEzsignfoldertypePrivacylevel": "User",
- "eEzsignfoldertypeSendreminderfrequency": "None",
- "iEzsignfoldertypeArchivaldays": 30,
- "eEzsignfoldertypeDisposal": "Manual",
- "eEzsignfoldertypeCompletion": "PerEzsigndocument",
- "iEzsignfoldertypeDisposaldays": 365,
- "iEzsignfoldertypeDeadlinedays": 5,
- "bEzsignfoldertypeDelegate": true,
- "bEzsignfoldertypeDiscussion": true,
- "bEzsignfoldertypeReassignezsignsigner": true,
- "bEzsignfoldertypeReassignuser": true,
- "bEzsignfoldertypeSendsignedtoezsignsigner": false,
- "bEzsignfoldertypeSendsignedtouser": false,
- "bEzsignfoldertypeSendattachmentezsignsigner": false,
- "bEzsignfoldertypeSendproofezsignsigner": false,
- "bEzsignfoldertypeSendattachmentuser": false,
- "bEzsignfoldertypeSendproofuser": false,
- "bEzsignfoldertypeSendproofemail": false,
- "bEzsignfoldertypeAllowdownloadattachmentezsignsigner": false,
- "bEzsignfoldertypeAllowdownloadproofezsignsigner": false,
- "bEzsignfoldertypeSendproofreceivealldocument": false,
- "bEzsignfoldertypeSendsignedtodocumentowner": false,
- "bEzsignfoldertypeSendsignedtofolderowner": false,
- "bEzsignfoldertypeSendsignedtofullgroup": false,
- "bEzsignfoldertypeSendsignedtolimitedgroup": false,
- "bEzsignfoldertypeSendsignedtocolleague": false,
- "bEzsignfoldertypeSendsummarytodocumentowner": false,
- "bEzsignfoldertypeSendsummarytofolderowner": false,
- "bEzsignfoldertypeSendsummarytofullgroup": false,
- "bEzsignfoldertypeSendsummarytolimitedgroup": false,
- "bEzsignfoldertypeSendsummarytocolleague": false,
- "bEzsignfoldertypeIsactive": true,
- "a_fkiUserIDSigned": [
- 70
], - "a_fkiUserIDSummary": [
- 70
]
}
}
{- "objDebugPayload": {
- "iVersionMin": 1,
- "iVersionMax": 2,
- "a_RequiredPermission": [
- 117
], - "bVersionDeprecated": false,
- "dtResponseDate": "2020-12-31 23:59:59"
}, - "objDebug": {
- "sMemoryUsage": "11,923MB",
- "sRunTime": "0.6084s",
- "iSQLSelects": 3,
- "iSQLQueries": 6,
- "a_objSQLQuery": [
- {
- "sQuery": "SELECT * FROM table",
- "fDuration": 0.0001
}, - {
- "sQuery": "SELECT * FROM table",
- "fDuration": 0.0001
}
]
}
}
pkiEzsignfoldertypeID required | integer (Field-pkiEzsignfoldertypeID) [ 0 .. 65535 ] Example: 5 The unique ID of the Ezsignfoldertype. |
{- "mPayload": {
- "objEzsignfoldertype": {
- "pkiEzsignfoldertypeID": 5,
- "objEzsignfoldertypeName": {
- "sEzsignfoldertypeName1": "Embauche",
- "sEzsignfoldertypeName2": "Recruitment"
}, - "fkiBrandingID": 78,
- "fkiBillingentityinternalID": 1,
- "fkiEzsigntsarequirementID": 1,
- "sBrandingDescriptionX": "Company X",
- "sBillingentityinternalDescriptionX": "Default",
- "sEzsigntsarequirementDescriptionX": "No",
- "sEmailAddressSigned": "email@example.com",
- "sEmailAddressSummary": "email@example.com",
- "eEzsignfoldertypePrivacylevel": "User",
- "eEzsignfoldertypeSendreminderfrequency": "None",
- "iEzsignfoldertypeArchivaldays": 30,
- "eEzsignfoldertypeDisposal": "Manual",
- "eEzsignfoldertypeCompletion": "PerEzsigndocument",
- "iEzsignfoldertypeDisposaldays": 365,
- "iEzsignfoldertypeDeadlinedays": 5,
- "bEzsignfoldertypeDelegate": true,
- "bEzsignfoldertypeDiscussion": true,
- "bEzsignfoldertypeReassignezsignsigner": true,
- "bEzsignfoldertypeReassignuser": true,
- "bEzsignfoldertypeSendsignedtoezsignsigner": false,
- "bEzsignfoldertypeSendsignedtouser": false,
- "bEzsignfoldertypeSendattachmentezsignsigner": false,
- "bEzsignfoldertypeSendproofezsignsigner": false,
- "bEzsignfoldertypeSendattachmentuser": false,
- "bEzsignfoldertypeSendproofuser": false,
- "bEzsignfoldertypeSendproofemail": false,
- "bEzsignfoldertypeAllowdownloadattachmentezsignsigner": false,
- "bEzsignfoldertypeAllowdownloadproofezsignsigner": false,
- "bEzsignfoldertypeSendproofreceivealldocument": false,
- "bEzsignfoldertypeSendsignedtodocumentowner": false,
- "bEzsignfoldertypeSendsignedtofolderowner": false,
- "bEzsignfoldertypeSendsignedtofullgroup": false,
- "bEzsignfoldertypeSendsignedtolimitedgroup": false,
- "bEzsignfoldertypeSendsignedtocolleague": false,
- "bEzsignfoldertypeSendsummarytodocumentowner": false,
- "bEzsignfoldertypeSendsummarytofolderowner": false,
- "bEzsignfoldertypeSendsummarytofullgroup": false,
- "bEzsignfoldertypeSendsummarytolimitedgroup": false,
- "bEzsignfoldertypeSendsummarytocolleague": false,
- "bEzsignfoldertypeIsactive": true,
- "a_objUserlogintype": [
- {
- "pkiUserlogintypeID": 2,
- "objUserlogintypeDescription": {
- "sUserlogintypeDescription1": "Courriel et téléphone ou SMS",
- "sUserlogintypeDescription2": "Email and phone or SMS"
}, - "sUserlogintypeDescriptionX": "Email and phone or SMS"
}
], - "a_objUsergroupAll": [
- {
- "pkiUsergroupID": 2,
- "objUsergroupName": {
- "sUsergroupName1": "Direction",
- "sUsergroupName2": "Management"
}, - "sUsergroupNameX": "Administration"
}
], - "a_objUsergroupRestricted": [
- {
- "pkiUsergroupID": 2,
- "objUsergroupName": {
- "sUsergroupName1": "Direction",
- "sUsergroupName2": "Management"
}, - "sUsergroupNameX": "Administration"
}
], - "a_objUsergroupTemplate": [
- {
- "pkiUsergroupID": 2,
- "objUsergroupName": {
- "sUsergroupName1": "Direction",
- "sUsergroupName2": "Management"
}, - "sUsergroupNameX": "Administration"
}
], - "a_fkiUserIDSigned": [
- 70
], - "a_fkiUserIDSummary": [
- 70
]
}
}, - "objDebugPayload": {
- "iVersionMin": 1,
- "iVersionMax": 2,
- "a_RequiredPermission": [
- 117
], - "bVersionDeprecated": false,
- "dtResponseDate": "2020-12-31 23:59:59"
}, - "objDebug": {
- "sMemoryUsage": "11,923MB",
- "sRunTime": "0.6084s",
- "iSQLSelects": 3,
- "iSQLQueries": 6,
- "a_objSQLQuery": [
- {
- "sQuery": "SELECT * FROM table",
- "fDuration": 0.0001
}, - {
- "sQuery": "SELECT * FROM table",
- "fDuration": 0.0001
}
]
}
}
pkiEzsignfoldertypeID required | integer (Field-pkiEzsignfoldertypeID) [ 0 .. 65535 ] Example: 5 The unique ID of the Ezsignfoldertype. |
{- "mPayload": {
- "objEzsignfoldertype": {
- "pkiEzsignfoldertypeID": 5,
- "objEzsignfoldertypeName": {
- "sEzsignfoldertypeName1": "Embauche",
- "sEzsignfoldertypeName2": "Recruitment"
}, - "fkiBrandingID": 78,
- "fkiBillingentityinternalID": 1,
- "fkiUsergroupID": 2,
- "fkiUsergroupIDRestricted": 2,
- "fkiEzsigntsarequirementID": 1,
- "sBrandingDescriptionX": "Company X",
- "sBillingentityinternalDescriptionX": "Default",
- "sEzsigntsarequirementDescriptionX": "No",
- "sEmailAddressSigned": "email@example.com",
- "sEmailAddressSummary": "email@example.com",
- "sUsergroupNameX": "Administration",
- "sUsergroupNameXRestricted": "Administration",
- "eEzsignfoldertypePrivacylevel": "User",
- "eEzsignfoldertypeSendreminderfrequency": "None",
- "iEzsignfoldertypeArchivaldays": 30,
- "eEzsignfoldertypeDisposal": "Manual",
- "eEzsignfoldertypeCompletion": "PerEzsigndocument",
- "iEzsignfoldertypeDisposaldays": 365,
- "iEzsignfoldertypeDeadlinedays": 5,
- "bEzsignfoldertypeDelegate": true,
- "bEzsignfoldertypeDiscussion": true,
- "bEzsignfoldertypeReassignezsignsigner": true,
- "bEzsignfoldertypeReassignuser": true,
- "bEzsignfoldertypeSendsignedtoezsignsigner": false,
- "bEzsignfoldertypeSendsignedtouser": false,
- "bEzsignfoldertypeSendattachmentezsignsigner": false,
- "bEzsignfoldertypeSendproofezsignsigner": false,
- "bEzsignfoldertypeSendattachmentuser": false,
- "bEzsignfoldertypeSendproofuser": false,
- "bEzsignfoldertypeSendproofemail": false,
- "bEzsignfoldertypeAllowdownloadattachmentezsignsigner": false,
- "bEzsignfoldertypeAllowdownloadproofezsignsigner": false,
- "bEzsignfoldertypeSendproofreceivealldocument": false,
- "bEzsignfoldertypeSendsignedtodocumentowner": false,
- "bEzsignfoldertypeSendsignedtofolderowner": false,
- "bEzsignfoldertypeSendsignedtofullgroup": false,
- "bEzsignfoldertypeSendsignedtolimitedgroup": false,
- "bEzsignfoldertypeSendsignedtocolleague": false,
- "bEzsignfoldertypeSendsummarytodocumentowner": false,
- "bEzsignfoldertypeSendsummarytofolderowner": false,
- "bEzsignfoldertypeSendsummarytofullgroup": false,
- "bEzsignfoldertypeSendsummarytolimitedgroup": false,
- "bEzsignfoldertypeSendsummarytocolleague": false,
- "bEzsignfoldertypeIsactive": true,
- "a_objUserlogintype": [
- {
- "pkiUserlogintypeID": 2,
- "objUserlogintypeDescription": {
- "sUserlogintypeDescription1": "Courriel et téléphone ou SMS",
- "sUserlogintypeDescription2": "Email and phone or SMS"
}, - "sUserlogintypeDescriptionX": "Email and phone or SMS"
}
], - "a_fkiUserIDSigned": [
- 70
], - "a_fkiUserIDSummary": [
- 70
]
}
}, - "objDebugPayload": {
- "iVersionMin": 1,
- "iVersionMax": 2,
- "a_RequiredPermission": [
- 117
], - "bVersionDeprecated": false,
- "dtResponseDate": "2020-12-31 23:59:59"
}, - "objDebug": {
- "sMemoryUsage": "11,923MB",
- "sRunTime": "0.6084s",
- "iSQLSelects": 3,
- "iSQLQueries": 6,
- "a_objSQLQuery": [
- {
- "sQuery": "SELECT * FROM table",
- "fDuration": 0.0001
}, - {
- "sQuery": "SELECT * FROM table",
- "fDuration": 0.0001
}
]
}
}
Enum values that can be filtered in query parameter sFilter:
Variable | Valid values |
---|---|
eEzsignfoldertypePrivacylevel | User Usergroup |
eOrderBy | string Enum: "pkiEzsignfoldertypeID_ASC" "pkiEzsignfoldertypeID_DESC" "eEzsignfoldertypePrivacylevel_ASC" "eEzsignfoldertypePrivacylevel_DESC" "sEzsignfoldertypeNameX_ASC" … 3 more Specify how you want the results to be sorted |
iRowMax | integer (Field-iRowMax) [ 1 .. 10000 ] Example: iRowMax=100 The maximum numbers of results to be returned. When the content-type is application/json there is an implicit default of 10 000. When it's application/vnd.openxmlformats-officedocument.spreadsheetml.sheet the is no implicit default so if you do not specify iRowMax, all records will be returned. |
iRowOffset | integer (Field-iRowOffset) >= 0 Default: 0 Example: iRowOffset=0 The starting element from where to start retrieving the results. For example if you started at iRowOffset=0 and asked for iRowMax=100, to get the next 100 results, you could specify iRowOffset=100&iRowMax=100, |
sFilter | string (Field-sFilter) Example: sFilter=bField1 eq true and iField2 gte 0 and iField2 lte 1000 and sField3 eq 'Other' and eField4 eq 'Paid' and sField5 like '%needle%' and iField6 in '1,2,3' and dtField7 rg '=m,=3mm' The filter to apply to the request to limit results. |
Accept-Language | string (Header-Accept-Language) Enum: "*" "en" "fr" Example: en The language of the returned content.
|
{- "mPayload": {
- "a_objEzsignfoldertype": [
- {
- "pkiEzsignfoldertypeID": 5,
- "eEzsignfoldertypePrivacylevel": "User",
- "sEzsignfoldertypeNameX": "Default",
- "bEzsignfoldertypeIsactive": true
}
], - "iRowReturned": 100,
- "iRowFiltered": 533
}, - "objDebugPayload": {
- "iVersionMin": 1,
- "iVersionMax": 2,
- "a_RequiredPermission": [
- 117
], - "bVersionDeprecated": false,
- "dtResponseDate": "2020-12-31 23:59:59",
- "a_Filter": {
- "a_AutoType": {
- "property1": "string",
- "property2": "string"
}, - "a_AutoTypeHaving": {
- "property1": "string",
- "property2": "string"
}, - "a_Enum": {
- "property1": {
- "property1": "string",
- "property2": "string"
}, - "property2": {
- "property1": "string",
- "property2": "string"
}
}
}, - "a_OrderBy": {
- "property1": "string",
- "property2": "string"
}, - "iRowMax": 100,
- "iRowOffset": 0
}, - "objDebug": {
- "sMemoryUsage": "11,923MB",
- "sRunTime": "0.6084s",
- "iSQLSelects": 3,
- "iSQLQueries": 6,
- "a_objSQLQuery": [
- {
- "sQuery": "SELECT * FROM table",
- "fDuration": 0.0001
}, - {
- "sQuery": "SELECT * FROM table",
- "fDuration": 0.0001
}
]
}
}
Get the list of Ezsignfoldertype to be used in a dropdown or autocomplete control.
sSelector required | string Enum: "Active" "All" "EzsigntemplateEdit" "EzsigntemplateUsergroup" The type of Ezsignfoldertypes to return |
eFilterActive | string Default: "Active" Enum: "All" "Active" "Inactive" Specify which results we want to display. |
sQuery | string Allow to filter the returned results |
Accept-Language | string (Header-Accept-Language) Enum: "*" "en" "fr" Example: en The language of the returned content.
|
{- "mPayload": {
- "a_objEzsignfoldertype": [
- {
- "eEzsignfoldertypePrivacylevel": "User",
- "sEzsignfoldertypeNameX": "Default",
- "pkiEzsignfoldertypeID": 5,
- "bEzsignfoldertypeIsactive": true
}
]
}, - "objDebugPayload": {
- "iVersionMin": 1,
- "iVersionMax": 2,
- "a_RequiredPermission": [
- 117
], - "bVersionDeprecated": false,
- "dtResponseDate": "2020-12-31 23:59:59"
}, - "objDebug": {
- "sMemoryUsage": "11,923MB",
- "sRunTime": "0.6084s",
- "iSQLSelects": 3,
- "iSQLQueries": 6,
- "a_objSQLQuery": [
- {
- "sQuery": "SELECT * FROM table",
- "fDuration": 0.0001
}, - {
- "sQuery": "SELECT * FROM table",
- "fDuration": 0.0001
}
]
}
}
Ezsignformfieldgroup contains detail about a specific group of form blocks on a page of a Ezsigndocument
The endpoint allows to create one or many elements at once.
required | Array of objects (ezsignformfieldgroup-RequestCompound) non-empty |
{- "a_objEzsignformfieldgroup": [
- {
- "pkiEzsignformfieldgroupID": 26,
- "fkiEzsigndocumentID": 97,
- "eEzsignformfieldgroupType": "Text",
- "eEzsignformfieldgroupSignerrequirement": "One",
- "sEzsignformfieldgroupLabel": "Allergies",
- "iEzsignformfieldgroupStep": 1,
- "sEzsignformfieldgroupDefaultvalue": "Foo",
- "iEzsignformfieldgroupFilledmin": 1,
- "iEzsignformfieldgroupFilledmax": 2,
- "bEzsignformfieldgroupReadonly": true,
- "iEzsignformfieldgroupMaxlength": 75,
- "bEzsignformfieldgroupEncrypted": true,
- "sEzsignformfieldgroupRegexp": "/[-0-9a-zA-Z.+_]+@[-0-9a-zA-Z.+_]+.[a-zA-Z]{2,4}/",
- "tEzsignformfieldgroupTooltip": "Please enter a valid email address",
- "eEzsignformfieldgroupTooltipposition": "TopLeft",
- "eEzsignformfieldgroupTextvalidation": "None",
- "a_objEzsignformfieldgroupsigner": [
- {
- "pkiEzsignformfieldgroupsignerID": 81,
- "fkiEzsignfoldersignerassociationID": 20
}
], - "a_objDropdownElement": [
- {
- "sLabel": "string",
- "sValue": "string"
}
], - "a_objEzsignformfield": [
- {
- "pkiEzsignformfieldID": 32,
- "iEzsignpagePagenumber": 1,
- "sEzsignformfieldLabel": "Peanuts",
- "sEzsignformfieldValue": "Yes",
- "iEzsignformfieldX": 200,
- "iEzsignformfieldY": 300,
- "iEzsignformfieldWidth": 102,
- "iEzsignformfieldHeight": 22,
- "bEzsignformfieldAutocomplete": true,
- "bEzsignformfieldSelected": true,
- "sEzsignformfieldEnteredvalue": "Montreal",
- "eEzsignformfieldDependencyrequirement": "AllOf",
- "a_objEzsignelementdependency": [
- {
- "pkiEzsignelementdependencyID": 89,
- "fkiEzsignformfieldIDValidation": 32,
- "fkiEzsignformfieldgroupIDValidation": 26,
- "sEzsignelementdependencyEzsignformfieldgrouplabel": "Allergies",
- "sEzsignelementdependencyEzsignformfieldlabel": "Peanuts",
- "eEzsignelementdependencyValidation": "Value",
- "bEzsignelementdependencySelected": false,
- "eEzsignelementdependencyOperator": "eq",
- "sEzsignelementdependencyValue": "Montreal"
}
]
}
]
}
]
}
{- "mPayload": {
- "a_pkiEzsignformfieldgroupID": [
- 26
]
}, - "objDebugPayload": {
- "iVersionMin": 1,
- "iVersionMax": 2,
- "a_RequiredPermission": [
- 117
], - "bVersionDeprecated": false,
- "dtResponseDate": "2020-12-31 23:59:59"
}, - "objDebug": {
- "sMemoryUsage": "11,923MB",
- "sRunTime": "0.6084s",
- "iSQLSelects": 3,
- "iSQLQueries": 6,
- "a_objSQLQuery": [
- {
- "sQuery": "SELECT * FROM table",
- "fDuration": 0.0001
}, - {
- "sQuery": "SELECT * FROM table",
- "fDuration": 0.0001
}
]
}
}
pkiEzsignformfieldgroupID required | integer (Field-pkiEzsignformfieldgroupID) >= 0 Example: 26 The unique ID of the Ezsignformfieldgroup |
{- "objDebugPayload": {
- "iVersionMin": 1,
- "iVersionMax": 2,
- "a_RequiredPermission": [
- 117
], - "bVersionDeprecated": false,
- "dtResponseDate": "2020-12-31 23:59:59"
}, - "objDebug": {
- "sMemoryUsage": "11,923MB",
- "sRunTime": "0.6084s",
- "iSQLSelects": 3,
- "iSQLQueries": 6,
- "a_objSQLQuery": [
- {
- "sQuery": "SELECT * FROM table",
- "fDuration": 0.0001
}, - {
- "sQuery": "SELECT * FROM table",
- "fDuration": 0.0001
}
]
}
}
pkiEzsignformfieldgroupID required | integer (Field-pkiEzsignformfieldgroupID) >= 0 Example: 26 The unique ID of the Ezsignformfieldgroup |
required | object (ezsignformfieldgroup-RequestCompound) An Ezsignformfieldgroup Object and children to create a complete structure |
{- "objEzsignformfieldgroup": {
- "pkiEzsignformfieldgroupID": 26,
- "fkiEzsigndocumentID": 97,
- "eEzsignformfieldgroupType": "Text",
- "eEzsignformfieldgroupSignerrequirement": "One",
- "sEzsignformfieldgroupLabel": "Allergies",
- "iEzsignformfieldgroupStep": 1,
- "sEzsignformfieldgroupDefaultvalue": "Foo",
- "iEzsignformfieldgroupFilledmin": 1,
- "iEzsignformfieldgroupFilledmax": 2,
- "bEzsignformfieldgroupReadonly": true,
- "iEzsignformfieldgroupMaxlength": 75,
- "bEzsignformfieldgroupEncrypted": true,
- "sEzsignformfieldgroupRegexp": "/[-0-9a-zA-Z.+_]+@[-0-9a-zA-Z.+_]+.[a-zA-Z]{2,4}/",
- "tEzsignformfieldgroupTooltip": "Please enter a valid email address",
- "eEzsignformfieldgroupTooltipposition": "TopLeft",
- "eEzsignformfieldgroupTextvalidation": "None",
- "a_objEzsignformfieldgroupsigner": [
- {
- "pkiEzsignformfieldgroupsignerID": 81,
- "fkiEzsignfoldersignerassociationID": 20
}
], - "a_objDropdownElement": [
- {
- "sLabel": "string",
- "sValue": "string"
}
], - "a_objEzsignformfield": [
- {
- "pkiEzsignformfieldID": 32,
- "iEzsignpagePagenumber": 1,
- "sEzsignformfieldLabel": "Peanuts",
- "sEzsignformfieldValue": "Yes",
- "iEzsignformfieldX": 200,
- "iEzsignformfieldY": 300,
- "iEzsignformfieldWidth": 102,
- "iEzsignformfieldHeight": 22,
- "bEzsignformfieldAutocomplete": true,
- "bEzsignformfieldSelected": true,
- "sEzsignformfieldEnteredvalue": "Montreal",
- "eEzsignformfieldDependencyrequirement": "AllOf",
- "a_objEzsignelementdependency": [
- {
- "pkiEzsignelementdependencyID": 89,
- "fkiEzsignformfieldIDValidation": 32,
- "fkiEzsignformfieldgroupIDValidation": 26,
- "sEzsignelementdependencyEzsignformfieldgrouplabel": "Allergies",
- "sEzsignelementdependencyEzsignformfieldlabel": "Peanuts",
- "eEzsignelementdependencyValidation": "Value",
- "bEzsignelementdependencySelected": false,
- "eEzsignelementdependencyOperator": "eq",
- "sEzsignelementdependencyValue": "Montreal"
}
]
}
]
}
}
{- "objDebugPayload": {
- "iVersionMin": 1,
- "iVersionMax": 2,
- "a_RequiredPermission": [
- 117
], - "bVersionDeprecated": false,
- "dtResponseDate": "2020-12-31 23:59:59"
}, - "objDebug": {
- "sMemoryUsage": "11,923MB",
- "sRunTime": "0.6084s",
- "iSQLSelects": 3,
- "iSQLQueries": 6,
- "a_objSQLQuery": [
- {
- "sQuery": "SELECT * FROM table",
- "fDuration": 0.0001
}, - {
- "sQuery": "SELECT * FROM table",
- "fDuration": 0.0001
}
]
}
}
pkiEzsignformfieldgroupID required | integer (Field-pkiEzsignformfieldgroupID) >= 0 Example: 26 The unique ID of the Ezsignformfieldgroup |
{- "mPayload": {
- "objEzsignformfieldgroup": {
- "pkiEzsignformfieldgroupID": 26,
- "fkiEzsigndocumentID": 97,
- "eEzsignformfieldgroupType": "Text",
- "eEzsignformfieldgroupSignerrequirement": "One",
- "sEzsignformfieldgroupLabel": "Allergies",
- "iEzsignformfieldgroupStep": 1,
- "sEzsignformfieldgroupDefaultvalue": "Foo",
- "iEzsignformfieldgroupFilledmin": 1,
- "iEzsignformfieldgroupFilledmax": 2,
- "bEzsignformfieldgroupReadonly": true,
- "iEzsignformfieldgroupMaxlength": 75,
- "bEzsignformfieldgroupEncrypted": true,
- "eEzsignformfieldgroupTextvalidation": "None",
- "sEzsignformfieldgroupRegexp": "/[-0-9a-zA-Z.+_]+@[-0-9a-zA-Z.+_]+.[a-zA-Z]{2,4}/",
- "tEzsignformfieldgroupTooltip": "Please enter a valid email address",
- "eEzsignformfieldgroupTooltipposition": "TopLeft",
- "a_objEzsignformfield": [
- {
- "pkiEzsignformfieldID": 32,
- "iEzsignpagePagenumber": 1,
- "sEzsignformfieldLabel": "Peanuts",
- "sEzsignformfieldValue": "Yes",
- "iEzsignformfieldX": 200,
- "iEzsignformfieldY": 300,
- "iEzsignformfieldWidth": 102,
- "iEzsignformfieldHeight": 22,
- "bEzsignformfieldAutocomplete": true,
- "bEzsignformfieldSelected": true,
- "sEzsignformfieldEnteredvalue": "Montreal",
- "eEzsignformfieldDependencyrequirement": "AllOf",
- "a_objEzsignelementdependency": [
- {
- "pkiEzsignelementdependencyID": 89,
- "fkiEzsignformfieldID": 32,
- "fkiEzsignsignatureID": 49,
- "fkiEzsignformfieldIDValidation": 32,
- "fkiEzsignformfieldgroupIDValidation": 26,
- "eEzsignelementdependencyValidation": "Value",
- "bEzsignelementdependencySelected": false,
- "eEzsignelementdependencyOperator": "eq",
- "sEzsignelementdependencyValue": "Montreal"
}
]
}
], - "a_objDropdownElement": [
- {
- "sLabel": "string",
- "sValue": "string"
}
], - "a_objEzsignformfieldgroupsigner": [
- {
- "pkiEzsignformfieldgroupsignerID": 81,
- "fkiEzsignfoldersignerassociationID": 20
}
]
}
}, - "objDebugPayload": {
- "iVersionMin": 1,
- "iVersionMax": 2,
- "a_RequiredPermission": [
- 117
], - "bVersionDeprecated": false,
- "dtResponseDate": "2020-12-31 23:59:59"
}, - "objDebug": {
- "sMemoryUsage": "11,923MB",
- "sRunTime": "0.6084s",
- "iSQLSelects": 3,
- "iSQLQueries": 6,
- "a_objSQLQuery": [
- {
- "sQuery": "SELECT * FROM table",
- "fDuration": 0.0001
}, - {
- "sQuery": "SELECT * FROM table",
- "fDuration": 0.0001
}
]
}
}
pkiEzsignpageID required | integer (Field-pkiEzsignpageID) >= 0 Example: 64 The unique ID of the Ezsignpage |
Request for POST /1/object/ezsignpage/{pkiEzsignpageID}/consult
Intentionally empty for future-proofing
{ }
{- "objDebugPayload": {
- "iVersionMin": 1,
- "iVersionMax": 2,
- "a_RequiredPermission": [
- 117
], - "bVersionDeprecated": false,
- "dtResponseDate": "2020-12-31 23:59:59"
}, - "objDebug": {
- "sMemoryUsage": "11,923MB",
- "sRunTime": "0.6084s",
- "iSQLSelects": 3,
- "iSQLQueries": 6,
- "a_objSQLQuery": [
- {
- "sQuery": "SELECT * FROM table",
- "fDuration": 0.0001
}, - {
- "sQuery": "SELECT * FROM table",
- "fDuration": 0.0001
}
]
}
}
Ezsignsignature contains detail about a specific signature block on a page of a Ezsigndocument
The endpoint allows to create one or many elements at once.
required | Array of objects (ezsignsignature-RequestCompound) non-empty |
{- "a_objEzsignsignature": [
- {
- "pkiEzsignsignatureID": 49,
- "fkiEzsignfoldersignerassociationID": 20,
- "iEzsignpagePagenumber": 1,
- "iEzsignsignatureX": 200,
- "iEzsignsignatureY": 300,
- "iEzsignsignatureWidth": 200,
- "iEzsignsignatureHeight": 200,
- "iEzsignsignatureStep": 1,
- "eEzsignsignatureType": "Name",
- "fkiEzsigndocumentID": 97,
- "tEzsignsignatureTooltip": "Please sign here if you agree to the terms",
- "eEzsignsignatureTooltipposition": "TopLeft",
- "eEzsignsignatureFont": "Normal",
- "fkiEzsignfoldersignerassociationIDValidation": 20,
- "bEzsignsignatureRequired": true,
- "eEzsignsignatureAttachmentnamesource": "Description",
- "sEzsignsignatureAttachmentdescription": "Attachment",
- "iEzsignsignatureValidationstep": 1,
- "iEzsignsignatureMaxlength": 75,
- "eEzsignsignatureTextvalidation": "None",
- "sEzsignsignatureRegexp": "/[-0-9a-zA-Z.+_]+@[-0-9a-zA-Z.+_]+.[a-zA-Z]{2,4}/",
- "eEzsignsignatureDependencyrequirement": "AllOf",
- "bEzsignsignatureCustomdate": true,
- "a_objEzsignsignaturecustomdate": [
- {
- "pkiEzsignsignaturecustomdateID": 27,
- "iEzsignsignaturecustomdateX": 200,
- "iEzsignsignaturecustomdateY": 300,
- "iEzsignsignaturecustomdateOffsetx": 200,
- "iEzsignsignaturecustomdateOffsety": 300,
- "sEzsignsignaturecustomdateFormat": "Signature date: {YYYY}/{MM}/{DD} {hh}:{mm}{ss} {Z}"
}
], - "a_objEzsignelementdependency": [
- {
- "pkiEzsignelementdependencyID": 89,
- "fkiEzsignformfieldIDValidation": 32,
- "fkiEzsignformfieldgroupIDValidation": 26,
- "sEzsignelementdependencyEzsignformfieldgrouplabel": "Allergies",
- "sEzsignelementdependencyEzsignformfieldlabel": "Peanuts",
- "eEzsignelementdependencyValidation": "Value",
- "bEzsignelementdependencySelected": false,
- "eEzsignelementdependencyOperator": "eq",
- "sEzsignelementdependencyValue": "Montreal"
}
]
}
]
}
{- "mPayload": {
- "a_pkiEzsignsignatureID": [
- 49
]
}, - "objDebugPayload": {
- "iVersionMin": 1,
- "iVersionMax": 2,
- "a_RequiredPermission": [
- 117
], - "bVersionDeprecated": false,
- "dtResponseDate": "2020-12-31 23:59:59"
}, - "objDebug": {
- "sMemoryUsage": "11,923MB",
- "sRunTime": "0.6084s",
- "iSQLSelects": 3,
- "iSQLQueries": 6,
- "a_objSQLQuery": [
- {
- "sQuery": "SELECT * FROM table",
- "fDuration": 0.0001
}, - {
- "sQuery": "SELECT * FROM table",
- "fDuration": 0.0001
}
]
}
}
The endpoint allows to create one or many elements at once.
The array can contain simple (Just the object) or compound (The object and its child) objects.
Creating compound elements allows to reduce the multiple requests to create all child objects.
object (ezsignsignature-Request) An Ezsignsignature Object | |
object (ezsignsignature-RequestCompound) An Ezsignsignature Object and children to create a complete structure |
[- {
- "objEzsignsignature": {
- "pkiEzsignsignatureID": 49,
- "fkiEzsignfoldersignerassociationID": 20,
- "iEzsignpagePagenumber": 1,
- "iEzsignsignatureX": 200,
- "iEzsignsignatureY": 300,
- "iEzsignsignatureWidth": 200,
- "iEzsignsignatureHeight": 200,
- "iEzsignsignatureStep": 1,
- "eEzsignsignatureType": "Name",
- "fkiEzsigndocumentID": 97,
- "tEzsignsignatureTooltip": "Please sign here if you agree to the terms",
- "eEzsignsignatureTooltipposition": "TopLeft",
- "eEzsignsignatureFont": "Normal",
- "fkiEzsignfoldersignerassociationIDValidation": 20,
- "bEzsignsignatureRequired": true,
- "eEzsignsignatureAttachmentnamesource": "Description",
- "sEzsignsignatureAttachmentdescription": "Attachment",
- "iEzsignsignatureValidationstep": 1,
- "iEzsignsignatureMaxlength": 75,
- "eEzsignsignatureTextvalidation": "None",
- "sEzsignsignatureRegexp": "/[-0-9a-zA-Z.+_]+@[-0-9a-zA-Z.+_]+.[a-zA-Z]{2,4}/",
- "eEzsignsignatureDependencyrequirement": "AllOf"
}, - "objEzsignsignatureCompound": {
- "pkiEzsignsignatureID": 49,
- "fkiEzsignfoldersignerassociationID": 20,
- "iEzsignpagePagenumber": 1,
- "iEzsignsignatureX": 200,
- "iEzsignsignatureY": 300,
- "iEzsignsignatureWidth": 200,
- "iEzsignsignatureHeight": 200,
- "iEzsignsignatureStep": 1,
- "eEzsignsignatureType": "Name",
- "fkiEzsigndocumentID": 97,
- "tEzsignsignatureTooltip": "Please sign here if you agree to the terms",
- "eEzsignsignatureTooltipposition": "TopLeft",
- "eEzsignsignatureFont": "Normal",
- "fkiEzsignfoldersignerassociationIDValidation": 20,
- "bEzsignsignatureRequired": true,
- "eEzsignsignatureAttachmentnamesource": "Description",
- "sEzsignsignatureAttachmentdescription": "Attachment",
- "iEzsignsignatureValidationstep": 1,
- "iEzsignsignatureMaxlength": 75,
- "eEzsignsignatureTextvalidation": "None",
- "sEzsignsignatureRegexp": "/[-0-9a-zA-Z.+_]+@[-0-9a-zA-Z.+_]+.[a-zA-Z]{2,4}/",
- "eEzsignsignatureDependencyrequirement": "AllOf",
- "bEzsignsignatureCustomdate": true,
- "a_objEzsignsignaturecustomdate": [
- {
- "pkiEzsignsignaturecustomdateID": 27,
- "iEzsignsignaturecustomdateX": 200,
- "iEzsignsignaturecustomdateY": 300,
- "iEzsignsignaturecustomdateOffsetx": 200,
- "iEzsignsignaturecustomdateOffsety": 300,
- "sEzsignsignaturecustomdateFormat": "Signature date: {YYYY}/{MM}/{DD} {hh}:{mm}{ss} {Z}"
}
], - "a_objEzsignelementdependency": [
- {
- "pkiEzsignelementdependencyID": 89,
- "fkiEzsignformfieldIDValidation": 32,
- "fkiEzsignformfieldgroupIDValidation": 26,
- "sEzsignelementdependencyEzsignformfieldgrouplabel": "Allergies",
- "sEzsignelementdependencyEzsignformfieldlabel": "Peanuts",
- "eEzsignelementdependencyValidation": "Value",
- "bEzsignelementdependencySelected": false,
- "eEzsignelementdependencyOperator": "eq",
- "sEzsignelementdependencyValue": "Montreal"
}
]
}
}
]
{- "mPayload": {
- "a_pkiEzsignsignatureID": [
- 49
]
}, - "objDebugPayload": {
- "iVersionMin": 1,
- "iVersionMax": 2,
- "a_RequiredPermission": [
- 117
], - "bVersionDeprecated": false,
- "dtResponseDate": "2020-12-31 23:59:59"
}, - "objDebug": {
- "sMemoryUsage": "11,923MB",
- "sRunTime": "0.6084s",
- "iSQLSelects": 3,
- "iSQLQueries": 6,
- "a_objSQLQuery": [
- {
- "sQuery": "SELECT * FROM table",
- "fDuration": 0.0001
}, - {
- "sQuery": "SELECT * FROM table",
- "fDuration": 0.0001
}
]
}
}
pkiEzsignsignatureID required | integer (Field-pkiEzsignsignatureID) >= 0 Example: 49 The unique ID of the Ezsignsignature |
{- "objDebugPayload": {
- "iVersionMin": 1,
- "iVersionMax": 2,
- "a_RequiredPermission": [
- 117
], - "bVersionDeprecated": false,
- "dtResponseDate": "2020-12-31 23:59:59"
}, - "objDebug": {
- "sMemoryUsage": "11,923MB",
- "sRunTime": "0.6084s",
- "iSQLSelects": 3,
- "iSQLQueries": 6,
- "a_objSQLQuery": [
- {
- "sQuery": "SELECT * FROM table",
- "fDuration": 0.0001
}, - {
- "sQuery": "SELECT * FROM table",
- "fDuration": 0.0001
}
]
}
}
pkiEzsignsignatureID required | integer (Field-pkiEzsignsignatureID) >= 0 Example: 49 The unique ID of the Ezsignsignature |
required | object (ezsignsignature-RequestCompound) An Ezsignsignature Object and children to create a complete structure |
{- "objEzsignsignature": {
- "pkiEzsignsignatureID": 49,
- "fkiEzsignfoldersignerassociationID": 20,
- "iEzsignpagePagenumber": 1,
- "iEzsignsignatureX": 200,
- "iEzsignsignatureY": 300,
- "iEzsignsignatureWidth": 200,
- "iEzsignsignatureHeight": 200,
- "iEzsignsignatureStep": 1,
- "eEzsignsignatureType": "Name",
- "fkiEzsigndocumentID": 97,
- "tEzsignsignatureTooltip": "Please sign here if you agree to the terms",
- "eEzsignsignatureTooltipposition": "TopLeft",
- "eEzsignsignatureFont": "Normal",
- "fkiEzsignfoldersignerassociationIDValidation": 20,
- "bEzsignsignatureRequired": true,
- "eEzsignsignatureAttachmentnamesource": "Description",
- "sEzsignsignatureAttachmentdescription": "Attachment",
- "iEzsignsignatureValidationstep": 1,
- "iEzsignsignatureMaxlength": 75,
- "eEzsignsignatureTextvalidation": "None",
- "sEzsignsignatureRegexp": "/[-0-9a-zA-Z.+_]+@[-0-9a-zA-Z.+_]+.[a-zA-Z]{2,4}/",
- "eEzsignsignatureDependencyrequirement": "AllOf",
- "bEzsignsignatureCustomdate": true,
- "a_objEzsignsignaturecustomdate": [
- {
- "pkiEzsignsignaturecustomdateID": 27,
- "iEzsignsignaturecustomdateX": 200,
- "iEzsignsignaturecustomdateY": 300,
- "iEzsignsignaturecustomdateOffsetx": 200,
- "iEzsignsignaturecustomdateOffsety": 300,
- "sEzsignsignaturecustomdateFormat": "Signature date: {YYYY}/{MM}/{DD} {hh}:{mm}{ss} {Z}"
}
], - "a_objEzsignelementdependency": [
- {
- "pkiEzsignelementdependencyID": 89,
- "fkiEzsignformfieldIDValidation": 32,
- "fkiEzsignformfieldgroupIDValidation": 26,
- "sEzsignelementdependencyEzsignformfieldgrouplabel": "Allergies",
- "sEzsignelementdependencyEzsignformfieldlabel": "Peanuts",
- "eEzsignelementdependencyValidation": "Value",
- "bEzsignelementdependencySelected": false,
- "eEzsignelementdependencyOperator": "eq",
- "sEzsignelementdependencyValue": "Montreal"
}
]
}
}
{- "objDebugPayload": {
- "iVersionMin": 1,
- "iVersionMax": 2,
- "a_RequiredPermission": [
- 117
], - "bVersionDeprecated": false,
- "dtResponseDate": "2020-12-31 23:59:59"
}, - "objDebug": {
- "sMemoryUsage": "11,923MB",
- "sRunTime": "0.6084s",
- "iSQLSelects": 3,
- "iSQLQueries": 6,
- "a_objSQLQuery": [
- {
- "sQuery": "SELECT * FROM table",
- "fDuration": 0.0001
}, - {
- "sQuery": "SELECT * FROM table",
- "fDuration": 0.0001
}
]
}
}
Return all the Ezsignsignatures that can be signed by the current user
{- "mPayload": {
- "a_eEzsignsignatureType": [
- "Name"
], - "a_objEzsignfolder": [
- {
- "pkiEzsignfolderID": 33,
- "sEzsignfolderDescription": "Test eZsign Folder",
- "a_objEzsigndocument": [
- {
- "pkiEzsigndocumentID": 97,
- "sEzsigndocumentName": "Contract #123",
- "a_objEzsignsignature": [
- {
- "pkiEzsignsignatureID": 49,
- "eEzsignsignatureType": "Name",
- "iEzsignpagePagenumber": 1
}
]
}
]
}
]
}, - "objDebugPayload": {
- "iVersionMin": 1,
- "iVersionMax": 2,
- "a_RequiredPermission": [
- 117
], - "bVersionDeprecated": false,
- "dtResponseDate": "2020-12-31 23:59:59"
}, - "objDebug": {
- "sMemoryUsage": "11,923MB",
- "sRunTime": "0.6084s",
- "iSQLSelects": 3,
- "iSQLQueries": 6,
- "a_objSQLQuery": [
- {
- "sQuery": "SELECT * FROM table",
- "fDuration": 0.0001
}, - {
- "sQuery": "SELECT * FROM table",
- "fDuration": 0.0001
}
]
}
}
pkiEzsignsignatureID required | integer (Field-pkiEzsignsignatureID) >= 0 Example: 49 The unique ID of the Ezsignsignature |
{- "mPayload": {
- "objEzsignsignature": {
- "pkiEzsignsignatureID": 49,
- "fkiEzsigndocumentID": 97,
- "fkiEzsignfoldersignerassociationID": 20,
- "fkiEzsignsigningreasonID": 194,
- "sEzsignsigningreasonDescriptionX": "I approve this document",
- "iEzsignpagePagenumber": 1,
- "iEzsignsignatureX": 200,
- "iEzsignsignatureY": 300,
- "iEzsignsignatureHeight": 200,
- "iEzsignsignatureWidth": 200,
- "iEzsignsignatureStep": 1,
- "iEzsignsignatureStepadjusted": 1,
- "eEzsignsignatureType": "Name",
- "tEzsignsignatureTooltip": "Please sign here if you agree to the terms",
- "eEzsignsignatureTooltipposition": "TopLeft",
- "eEzsignsignatureFont": "Normal",
- "iEzsignsignatureValidationstep": 1,
- "sEzsignsignatureAttachmentdescription": "Attachment",
- "eEzsignsignatureAttachmentnamesource": "Description",
- "bEzsignsignatureRequired": true,
- "fkiEzsignfoldersignerassociationIDValidation": 20,
- "dtEzsignsignatureDate": "2020-12-31 23:59:59",
- "iEzsignsignatureattachmentCount": 7,
- "sEzsignsignatureDescription": "Montreal",
- "iEzsignsignatureMaxlength": 75,
- "eEzsignsignatureTextvalidation": "None",
- "eEzsignsignatureDependencyrequirement": "AllOf",
- "sEzsignsignatureRegexp": "/[-0-9a-zA-Z.+_]+@[-0-9a-zA-Z.+_]+.[a-zA-Z]{2,4}/",
- "objContactName": {
- "sContactFirstname": "John",
- "sContactLastname": "Doe",
- "sContactCompany": "eZmax Solutions Inc."
}, - "objContactNameDelegation": {
- "sContactFirstname": "John",
- "sContactLastname": "Doe",
- "sContactCompany": "eZmax Solutions Inc."
}, - "bEzsignsignatureCustomdate": true,
- "a_objEzsignsignaturecustomdate": [
- {
- "pkiEzsignsignaturecustomdateID": 27,
- "iEzsignsignaturecustomdateX": 200,
- "iEzsignsignaturecustomdateY": 300,
- "iEzsignsignaturecustomdateOffsetx": 200,
- "iEzsignsignaturecustomdateOffsety": 300,
- "sEzsignsignaturecustomdateFormat": "Signature date: {YYYY}/{MM}/{DD} {hh}:{mm}{ss} {Z}"
}
], - "objCreditcardtransaction": {
- "eCreditcardtypeCodename": "visa",
- "dCreditcardtransactionAmount": "167.58",
- "sCreditcardtransactionPartiallydecryptednumber": "XXXX XXXX XXXX 1234",
- "sCreditcardtransactionReferencenumber": "651447854715478415"
}, - "a_objEzsignelementdependency": [
- {
- "pkiEzsignelementdependencyID": 89,
- "fkiEzsignformfieldID": 32,
- "fkiEzsignsignatureID": 49,
- "fkiEzsignformfieldIDValidation": 32,
- "fkiEzsignformfieldgroupIDValidation": 26,
- "eEzsignelementdependencyValidation": "Value",
- "bEzsignelementdependencySelected": false,
- "eEzsignelementdependencyOperator": "eq",
- "sEzsignelementdependencyValue": "Montreal"
}
]
}
}, - "objDebugPayload": {
- "iVersionMin": 1,
- "iVersionMax": 2,
- "a_RequiredPermission": [
- 117
], - "bVersionDeprecated": false,
- "dtResponseDate": "2020-12-31 23:59:59"
}, - "objDebug": {
- "sMemoryUsage": "11,923MB",
- "sRunTime": "0.6084s",
- "iSQLSelects": 3,
- "iSQLQueries": 6,
- "a_objSQLQuery": [
- {
- "sQuery": "SELECT * FROM table",
- "fDuration": 0.0001
}, - {
- "sQuery": "SELECT * FROM table",
- "fDuration": 0.0001
}
]
}
}
pkiEzsignsignatureID required | integer (Field-pkiEzsignsignatureID) >= 0 Example: 49 The unique ID of the Ezsignsignature |
{- "mPayload": {
- "a_objEzsignsignatureattachment": [
- {
- "pkiEzsignsignatureattachmentID": 177,
- "fkiEzsignsignatureID": 49,
- "binEzsignsignatureattachmentMD5": "098f6bcd4621d373cade4e832627b4f6",
- "sEzsignsignatureattachmentName": "document.pdf",
}
]
}, - "objDebugPayload": {
- "iVersionMin": 1,
- "iVersionMax": 2,
- "a_RequiredPermission": [
- 117
], - "bVersionDeprecated": false,
- "dtResponseDate": "2020-12-31 23:59:59"
}, - "objDebug": {
- "sMemoryUsage": "11,923MB",
- "sRunTime": "0.6084s",
- "iSQLSelects": 3,
- "iSQLQueries": 6,
- "a_objSQLQuery": [
- {
- "sQuery": "SELECT * FROM table",
- "fDuration": 0.0001
}, - {
- "sQuery": "SELECT * FROM table",
- "fDuration": 0.0001
}
]
}
}
pkiEzsignsignatureID required | integer (Field-pkiEzsignsignatureID) >= 0 Example: 49 The unique ID of the Ezsignsignature |
fkiEzsignsigningreasonID | integer (Field-pkiEzsignsigningreasonID) [ 0 .. 255 ] The unique ID of the Ezsignsigningreason |
sValue | string The value required for the Ezsignsignature. This can only be set if eEzsignsignatureType is City, FieldText or FieldTextarea |
eAttachmentsConfirmationDecision | string Enum: "Accepted" "Refused" Whether the attachment are accepted or refused. This can only be set if eEzsignsignatureType is AttachmentsConfirmation |
sAttachmentsRefusalReason | string The reason of refused. This can only be set if eEzsignsignatureType is AttachmentsConfirmation |
sSvg | string^.{0,65535}$ The SVG of the handwritten signature. This can only be set if eEzsignsignatureType is Handwritten and bIsAutomatic is false |
Array of objects (Common-File) | |
bIsAutomatic required | boolean Indicates if the Ezsignsignature was part of an automatic process or not. This can only be true if eEzsignsignatureType is Acknowledgement, City, Handwritten, Initials, Name or Stamp. |
{- "fkiEzsignsigningreasonID": 194,
- "sValue": "string",
- "eAttachmentsConfirmationDecision": "Accepted",
- "sAttachmentsRefusalReason": "string",
- "sSvg": "<svg version=\"1.1\" id=\"Layer_2\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\" \t viewBox=\"0 0 175 75\" enable-background=\"new 0 0 175 75\" xml:space=\"preserve\"> <path fill=\"#FFFFFF\" d=\"M51,47.4c-0.8,1.6-1.7,3.1-2.8,4.5H31.9l15-17.6H36.7c-1.2,0-2.2-1-2.2-2.2s1-2.2,2.2-2.2l0,0h15 \tc0.5,1.4,0.9,2.9,1.1,4.4L41.6,47.4H51z M32,48.6c-2.2,2.2-5.1,3.3-8,3.3s-5.8-1.1-8-3.3c-4.4-4.4-4.4-11.6,0-16s11.6-4.4,16,0 \tc2.1,2.1,3.3,5,3.3,8v2.3l-17.8-0.2c0.3,1,0.9,1.9,1.7,2.7c2.7,2.7,7,2.7,9.7,0c0.9-0.9,2.3-0.9,3.2,0C32.9,46.3,32.9,47.7,32,48.6z \t M17.6,38.2l12.9,0.1c-0.3-1-0.9-1.8-1.6-2.6c-2.7-2.7-7-2.7-9.7,0C18.5,36.5,18,37.3,17.6,38.2z\"/> <path fill=\"#D12A2F\" d=\"M46.9,34.3H36.7c-1.2,0-2.2-1-2.2-2.2s1-2.2,2.2-2.2l0,0h15C48.5,21,40,14.7,30.1,14.7 \tc-12.7,0-23,10.3-23,23s10.3,23,23,23c7.3,0,13.8-3.4,18-8.7H31.8L46.9,34.3z M24,51.9c-2.9,0-5.8-1.1-8-3.3c-4.4-4.4-4.4-11.6,0-16 \ts11.6-4.4,16,0c2.1,2.1,3.3,5,3.3,8v2.3l-17.8-0.2c0.3,1,0.9,1.9,1.7,2.7c2.7,2.7,7,2.7,9.7,0c0.9-0.9,2.3-0.9,3.2,0 \tc0.9,0.9,0.9,2.3,0,3.2C29.8,50.8,26.9,51.9,24,51.9z M30.5,38.3l-12.8-0.1c0.3-0.9,0.9-1.7,1.6-2.4c2.7-2.7,7-2.7,9.7,0 \tC29.6,36.5,30.1,37.4,30.5,38.3z M41.6,47.4l11.2-13.2c0.2,1.1,0.2,2.2,0.2,3.4c0,3.5-0.8,6.8-2.2,9.8H41.6z\"/> </svg>",
- "a_objFile": [
- {
- "sFileName": "example.pdf",
- "sFileBase64": "JVBERi0xLjENCiXCpcKxw6sNCg0KMSAwIG9iag0KICA8PCAvVHlwZSAvQ2F0YWxvZw0KICAgICAvUGFnZXMgMiAwIFINCiAgPj4NCmVuZG9iag0KDQoyIDAgb2JqDQogIDw8IC9UeXBlIC9QYWdlcw0KICAgICAvS2lkcyBbMyAwIFJdDQogICAgIC9Db3VudCAxDQogICAgIC9NZWRpYUJveCBbMCAwIDMwMCAxNDRdDQogID4+DQplbmRvYmoNCg0KMyAwIG9iag0KICA8PCAgL1R5cGUgL1BhZ2UNCiAgICAgIC9QYXJlbnQgMiAwIFINCiAgICAgIC9SZXNvdXJjZXMNCiAgICAgICA8PCAvRm9udA0KICAgICAgICAgICA8PCAvRjENCiAgICAgICAgICAgICAgIDw8IC9UeXBlIC9Gb250DQogICAgICAgICAgICAgICAgICAvU3VidHlwZSAvVHlwZTENCiAgICAgICAgICAgICAgICAgIC9CYXNlRm9udCAvVGltZXMtUm9tYW4NCiAgICAgICAgICAgICAgID4+DQogICAgICAgICAgID4+DQogICAgICAgPj4NCiAgICAgIC9Db250ZW50cyA0IDAgUg0KICA+Pg0KZW5kb2JqDQoNCjQgMCBvYmoNCiAgPDwgL0xlbmd0aCA1NSA+Pg0Kc3RyZWFtDQogIEJUDQogICAgL0YxIDE4IFRmDQogICAgMCAwIFRkDQogICAgKEhlbGxvIFdvcmxkKSBUag0KICBFVA0KZW5kc3RyZWFtDQplbmRvYmoNCg0KeHJlZg0KMCA1DQowMDAwMDAwMDAwIDY1NTM1IGYgDQowMDAwMDAwMDE4IDAwMDAwIG4gDQowMDAwMDAwMDc3IDAwMDAwIG4gDQowMDAwMDAwMTc4IDAwMDAwIG4gDQowMDAwMDAwNDU3IDAwMDAwIG4gDQp0cmFpbGVyDQogIDw8ICAvUm9vdCAxIDAgUg0KICAgICAgL1NpemUgNQ0KICA+Pg0Kc3RhcnR4cmVmDQo1NjUNCiUlRU9G",
- "eFileSource": "Base64"
}
], - "bIsAutomatic": true
}
{- "objDebugPayload": {
- "iVersionMin": 1,
- "iVersionMax": 2,
- "a_RequiredPermission": [
- 117
], - "bVersionDeprecated": false,
- "dtResponseDate": "2020-12-31 23:59:59"
}, - "objDebug": {
- "sMemoryUsage": "11,923MB",
- "sRunTime": "0.6084s",
- "iSQLSelects": 3,
- "iSQLQueries": 6,
- "a_objSQLQuery": [
- {
- "sQuery": "SELECT * FROM table",
- "fDuration": 0.0001
}, - {
- "sQuery": "SELECT * FROM table",
- "fDuration": 0.0001
}
]
}
}
This Webhook will be called when we sign a signature.
required | object (ezsignsignature-Response) An Ezsignsignature Object |
required | object (Custom-Webhook-Response) A custom Webhook object |
required | Array of objects (attempt-ResponseCompound) An array containing details of previous attempts that were made to deliver the message. The array is empty if it's the first attempt. |
{- "objEzsignsignature": {
- "pkiEzsignsignatureID": 49,
- "fkiEzsigndocumentID": 97,
- "fkiEzsignfoldersignerassociationID": 20,
- "fkiEzsignsigningreasonID": 194,
- "sEzsignsigningreasonDescriptionX": "I approve this document",
- "iEzsignpagePagenumber": 1,
- "iEzsignsignatureX": 200,
- "iEzsignsignatureY": 300,
- "iEzsignsignatureHeight": 200,
- "iEzsignsignatureWidth": 200,
- "iEzsignsignatureStep": 1,
- "iEzsignsignatureStepadjusted": 1,
- "eEzsignsignatureType": "Name",
- "tEzsignsignatureTooltip": "Please sign here if you agree to the terms",
- "eEzsignsignatureTooltipposition": "TopLeft",
- "eEzsignsignatureFont": "Normal",
- "iEzsignsignatureValidationstep": 1,
- "sEzsignsignatureAttachmentdescription": "Attachment",
- "eEzsignsignatureAttachmentnamesource": "Description",
- "bEzsignsignatureRequired": true,
- "fkiEzsignfoldersignerassociationIDValidation": 20,
- "dtEzsignsignatureDate": "2020-12-31 23:59:59",
- "iEzsignsignatureattachmentCount": 7,
- "sEzsignsignatureDescription": "Montreal",
- "iEzsignsignatureMaxlength": 75,
- "eEzsignsignatureTextvalidation": "None",
- "eEzsignsignatureDependencyrequirement": "AllOf",
- "sEzsignsignatureRegexp": "/[-0-9a-zA-Z.+_]+@[-0-9a-zA-Z.+_]+.[a-zA-Z]{2,4}/",
- "objContactName": {
- "sContactFirstname": "John",
- "sContactLastname": "Doe",
- "sContactCompany": "eZmax Solutions Inc."
}, - "objContactNameDelegation": {
- "sContactFirstname": "John",
- "sContactLastname": "Doe",
- "sContactCompany": "eZmax Solutions Inc."
},
}, - "objWebhook": {
- "pksCustomerCode": "demo",
- "bWebhookTest": true,
- "pkiWebhookID": 77,
- "sWebhookDescription": "Import into our system",
- "fkiEzsignfoldertypeID": 5,
- "sEzsignfoldertypeNameX": "Default",
- "eWebhookModule": "Ezsign",
- "eWebhookEzsignevent": "FolderCompleted",
- "eWebhookManagementevent": "UserCreated",
- "sWebhookEmailfailed": "email@example.com",
- "sWebhookApikey": "string",
- "sWebhookSecret": "string",
- "bWebhookIsactive": true,
- "bWebhookIssigned": true,
- "bWebhookSkipsslvalidation": false,
- "objAudit": {
- "objAuditdetailCreated": {
- "fkiUserID": 70,
- "fkiApikeyID": 99,
- "sUserLoginname": "JohnDoe",
- "sUserLastname": "Doe",
- "sUserFirstname": "John",
- "sApikeyDescriptionX": "Project X",
- "dtAuditdetailDate": "2020-12-31 23:59:59"
}, - "objAuditdetailModified": {
- "fkiUserID": 70,
- "fkiApikeyID": 99,
- "sUserLoginname": "JohnDoe",
- "sUserLastname": "Doe",
- "sUserFirstname": "John",
- "sApikeyDescriptionX": "Project X",
- "dtAuditdetailDate": "2020-12-31 23:59:59"
}
}, - "sWebhookEvent": "Ezsign-DocumentCompleted",
- "a_objWebhookheader": [
- {
- "pkiWebhookheaderID": 77,
- "fkiWebhookID": 77,
- "sWebhookheaderName": "Authorization",
- "sWebhookheaderValue": "d75fca0e12b6c671e7f6d4df0cf59e4e"
}
]
}, - "a_objAttempt": [
- {
- "dtAttemptStart": "2020-12-31 23:59:59",
- "sAttemptResult": "Success",
- "iAttemptDuration": 1
}
]
}
The endpoint allows to create one or many elements at once.
required | Array of objects (ezsignsignergroup-RequestCompound) non-empty |
{- "a_objEzsignsignergroup": [
- {
- "pkiEzsignsignergroupID": 27,
- "fkiEzsignfolderID": 33,
- "objEzsignsignergroupDescription": {
- "sEzsignsignergroupDescription1": "RH",
- "sEzsignsignergroupDescription2": "HR"
}
}
]
}
{- "mPayload": {
- "a_pkiEzsignsignergroupID": [
- 27
]
}, - "objDebugPayload": {
- "iVersionMin": 1,
- "iVersionMax": 2,
- "a_RequiredPermission": [
- 117
], - "bVersionDeprecated": false,
- "dtResponseDate": "2020-12-31 23:59:59"
}, - "objDebug": {
- "sMemoryUsage": "11,923MB",
- "sRunTime": "0.6084s",
- "iSQLSelects": 3,
- "iSQLQueries": 6,
- "a_objSQLQuery": [
- {
- "sQuery": "SELECT * FROM table",
- "fDuration": 0.0001
}, - {
- "sQuery": "SELECT * FROM table",
- "fDuration": 0.0001
}
]
}
}
pkiEzsignsignergroupID required | integer (Field-pkiEzsignsignergroupID) [ 0 .. 65535 ] Example: 27 The unique ID of the Ezsignsignergroup |
{- "objDebugPayload": {
- "iVersionMin": 1,
- "iVersionMax": 2,
- "a_RequiredPermission": [
- 117
], - "bVersionDeprecated": false,
- "dtResponseDate": "2020-12-31 23:59:59"
}, - "objDebug": {
- "sMemoryUsage": "11,923MB",
- "sRunTime": "0.6084s",
- "iSQLSelects": 3,
- "iSQLQueries": 6,
- "a_objSQLQuery": [
- {
- "sQuery": "SELECT * FROM table",
- "fDuration": 0.0001
}, - {
- "sQuery": "SELECT * FROM table",
- "fDuration": 0.0001
}
]
}
}
pkiEzsignsignergroupID required | integer (Field-pkiEzsignsignergroupID) [ 0 .. 65535 ] Example: 27 The unique ID of the Ezsignsignergroup |
required | object (ezsignsignergroup-RequestCompound) A Ezsignsignergroup Object and children |
{- "objEzsignsignergroup": {
- "pkiEzsignsignergroupID": 27,
- "fkiEzsignfolderID": 33,
- "objEzsignsignergroupDescription": {
- "sEzsignsignergroupDescription1": "RH",
- "sEzsignsignergroupDescription2": "HR"
}
}
}
{- "objDebugPayload": {
- "iVersionMin": 1,
- "iVersionMax": 2,
- "a_RequiredPermission": [
- 117
], - "bVersionDeprecated": false,
- "dtResponseDate": "2020-12-31 23:59:59"
}, - "objDebug": {
- "sMemoryUsage": "11,923MB",
- "sRunTime": "0.6084s",
- "iSQLSelects": 3,
- "iSQLQueries": 6,
- "a_objSQLQuery": [
- {
- "sQuery": "SELECT * FROM table",
- "fDuration": 0.0001
}, - {
- "sQuery": "SELECT * FROM table",
- "fDuration": 0.0001
}
]
}
}
Using this endpoint, you can edit multiple Ezsignsignergroupmemberships at the same time.
pkiEzsignsignergroupID required | integer (Field-pkiEzsignsignergroupID) [ 0 .. 65535 ] Example: 27 The unique ID of the Ezsignsignergroup |
required | Array of objects (ezsignsignergroupmembership-RequestCompound) |
{- "a_objEzsignsignergroupmembership": [
- {
- "pkiEzsignsignergroupmembershipID": 153,
- "fkiEzsignsignergroupID": 27,
- "fkiEzsignsignerID": 89,
- "fkiUserID": 70,
- "fkiUsergroupID": 2
}
]
}
{- "mPayload": {
- "a_pkiEzsignsignergroupmembershipID": [
- 153
]
}, - "objDebugPayload": {
- "iVersionMin": 1,
- "iVersionMax": 2,
- "a_RequiredPermission": [
- 117
], - "bVersionDeprecated": false,
- "dtResponseDate": "2020-12-31 23:59:59"
}, - "objDebug": {
- "sMemoryUsage": "11,923MB",
- "sRunTime": "0.6084s",
- "iSQLSelects": 3,
- "iSQLQueries": 6,
- "a_objSQLQuery": [
- {
- "sQuery": "SELECT * FROM table",
- "fDuration": 0.0001
}, - {
- "sQuery": "SELECT * FROM table",
- "fDuration": 0.0001
}
]
}
}
pkiEzsignsignergroupID required | integer (Field-pkiEzsignsignergroupID) [ 0 .. 65535 ] Example: 27 The unique ID of the Ezsignsignergroup |
{- "mPayload": {
- "objEzsignsignergroup": {
- "pkiEzsignsignergroupID": 27,
- "objEzsignsignergroupDescription": {
- "sEzsignsignergroupDescription1": "RH",
- "sEzsignsignergroupDescription2": "HR"
}, - "sEzsignsignergroupDescriptionX": "HR"
}
}, - "objDebugPayload": {
- "iVersionMin": 1,
- "iVersionMax": 2,
- "a_RequiredPermission": [
- 117
], - "bVersionDeprecated": false,
- "dtResponseDate": "2020-12-31 23:59:59"
}, - "objDebug": {
- "sMemoryUsage": "11,923MB",
- "sRunTime": "0.6084s",
- "iSQLSelects": 3,
- "iSQLQueries": 6,
- "a_objSQLQuery": [
- {
- "sQuery": "SELECT * FROM table",
- "fDuration": 0.0001
}, - {
- "sQuery": "SELECT * FROM table",
- "fDuration": 0.0001
}
]
}
}
pkiEzsignsignergroupID required | integer (Field-pkiEzsignsignergroupID) [ 0 .. 65535 ] Example: 27 The unique ID of the Ezsignsignergroup |
{- "mPayload": {
- "a_objEzsignsignergroupmembership": [
- {
- "pkiEzsignsignergroupmembershipID": 153,
- "fkiEzsignsignergroupID": 27,
- "fkiEzsignsignerID": 89,
- "fkiUserID": 70,
- "fkiUsergroupID": 2
}
]
}, - "objDebugPayload": {
- "iVersionMin": 1,
- "iVersionMax": 2,
- "a_RequiredPermission": [
- 117
], - "bVersionDeprecated": false,
- "dtResponseDate": "2020-12-31 23:59:59"
}, - "objDebug": {
- "sMemoryUsage": "11,923MB",
- "sRunTime": "0.6084s",
- "iSQLSelects": 3,
- "iSQLQueries": 6,
- "a_objSQLQuery": [
- {
- "sQuery": "SELECT * FROM table",
- "fDuration": 0.0001
}, - {
- "sQuery": "SELECT * FROM table",
- "fDuration": 0.0001
}
]
}
}
Ezsignsignergroupmembership contains details about Ezsignsignergroupmemberships
The endpoint allows to create one or many elements at once.
required | Array of objects (ezsignsignergroupmembership-RequestCompound) non-empty |
{- "a_objEzsignsignergroupmembership": [
- {
- "pkiEzsignsignergroupmembershipID": 153,
- "fkiEzsignsignergroupID": 27,
- "fkiEzsignsignerID": 89,
- "fkiUserID": 70,
- "fkiUsergroupID": 2
}
]
}
{- "mPayload": {
- "a_pkiEzsignsignergroupmembershipID": [
- 153
]
}, - "objDebugPayload": {
- "iVersionMin": 1,
- "iVersionMax": 2,
- "a_RequiredPermission": [
- 117
], - "bVersionDeprecated": false,
- "dtResponseDate": "2020-12-31 23:59:59"
}, - "objDebug": {
- "sMemoryUsage": "11,923MB",
- "sRunTime": "0.6084s",
- "iSQLSelects": 3,
- "iSQLQueries": 6,
- "a_objSQLQuery": [
- {
- "sQuery": "SELECT * FROM table",
- "fDuration": 0.0001
}, - {
- "sQuery": "SELECT * FROM table",
- "fDuration": 0.0001
}
]
}
}
pkiEzsignsignergroupmembershipID required | integer (Field-pkiEzsignsignergroupmembershipID) [ 0 .. 16777215 ] Example: 153 The unique ID of the Ezsignsignergroupmembership |
{- "objDebugPayload": {
- "iVersionMin": 1,
- "iVersionMax": 2,
- "a_RequiredPermission": [
- 117
], - "bVersionDeprecated": false,
- "dtResponseDate": "2020-12-31 23:59:59"
}, - "objDebug": {
- "sMemoryUsage": "11,923MB",
- "sRunTime": "0.6084s",
- "iSQLSelects": 3,
- "iSQLQueries": 6,
- "a_objSQLQuery": [
- {
- "sQuery": "SELECT * FROM table",
- "fDuration": 0.0001
}, - {
- "sQuery": "SELECT * FROM table",
- "fDuration": 0.0001
}
]
}
}
pkiEzsignsignergroupmembershipID required | integer (Field-pkiEzsignsignergroupmembershipID) [ 0 .. 16777215 ] Example: 153 The unique ID of the Ezsignsignergroupmembership |
{- "mPayload": {
- "objEzsignsignergroupmembership": {
- "pkiEzsignsignergroupmembershipID": 153,
- "fkiEzsignsignergroupID": 27,
- "fkiEzsignsignerID": 89,
- "fkiUserID": 70,
- "fkiUsergroupID": 2
}
}, - "objDebugPayload": {
- "iVersionMin": 1,
- "iVersionMax": 2,
- "a_RequiredPermission": [
- 117
], - "bVersionDeprecated": false,
- "dtResponseDate": "2020-12-31 23:59:59"
}, - "objDebug": {
- "sMemoryUsage": "11,923MB",
- "sRunTime": "0.6084s",
- "iSQLSelects": 3,
- "iSQLQueries": 6,
- "a_objSQLQuery": [
- {
- "sQuery": "SELECT * FROM table",
- "fDuration": 0.0001
}, - {
- "sQuery": "SELECT * FROM table",
- "fDuration": 0.0001
}
]
}
}
The endpoint allows to create one or many elements at once.
required | Array of objects (ezsignsigningreason-RequestCompound) non-empty |
{- "a_objEzsignsigningreason": [
- {
- "pkiEzsignsigningreasonID": 194,
- "objEzsignsigningreasonDescription": {
- "sEzsignsigningreasonDescription1": "J'approuve ce document",
- "sEzsignsigningreasonDescription2": "I approve this document"
}, - "bEzsignsigningreasonIsactive": true
}
]
}
{- "mPayload": {
- "a_pkiEzsignsigningreasonID": [
- 194
]
}, - "objDebugPayload": {
- "iVersionMin": 1,
- "iVersionMax": 2,
- "a_RequiredPermission": [
- 117
], - "bVersionDeprecated": false,
- "dtResponseDate": "2020-12-31 23:59:59"
}, - "objDebug": {
- "sMemoryUsage": "11,923MB",
- "sRunTime": "0.6084s",
- "iSQLSelects": 3,
- "iSQLQueries": 6,
- "a_objSQLQuery": [
- {
- "sQuery": "SELECT * FROM table",
- "fDuration": 0.0001
}, - {
- "sQuery": "SELECT * FROM table",
- "fDuration": 0.0001
}
]
}
}
pkiEzsignsigningreasonID required | integer (Field-pkiEzsignsigningreasonID) [ 0 .. 255 ] Example: 194 The unique ID of the Ezsignsigningreason |
required | object (ezsignsigningreason-RequestCompound) A Ezsignsigningreason Object and children |
{- "objEzsignsigningreason": {
- "pkiEzsignsigningreasonID": 194,
- "objEzsignsigningreasonDescription": {
- "sEzsignsigningreasonDescription1": "J'approuve ce document",
- "sEzsignsigningreasonDescription2": "I approve this document"
}, - "bEzsignsigningreasonIsactive": true
}
}
{- "objDebugPayload": {
- "iVersionMin": 1,
- "iVersionMax": 2,
- "a_RequiredPermission": [
- 117
], - "bVersionDeprecated": false,
- "dtResponseDate": "2020-12-31 23:59:59"
}, - "objDebug": {
- "sMemoryUsage": "11,923MB",
- "sRunTime": "0.6084s",
- "iSQLSelects": 3,
- "iSQLQueries": 6,
- "a_objSQLQuery": [
- {
- "sQuery": "SELECT * FROM table",
- "fDuration": 0.0001
}, - {
- "sQuery": "SELECT * FROM table",
- "fDuration": 0.0001
}
]
}
}
pkiEzsignsigningreasonID required | integer (Field-pkiEzsignsigningreasonID) [ 0 .. 255 ] Example: 194 The unique ID of the Ezsignsigningreason |
{- "mPayload": {
- "objEzsignsigningreason": {
- "pkiEzsignsigningreasonID": 194,
- "objEzsignsigningreasonDescription": {
- "sEzsignsigningreasonDescription1": "J'approuve ce document",
- "sEzsignsigningreasonDescription2": "I approve this document"
}, - "bEzsignsigningreasonIsactive": true
}
}, - "objDebugPayload": {
- "iVersionMin": 1,
- "iVersionMax": 2,
- "a_RequiredPermission": [
- 117
], - "bVersionDeprecated": false,
- "dtResponseDate": "2020-12-31 23:59:59"
}, - "objDebug": {
- "sMemoryUsage": "11,923MB",
- "sRunTime": "0.6084s",
- "iSQLSelects": 3,
- "iSQLQueries": 6,
- "a_objSQLQuery": [
- {
- "sQuery": "SELECT * FROM table",
- "fDuration": 0.0001
}, - {
- "sQuery": "SELECT * FROM table",
- "fDuration": 0.0001
}
]
}
}
eOrderBy | string Enum: "pkiEzsignsigningreasonID_ASC" "pkiEzsignsigningreasonID_DESC" "sEzsignsigningreasonDescriptionX_ASC" "sEzsignsigningreasonDescriptionX_DESC" "bEzsignsigningreasonIsactive_ASC" … 1 more Specify how you want the results to be sorted |
iRowMax | integer (Field-iRowMax) [ 1 .. 10000 ] Example: iRowMax=100 The maximum numbers of results to be returned. When the content-type is application/json there is an implicit default of 10 000. When it's application/vnd.openxmlformats-officedocument.spreadsheetml.sheet the is no implicit default so if you do not specify iRowMax, all records will be returned. |
iRowOffset | integer (Field-iRowOffset) >= 0 Default: 0 Example: iRowOffset=0 The starting element from where to start retrieving the results. For example if you started at iRowOffset=0 and asked for iRowMax=100, to get the next 100 results, you could specify iRowOffset=100&iRowMax=100, |
sFilter | string (Field-sFilter) Example: sFilter=bField1 eq true and iField2 gte 0 and iField2 lte 1000 and sField3 eq 'Other' and eField4 eq 'Paid' and sField5 like '%needle%' and iField6 in '1,2,3' and dtField7 rg '=m,=3mm' The filter to apply to the request to limit results. |
Accept-Language | string (Header-Accept-Language) Enum: "*" "en" "fr" Example: en The language of the returned content.
|
{- "mPayload": {
- "a_objEzsignsigningreason": [
- {
- "pkiEzsignsigningreasonID": 194,
- "sEzsignsigningreasonDescriptionX": "I approve this document",
- "bEzsignsigningreasonIsactive": true
}
], - "iRowReturned": 100,
- "iRowFiltered": 533
}, - "objDebugPayload": {
- "iVersionMin": 1,
- "iVersionMax": 2,
- "a_RequiredPermission": [
- 117
], - "bVersionDeprecated": false,
- "dtResponseDate": "2020-12-31 23:59:59",
- "a_Filter": {
- "a_AutoType": {
- "property1": "string",
- "property2": "string"
}, - "a_AutoTypeHaving": {
- "property1": "string",
- "property2": "string"
}, - "a_Enum": {
- "property1": {
- "property1": "string",
- "property2": "string"
}, - "property2": {
- "property1": "string",
- "property2": "string"
}
}
}, - "a_OrderBy": {
- "property1": "string",
- "property2": "string"
}, - "iRowMax": 100,
- "iRowOffset": 0
}, - "objDebug": {
- "sMemoryUsage": "11,923MB",
- "sRunTime": "0.6084s",
- "iSQLSelects": 3,
- "iSQLQueries": 6,
- "a_objSQLQuery": [
- {
- "sQuery": "SELECT * FROM table",
- "fDuration": 0.0001
}, - {
- "sQuery": "SELECT * FROM table",
- "fDuration": 0.0001
}
]
}
}
Get the list of Ezsignsigningreason to be used in a dropdown or autocomplete control.
sSelector required | string Enum: "All" "Active" The type of Ezsignsigningreasons to return |
eFilterActive | string Default: "Active" Enum: "All" "Active" "Inactive" Specify which results we want to display. |
sQuery | string Allow to filter the returned results |
Accept-Language | string (Header-Accept-Language) Enum: "*" "en" "fr" Example: en The language of the returned content.
|
{- "mPayload": {
- "a_objEzsignsigningreason": [
- {
- "pkiEzsignsigningreasonID": 194,
- "sEzsignsigningreasonDescriptionX": "I approve this document",
- "bEzsignsigningreasonIsactive": true
}
]
}, - "objDebugPayload": {
- "iVersionMin": 1,
- "iVersionMax": 2,
- "a_RequiredPermission": [
- 117
], - "bVersionDeprecated": false,
- "dtResponseDate": "2020-12-31 23:59:59"
}, - "objDebug": {
- "sMemoryUsage": "11,923MB",
- "sRunTime": "0.6084s",
- "iSQLSelects": 3,
- "iSQLQueries": 6,
- "a_objSQLQuery": [
- {
- "sQuery": "SELECT * FROM table",
- "fDuration": 0.0001
}, - {
- "sQuery": "SELECT * FROM table",
- "fDuration": 0.0001
}
]
}
}
pkiEzsigntemplateID required | integer (Field-pkiEzsigntemplateID) >= 0 Example: 36 The unique ID of the Ezsigntemplate |
a_fkiEzsignfoldertypeID required | Array of integers (Field-pkiEzsignfoldertypeID) non-empty [ items [ 0 .. 65535 ] ] |
{- "a_fkiEzsignfoldertypeID": [
- 5
]
}
{- "mPayload": {
- "a_pkiEzsigntemplateID": [
- 36
]
}, - "objDebugPayload": {
- "iVersionMin": 1,
- "iVersionMax": 2,
- "a_RequiredPermission": [
- 117
], - "bVersionDeprecated": false,
- "dtResponseDate": "2020-12-31 23:59:59"
}, - "objDebug": {
- "sMemoryUsage": "11,923MB",
- "sRunTime": "0.6084s",
- "iSQLSelects": 3,
- "iSQLQueries": 6,
- "a_objSQLQuery": [
- {
- "sQuery": "SELECT * FROM table",
- "fDuration": 0.0001
}, - {
- "sQuery": "SELECT * FROM table",
- "fDuration": 0.0001
}
]
}
}
The endpoint allows to create one or many elements at once.
required | Array of objects (ezsigntemplate-RequestCompoundV2) non-empty |
{- "a_objEzsigntemplate": [
- {
- "pkiEzsigntemplateID": 36,
- "fkiEzsignfoldertypeID": 5,
- "fkiLanguageID": 2,
- "sEzsigntemplateDescription": "Standard Contract",
- "sEzsigntemplateFilenamepattern": "Contract",
- "bEzsigntemplateAdminonly": true,
- "eEzsigntemplateType": "Usergroup"
}
]
}
{- "mPayload": {
- "a_pkiEzsigntemplateID": [
- 36
]
}, - "objDebugPayload": {
- "iVersionMin": 1,
- "iVersionMax": 2,
- "a_RequiredPermission": [
- 117
], - "bVersionDeprecated": false,
- "dtResponseDate": "2020-12-31 23:59:59"
}, - "objDebug": {
- "sMemoryUsage": "11,923MB",
- "sRunTime": "0.6084s",
- "iSQLSelects": 3,
- "iSQLQueries": 6,
- "a_objSQLQuery": [
- {
- "sQuery": "SELECT * FROM table",
- "fDuration": 0.0001
}, - {
- "sQuery": "SELECT * FROM table",
- "fDuration": 0.0001
}
]
}
}
The endpoint allows to create one or many elements at once.
required | Array of objects (ezsigntemplate-RequestCompound) non-empty |
{- "a_objEzsigntemplate": [
- {
- "pkiEzsigntemplateID": 36,
- "fkiEzsignfoldertypeID": 5,
- "fkiLanguageID": 2,
- "sEzsigntemplateDescription": "Standard Contract",
- "sEzsigntemplateFilenamepattern": "Contract",
- "bEzsigntemplateAdminonly": true
}
]
}
{- "mPayload": {
- "a_pkiEzsigntemplateID": [
- 36
]
}, - "objDebugPayload": {
- "iVersionMin": 1,
- "iVersionMax": 2,
- "a_RequiredPermission": [
- 117
], - "bVersionDeprecated": false,
- "dtResponseDate": "2020-12-31 23:59:59"
}, - "objDebug": {
- "sMemoryUsage": "11,923MB",
- "sRunTime": "0.6084s",
- "iSQLSelects": 3,
- "iSQLQueries": 6,
- "a_objSQLQuery": [
- {
- "sQuery": "SELECT * FROM table",
- "fDuration": 0.0001
}, - {
- "sQuery": "SELECT * FROM table",
- "fDuration": 0.0001
}
]
}
}
pkiEzsigntemplateID required | integer (Field-pkiEzsigntemplateID) >= 0 Example: 36 The unique ID of the Ezsigntemplate |
{- "objDebugPayload": {
- "iVersionMin": 1,
- "iVersionMax": 2,
- "a_RequiredPermission": [
- 117
], - "bVersionDeprecated": false,
- "dtResponseDate": "2020-12-31 23:59:59"
}, - "objDebug": {
- "sMemoryUsage": "11,923MB",
- "sRunTime": "0.6084s",
- "iSQLSelects": 3,
- "iSQLQueries": 6,
- "a_objSQLQuery": [
- {
- "sQuery": "SELECT * FROM table",
- "fDuration": 0.0001
}, - {
- "sQuery": "SELECT * FROM table",
- "fDuration": 0.0001
}
]
}
}
pkiEzsigntemplateID required | integer (Field-pkiEzsigntemplateID) >= 0 Example: 36 The unique ID of the Ezsigntemplate |
required | object (ezsigntemplate-RequestCompoundV2) A Ezsigntemplate Object and children |
{- "objEzsigntemplate": {
- "pkiEzsigntemplateID": 36,
- "fkiEzsignfoldertypeID": 5,
- "fkiLanguageID": 2,
- "sEzsigntemplateDescription": "Standard Contract",
- "sEzsigntemplateFilenamepattern": "Contract",
- "bEzsigntemplateAdminonly": true,
- "eEzsigntemplateType": "Usergroup"
}
}
{- "objDebugPayload": {
- "iVersionMin": 1,
- "iVersionMax": 2,
- "a_RequiredPermission": [
- 117
], - "bVersionDeprecated": false,
- "dtResponseDate": "2020-12-31 23:59:59"
}, - "objDebug": {
- "sMemoryUsage": "11,923MB",
- "sRunTime": "0.6084s",
- "iSQLSelects": 3,
- "iSQLQueries": 6,
- "a_objSQLQuery": [
- {
- "sQuery": "SELECT * FROM table",
- "fDuration": 0.0001
}, - {
- "sQuery": "SELECT * FROM table",
- "fDuration": 0.0001
}
]
}
}
pkiEzsigntemplateID required | integer (Field-pkiEzsigntemplateID) >= 0 Example: 36 The unique ID of the Ezsigntemplate |
required | object (ezsigntemplate-RequestCompound) A Ezsigntemplate Object and children |
{- "objEzsigntemplate": {
- "pkiEzsigntemplateID": 36,
- "fkiEzsignfoldertypeID": 5,
- "fkiLanguageID": 2,
- "sEzsigntemplateDescription": "Standard Contract",
- "sEzsigntemplateFilenamepattern": "Contract",
- "bEzsigntemplateAdminonly": true
}
}
{- "objDebugPayload": {
- "iVersionMin": 1,
- "iVersionMax": 2,
- "a_RequiredPermission": [
- 117
], - "bVersionDeprecated": false,
- "dtResponseDate": "2020-12-31 23:59:59"
}, - "objDebug": {
- "sMemoryUsage": "11,923MB",
- "sRunTime": "0.6084s",
- "iSQLSelects": 3,
- "iSQLQueries": 6,
- "a_objSQLQuery": [
- {
- "sQuery": "SELECT * FROM table",
- "fDuration": 0.0001
}, - {
- "sQuery": "SELECT * FROM table",
- "fDuration": 0.0001
}
]
}
}
pkiEzsigntemplateID required | integer (Field-pkiEzsigntemplateID) >= 0 Example: 36 The unique ID of the Ezsigntemplate |
{- "mPayload": {
- "objEzsigntemplate": {
- "pkiEzsigntemplateID": 36,
- "fkiEzsigntemplatedocumentID": 133,
- "fkiEzsignfoldertypeID": 5,
- "fkiLanguageID": 2,
- "sLanguageNameX": "English",
- "sEzsigntemplateDescription": "Standard Contract",
- "sEzsigntemplateFilenamepattern": "Contract",
- "bEzsigntemplateAdminonly": true,
- "sEzsignfoldertypeNameX": "Default",
- "objAudit": {
- "objAuditdetailCreated": {
- "fkiUserID": 70,
- "fkiApikeyID": 99,
- "sUserLoginname": "JohnDoe",
- "sUserLastname": "Doe",
- "sUserFirstname": "John",
- "sApikeyDescriptionX": "Project X",
- "dtAuditdetailDate": "2020-12-31 23:59:59"
}, - "objAuditdetailModified": {
- "fkiUserID": 70,
- "fkiApikeyID": 99,
- "sUserLoginname": "JohnDoe",
- "sUserLastname": "Doe",
- "sUserFirstname": "John",
- "sApikeyDescriptionX": "Project X",
- "dtAuditdetailDate": "2020-12-31 23:59:59"
}
}, - "bEzsigntemplateEditallowed": true,
- "eEzsigntemplateType": "Usergroup",
- "objEzsigntemplatedocument": {
- "pkiEzsigntemplatedocumentID": 133,
- "fkiEzsigntemplateID": 36,
- "sEzsigntemplatedocumentName": "Standard Contract",
- "iEzsigntemplatedocumentPagetotal": 5,
- "iEzsigntemplatedocumentSignaturetotal": 8,
- "bEzsigntemplatedocumentHassignedsignatures": true
}, - "a_objEzsigntemplatesigner": [
- {
- "pkiEzsigntemplatesignerID": 9,
- "fkiEzsigntemplateID": 36,
- "sEzsigntemplatesignerDescription": "Customer"
}
]
}
}, - "objDebugPayload": {
- "iVersionMin": 1,
- "iVersionMax": 2,
- "a_RequiredPermission": [
- 117
], - "bVersionDeprecated": false,
- "dtResponseDate": "2020-12-31 23:59:59"
}, - "objDebug": {
- "sMemoryUsage": "11,923MB",
- "sRunTime": "0.6084s",
- "iSQLSelects": 3,
- "iSQLQueries": 6,
- "a_objSQLQuery": [
- {
- "sQuery": "SELECT * FROM table",
- "fDuration": 0.0001
}, - {
- "sQuery": "SELECT * FROM table",
- "fDuration": 0.0001
}
]
}
}
pkiEzsigntemplateID required | integer (Field-pkiEzsigntemplateID) >= 0 Example: 36 The unique ID of the Ezsigntemplate |
{- "mPayload": {
- "pkiEzsigntemplateID": 36,
- "fkiEzsigntemplatedocumentID": 133,
- "fkiEzsignfoldertypeID": 5,
- "fkiLanguageID": 2,
- "sLanguageNameX": "English",
- "sEzsigntemplateDescription": "Standard Contract",
- "sEzsigntemplateFilenamepattern": "Contract",
- "bEzsigntemplateAdminonly": true,
- "sEzsignfoldertypeNameX": "Default",
- "objAudit": {
- "objAuditdetailCreated": {
- "fkiUserID": 70,
- "fkiApikeyID": 99,
- "sUserLoginname": "JohnDoe",
- "sUserLastname": "Doe",
- "sUserFirstname": "John",
- "sApikeyDescriptionX": "Project X",
- "dtAuditdetailDate": "2020-12-31 23:59:59"
}, - "objAuditdetailModified": {
- "fkiUserID": 70,
- "fkiApikeyID": 99,
- "sUserLoginname": "JohnDoe",
- "sUserLastname": "Doe",
- "sUserFirstname": "John",
- "sApikeyDescriptionX": "Project X",
- "dtAuditdetailDate": "2020-12-31 23:59:59"
}
}, - "bEzsigntemplateEditallowed": true,
- "eEzsigntemplateType": "Usergroup",
- "objEzsigntemplatedocument": {
- "pkiEzsigntemplatedocumentID": 133,
- "fkiEzsigntemplateID": 36,
- "sEzsigntemplatedocumentName": "Standard Contract",
- "iEzsigntemplatedocumentPagetotal": 5,
- "iEzsigntemplatedocumentSignaturetotal": 8,
- "bEzsigntemplatedocumentHassignedsignatures": true
}, - "a_objEzsigntemplatesigner": [
- {
- "pkiEzsigntemplatesignerID": 9,
- "fkiEzsigntemplateID": 36,
- "sEzsigntemplatesignerDescription": "Customer"
}
]
}, - "objDebugPayload": {
- "iVersionMin": 1,
- "iVersionMax": 2,
- "a_RequiredPermission": [
- 117
], - "bVersionDeprecated": false,
- "dtResponseDate": "2020-12-31 23:59:59"
}, - "objDebug": {
- "sMemoryUsage": "11,923MB",
- "sRunTime": "0.6084s",
- "iSQLSelects": 3,
- "iSQLQueries": 6,
- "a_objSQLQuery": [
- {
- "sQuery": "SELECT * FROM table",
- "fDuration": 0.0001
}, - {
- "sQuery": "SELECT * FROM table",
- "fDuration": 0.0001
}
]
}
}
Enum values that can be filtered in query parameter sFilter:
Variable | Valid values |
---|---|
eEzsigntemplateType | Company Team User Usergroup |
eOrderBy | string Enum: "pkiEzsigntemplateID_ASC" "pkiEzsigntemplateID_DESC" "fkiTeamID_ASC" "fkiTeamID_DESC" "fkiEzsignfoldertypeID_ASC" … 19 more Specify how you want the results to be sorted |
iRowMax | integer (Field-iRowMax) [ 1 .. 10000 ] Example: iRowMax=100 The maximum numbers of results to be returned. When the content-type is application/json there is an implicit default of 10 000. When it's application/vnd.openxmlformats-officedocument.spreadsheetml.sheet the is no implicit default so if you do not specify iRowMax, all records will be returned. |
iRowOffset | integer (Field-iRowOffset) >= 0 Default: 0 Example: iRowOffset=0 The starting element from where to start retrieving the results. For example if you started at iRowOffset=0 and asked for iRowMax=100, to get the next 100 results, you could specify iRowOffset=100&iRowMax=100, |
sFilter | string (Field-sFilter) Example: sFilter=bField1 eq true and iField2 gte 0 and iField2 lte 1000 and sField3 eq 'Other' and eField4 eq 'Paid' and sField5 like '%needle%' and iField6 in '1,2,3' and dtField7 rg '=m,=3mm' The filter to apply to the request to limit results. |
Accept-Language | string (Header-Accept-Language) Enum: "*" "en" "fr" Example: en The language of the returned content.
|
{- "mPayload": {
- "a_objEzsigntemplate": [
- {
- "pkiEzsigntemplateID": 36,
- "fkiEzsignfoldertypeID": 5,
- "fkiLanguageID": 2,
- "sEzsigntemplateDescription": "Standard Contract",
- "iEzsigntemplatedocumentPagetotal": 5,
- "iEzsigntemplateSignaturetotal": 8,
- "iEzsigntemplateFormfieldtotal": 8,
- "bEzsigntemplateIncomplete": false,
- "sEzsignfoldertypeNameX": "Default",
- "eEzsigntemplateType": "Usergroup"
}
], - "iRowReturned": 100,
- "iRowFiltered": 533
}, - "objDebugPayload": {
- "iVersionMin": 1,
- "iVersionMax": 2,
- "a_RequiredPermission": [
- 117
], - "bVersionDeprecated": false,
- "dtResponseDate": "2020-12-31 23:59:59",
- "a_Filter": {
- "a_AutoType": {
- "property1": "string",
- "property2": "string"
}, - "a_AutoTypeHaving": {
- "property1": "string",
- "property2": "string"
}, - "a_Enum": {
- "property1": {
- "property1": "string",
- "property2": "string"
}, - "property2": {
- "property1": "string",
- "property2": "string"
}
}
}, - "a_OrderBy": {
- "property1": "string",
- "property2": "string"
}, - "iRowMax": 100,
- "iRowOffset": 0
}, - "objDebug": {
- "sMemoryUsage": "11,923MB",
- "sRunTime": "0.6084s",
- "iSQLSelects": 3,
- "iSQLQueries": 6,
- "a_objSQLQuery": [
- {
- "sQuery": "SELECT * FROM table",
- "fDuration": 0.0001
}, - {
- "sQuery": "SELECT * FROM table",
- "fDuration": 0.0001
}
]
}
}
Get the list of Ezsigntemplate to be used in a dropdown or autocomplete control.
sSelector required | string Value: "All" The type of Ezsigntemplates to return |
eFilterActive | string Default: "Active" Enum: "All" "Active" "Inactive" Specify which results we want to display. |
sQuery | string Allow to filter the returned results |
Accept-Language | string (Header-Accept-Language) Enum: "*" "en" "fr" Example: en The language of the returned content.
|
{- "mPayload": {
- "a_objEzsigntemplate": [
- {
- "eEzsignfoldertypePrivacylevel": "User",
- "sEzsigntemplateDescription": "Standard Contract",
- "pkiEzsigntemplateID": 36,
- "bEzsigntemplateIsactive": true
}
]
}, - "objDebugPayload": {
- "iVersionMin": 1,
- "iVersionMax": 2,
- "a_RequiredPermission": [
- 117
], - "bVersionDeprecated": false,
- "dtResponseDate": "2020-12-31 23:59:59"
}, - "objDebug": {
- "sMemoryUsage": "11,923MB",
- "sRunTime": "0.6084s",
- "iSQLSelects": 3,
- "iSQLQueries": 6,
- "a_objSQLQuery": [
- {
- "sQuery": "SELECT * FROM table",
- "fDuration": 0.0001
}, - {
- "sQuery": "SELECT * FROM table",
- "fDuration": 0.0001
}
]
}
}
pkiEzsigntemplateglobalID required | integer (Field-pkiEzsigntemplateglobalID) >= 0 Example: 36 The unique ID of the Ezsigntemplateglobal |
{- "mPayload": {
- "objEzsigntemplateglobal": {
- "pkiEzsigntemplateglobalID": 36,
- "fkiEzsigntemplateglobaldocumentID": 133,
- "fkiModuleID": 40,
- "sModuleNameX": "Purchase",
- "fkiLanguageID": 2,
- "sLanguageNameX": "English",
- "eEzsigntemplateglobalModule": "All",
- "eEzsigntemplateglobalSupplier": "Centris",
- "sEzsigntemplateglobalCode": "DR-FR",
- "sEzsigntemplateglobalDescription": "Standard Contract",
- "objEzsigntemplateglobaldocument": {
- "pkiEzsigntemplateglobaldocumentID": 133,
- "sEzsigntemplateglobaldocumentName": "Standard Contract",
- "iEzsigntemplateglobaldocumentPagetotal": 5,
- "iEzsigntemplateglobaldocumentSignaturetotal": 8
}, - "a_objEzsigntemplateglobalsigner": [
- {
- "pkiEzsigntemplateglobalsignerID": 9,
- "fkiEzsigntemplateglobalID": 36,
- "sEzsigntemplateglobalsignerDescription": "Customer"
}
]
}
}, - "objDebugPayload": {
- "iVersionMin": 1,
- "iVersionMax": 2,
- "a_RequiredPermission": [
- 117
], - "bVersionDeprecated": false,
- "dtResponseDate": "2020-12-31 23:59:59"
}, - "objDebug": {
- "sMemoryUsage": "11,923MB",
- "sRunTime": "0.6084s",
- "iSQLSelects": 3,
- "iSQLQueries": 6,
- "a_objSQLQuery": [
- {
- "sQuery": "SELECT * FROM table",
- "fDuration": 0.0001
}, - {
- "sQuery": "SELECT * FROM table",
- "fDuration": 0.0001
}
]
}
}
Get the list of Ezsigntemplateglobal to be used in a dropdown or autocomplete control.
sSelector required | string Value: "All" The type of Ezsigntemplateglobals to return |
eFilterActive | string Default: "Active" Enum: "All" "Active" "Inactive" Specify which results we want to display. |
sQuery | string Allow to filter the returned results |
Accept-Language | string (Header-Accept-Language) Enum: "*" "en" "fr" Example: en The language of the returned content.
|
{- "mPayload": {
- "a_objEzsigntemplateglobal": [
- {
- "pkiEzsigntemplateglobalID": 36,
- "sEzsigntemplateglobalDescription": "Standard Contract",
- "bEzsigntemplateglobalIsactive": true
}
]
}, - "objDebugPayload": {
- "iVersionMin": 1,
- "iVersionMax": 2,
- "a_RequiredPermission": [
- 117
], - "bVersionDeprecated": false,
- "dtResponseDate": "2020-12-31 23:59:59"
}, - "objDebug": {
- "sMemoryUsage": "11,923MB",
- "sRunTime": "0.6084s",
- "iSQLSelects": 3,
- "iSQLQueries": 6,
- "a_objSQLQuery": [
- {
- "sQuery": "SELECT * FROM table",
- "fDuration": 0.0001
}, - {
- "sQuery": "SELECT * FROM table",
- "fDuration": 0.0001
}
]
}
}
The endpoint allows to create one or many elements at once.
required | Array of objects (ezsigntemplatedocument-RequestCompound) non-empty |
{- "a_objEzsigntemplatedocument": [
- {
- "pkiEzsigntemplatedocumentID": 133,
- "fkiEzsigntemplateID": 36,
- "fkiEzsigndocumentID": 97,
- "fkiEzsigntemplatesignerID": 9,
- "sEzsigntemplatedocumentName": "Standard Contract",
- "eEzsigntemplatedocumentSource": "Base64",
- "eEzsigntemplatedocumentFormat": "Pdf",
- "sEzsigntemplatedocumentBase64": "JVBERi0xLjENCiXCpcKxw6sNCg0KMSAwIG9iag0KICA8PCAvVHlwZSAvQ2F0YWxvZw0KICAgICAvUGFnZXMgMiAwIFINCiAgPj4NCmVuZG9iag0KDQoyIDAgb2JqDQogIDw8IC9UeXBlIC9QYWdlcw0KICAgICAvS2lkcyBbMyAwIFJdDQogICAgIC9Db3VudCAxDQogICAgIC9NZWRpYUJveCBbMCAwIDMwMCAxNDRdDQogID4+DQplbmRvYmoNCg0KMyAwIG9iag0KICA8PCAgL1R5cGUgL1BhZ2UNCiAgICAgIC9QYXJlbnQgMiAwIFINCiAgICAgIC9SZXNvdXJjZXMNCiAgICAgICA8PCAvRm9udA0KICAgICAgICAgICA8PCAvRjENCiAgICAgICAgICAgICAgIDw8IC9UeXBlIC9Gb250DQogICAgICAgICAgICAgICAgICAvU3VidHlwZSAvVHlwZTENCiAgICAgICAgICAgICAgICAgIC9CYXNlRm9udCAvVGltZXMtUm9tYW4NCiAgICAgICAgICAgICAgID4+DQogICAgICAgICAgID4+DQogICAgICAgPj4NCiAgICAgIC9Db250ZW50cyA0IDAgUg0KICA+Pg0KZW5kb2JqDQoNCjQgMCBvYmoNCiAgPDwgL0xlbmd0aCA1NSA+Pg0Kc3RyZWFtDQogIEJUDQogICAgL0YxIDE4IFRmDQogICAgMCAwIFRkDQogICAgKEhlbGxvIFdvcmxkKSBUag0KICBFVA0KZW5kc3RyZWFtDQplbmRvYmoNCg0KeHJlZg0KMCA1DQowMDAwMDAwMDAwIDY1NTM1IGYgDQowMDAwMDAwMDE4IDAwMDAwIG4gDQowMDAwMDAwMDc3IDAwMDAwIG4gDQowMDAwMDAwMTc4IDAwMDAwIG4gDQowMDAwMDAwNDU3IDAwMDAwIG4gDQp0cmFpbGVyDQogIDw8ICAvUm9vdCAxIDAgUg0KICAgICAgL1NpemUgNQ0KICA+Pg0Kc3RhcnR4cmVmDQo1NjUNCiUlRU9G",
- "bEzsigntemplatedocumentForcerepair": true,
- "eEzsigntemplatedocumentForm": "Keep",
- "sEzsigntemplatedocumentPassword": "SecretPassword123"
}
]
}
{- "mPayload": {
- "a_pkiEzsigntemplatedocumentID": [
- 133
]
}, - "objDebugPayload": {
- "iVersionMin": 1,
- "iVersionMax": 2,
- "a_RequiredPermission": [
- 117
], - "bVersionDeprecated": false,
- "dtResponseDate": "2020-12-31 23:59:59"
}, - "objDebug": {
- "sMemoryUsage": "11,923MB",
- "sRunTime": "0.6084s",
- "iSQLSelects": 3,
- "iSQLQueries": 6,
- "a_objSQLQuery": [
- {
- "sQuery": "SELECT * FROM table",
- "fDuration": 0.0001
}, - {
- "sQuery": "SELECT * FROM table",
- "fDuration": 0.0001
}
]
}
}
pkiEzsigntemplatedocumentID required | integer (Field-pkiEzsigntemplatedocumentID) >= 0 Example: 133 The unique ID of the Ezsigntemplatedocument |
required | object (ezsigntemplatedocument-RequestCompound) A Ezsigntemplatedocument Object and children |
{- "objEzsigntemplatedocument": {
- "pkiEzsigntemplatedocumentID": 133,
- "fkiEzsigntemplateID": 36,
- "fkiEzsigndocumentID": 97,
- "fkiEzsigntemplatesignerID": 9,
- "sEzsigntemplatedocumentName": "Standard Contract",
- "eEzsigntemplatedocumentSource": "Base64",
- "eEzsigntemplatedocumentFormat": "Pdf",
- "sEzsigntemplatedocumentBase64": "JVBERi0xLjENCiXCpcKxw6sNCg0KMSAwIG9iag0KICA8PCAvVHlwZSAvQ2F0YWxvZw0KICAgICAvUGFnZXMgMiAwIFINCiAgPj4NCmVuZG9iag0KDQoyIDAgb2JqDQogIDw8IC9UeXBlIC9QYWdlcw0KICAgICAvS2lkcyBbMyAwIFJdDQogICAgIC9Db3VudCAxDQogICAgIC9NZWRpYUJveCBbMCAwIDMwMCAxNDRdDQogID4+DQplbmRvYmoNCg0KMyAwIG9iag0KICA8PCAgL1R5cGUgL1BhZ2UNCiAgICAgIC9QYXJlbnQgMiAwIFINCiAgICAgIC9SZXNvdXJjZXMNCiAgICAgICA8PCAvRm9udA0KICAgICAgICAgICA8PCAvRjENCiAgICAgICAgICAgICAgIDw8IC9UeXBlIC9Gb250DQogICAgICAgICAgICAgICAgICAvU3VidHlwZSAvVHlwZTENCiAgICAgICAgICAgICAgICAgIC9CYXNlRm9udCAvVGltZXMtUm9tYW4NCiAgICAgICAgICAgICAgID4+DQogICAgICAgICAgID4+DQogICAgICAgPj4NCiAgICAgIC9Db250ZW50cyA0IDAgUg0KICA+Pg0KZW5kb2JqDQoNCjQgMCBvYmoNCiAgPDwgL0xlbmd0aCA1NSA+Pg0Kc3RyZWFtDQogIEJUDQogICAgL0YxIDE4IFRmDQogICAgMCAwIFRkDQogICAgKEhlbGxvIFdvcmxkKSBUag0KICBFVA0KZW5kc3RyZWFtDQplbmRvYmoNCg0KeHJlZg0KMCA1DQowMDAwMDAwMDAwIDY1NTM1IGYgDQowMDAwMDAwMDE4IDAwMDAwIG4gDQowMDAwMDAwMDc3IDAwMDAwIG4gDQowMDAwMDAwMTc4IDAwMDAwIG4gDQowMDAwMDAwNDU3IDAwMDAwIG4gDQp0cmFpbGVyDQogIDw8ICAvUm9vdCAxIDAgUg0KICAgICAgL1NpemUgNQ0KICA+Pg0Kc3RhcnR4cmVmDQo1NjUNCiUlRU9G",
- "bEzsigntemplatedocumentForcerepair": true,
- "eEzsigntemplatedocumentForm": "Keep",
- "sEzsigntemplatedocumentPassword": "SecretPassword123"
}
}
{- "objDebugPayload": {
- "iVersionMin": 1,
- "iVersionMax": 2,
- "a_RequiredPermission": [
- 117
], - "bVersionDeprecated": false,
- "dtResponseDate": "2020-12-31 23:59:59"
}, - "objDebug": {
- "sMemoryUsage": "11,923MB",
- "sRunTime": "0.6084s",
- "iSQLSelects": 3,
- "iSQLQueries": 6,
- "a_objSQLQuery": [
- {
- "sQuery": "SELECT * FROM table",
- "fDuration": 0.0001
}, - {
- "sQuery": "SELECT * FROM table",
- "fDuration": 0.0001
}
]
}, - "a_objWarning": [
- {
- "sWarningMessage": "string",
- "eWarningCode": "string"
}
]
}
Using this endpoint, you can edit multiple Ezsigntemplateformfieldgroups at the same time.
pkiEzsigntemplatedocumentID required | integer (Field-pkiEzsigntemplatedocumentID) >= 0 Example: 133 The unique ID of the Ezsigntemplatedocument |
required | Array of objects (ezsigntemplateformfieldgroup-RequestCompound) |
{- "a_objEzsigntemplateformfieldgroup": [
- {
- "pkiEzsigntemplateformfieldgroupID": 64,
- "fkiEzsigntemplatedocumentID": 133,
- "eEzsigntemplateformfieldgroupType": "Text",
- "eEzsigntemplateformfieldgroupSignerrequirement": "One",
- "sEzsigntemplateformfieldgroupLabel": "Allergies",
- "iEzsigntemplateformfieldgroupStep": 1,
- "sEzsigntemplateformfieldgroupDefaultvalue": "Foo",
- "iEzsigntemplateformfieldgroupFilledmin": 1,
- "iEzsigntemplateformfieldgroupFilledmax": 2,
- "bEzsigntemplateformfieldgroupReadonly": true,
- "iEzsigntemplateformfieldgroupMaxlength": 75,
- "bEzsigntemplateformfieldgroupEncrypted": true,
- "sEzsigntemplateformfieldgroupRegexp": "/[-0-9a-zA-Z.+_]+@[-0-9a-zA-Z.+_]+.[a-zA-Z]{2,4}/",
- "eEzsigntemplateformfieldgroupTextvalidation": "None",
- "tEzsigntemplateformfieldgroupTooltip": "Please enter a valid email address",
- "eEzsigntemplateformfieldgroupTooltipposition": "TopLeft",
- "a_objEzsigntemplateformfieldgroupsigner": [
- {
- "pkiEzsigntemplateformfieldgroupsignerID": 87,
- "fkiEzsigntemplatesignerID": 9
}
], - "a_objDropdownElement": [
- {
- "sLabel": "string",
- "sValue": "string"
}
], - "a_objEzsigntemplateformfield": [
- {
- "pkiEzsigntemplateformfieldID": 71,
- "eEzsigntemplateformfieldPositioning": "PerCoordinates",
- "iEzsigntemplatedocumentpagePagenumber": 1,
- "sEzsigntemplateformfieldLabel": "Peanuts",
- "sEzsigntemplateformfieldValue": "Yes",
- "iEzsigntemplateformfieldX": 200,
- "iEzsigntemplateformfieldY": 300,
- "iEzsigntemplateformfieldWidth": 102,
- "iEzsigntemplateformfieldHeight": 22,
- "bEzsigntemplateformfieldAutocomplete": true,
- "bEzsigntemplateformfieldSelected": true,
- "eEzsigntemplateformfieldDependencyrequirement": "AllOf",
- "sEzsigntemplateformfieldPositioningpattern": "Signature",
- "iEzsigntemplateformfieldPositioningoffsetx": 200,
- "iEzsigntemplateformfieldPositioningoffsety": 200,
- "eEzsigntemplateformfieldPositioningoccurence": "All",
- "a_objEzsigntemplateelementdependency": [
- {
- "pkiEzsigntemplateelementdependencyID": 314,
- "fkiEzsigntemplateformfieldIDValidation": 71,
- "fkiEzsigntemplateformfieldgroupIDValidation": 64,
- "sEzsigntemplateelementdependencyEzsigntemplateformfieldgrouplabel": "Allergies",
- "sEzsigntemplateelementdependencyEzsigntemplateformfieldlabel": "Peanuts",
- "eEzsigntemplateelementdependencyValidation": "Value",
- "bEzsigntemplateelementdependencySelected": false,
- "eEzsigntemplateelementdependencyOperator": "eq",
- "sEzsigntemplateelementdependencyValue": "Montreal"
}
]
}
]
}
]
}
{- "mPayload": {
- "a_pkiEzsigntemplateformfieldgroupID": [
- 64
]
}, - "objDebugPayload": {
- "iVersionMin": 1,
- "iVersionMax": 2,
- "a_RequiredPermission": [
- 117
], - "bVersionDeprecated": false,
- "dtResponseDate": "2020-12-31 23:59:59"
}, - "objDebug": {
- "sMemoryUsage": "11,923MB",
- "sRunTime": "0.6084s",
- "iSQLSelects": 3,
- "iSQLQueries": 6,
- "a_objSQLQuery": [
- {
- "sQuery": "SELECT * FROM table",
- "fDuration": 0.0001
}, - {
- "sQuery": "SELECT * FROM table",
- "fDuration": 0.0001
}
]
}
}
Using this endpoint, you can edit multiple Ezsigntemplatesignatures at the same time.
pkiEzsigntemplatedocumentID required | integer (Field-pkiEzsigntemplatedocumentID) >= 0 Example: 133 The unique ID of the Ezsigntemplatedocument |
required | Array of objects (ezsigntemplatesignature-RequestCompound) |
{- "a_objEzsigntemplatesignature": [
- {
- "pkiEzsigntemplatesignatureID": 99,
- "fkiEzsigntemplatedocumentID": 133,
- "fkiEzsigntemplatesignerID": 9,
- "fkiEzsigntemplatesignerIDValidation": 9,
- "eEzsigntemplatesignaturePositioning": "PerCoordinates",
- "iEzsigntemplatedocumentpagePagenumber": 1,
- "iEzsigntemplatesignatureX": 200,
- "iEzsigntemplatesignatureY": 300,
- "iEzsigntemplatesignatureWidth": 200,
- "iEzsigntemplatesignatureHeight": 200,
- "iEzsigntemplatesignatureStep": 1,
- "eEzsigntemplatesignatureType": "Name",
- "tEzsigntemplatesignatureTooltip": "Please sign here if you agree to the terms",
- "eEzsigntemplatesignatureTooltipposition": "TopLeft",
- "eEzsigntemplatesignatureFont": "Normal",
- "bEzsigntemplatesignatureRequired": true,
- "eEzsigntemplatesignatureAttachmentnamesource": "Description",
- "sEzsigntemplatesignatureAttachmentdescription": "Attachment",
- "iEzsigntemplatesignatureValidationstep": 1,
- "iEzsigntemplatesignatureMaxlength": 75,
- "sEzsigntemplatesignatureRegexp": "/[-0-9a-zA-Z.+_]+@[-0-9a-zA-Z.+_]+.[a-zA-Z]{2,4}/",
- "eEzsigntemplatesignatureTextvalidation": "None",
- "eEzsigntemplatesignatureDependencyrequirement": "AllOf",
- "sEzsigntemplatesignaturePositioningpattern": "Signature",
- "iEzsigntemplatesignaturePositioningoffsetx": 200,
- "iEzsigntemplatesignaturePositioningoffsety": 200,
- "eEzsigntemplatesignaturePositioningoccurence": "All",
- "bEzsigntemplatesignatureCustomdate": true,
- "a_objEzsigntemplatesignaturecustomdate": [
- {
- "pkiEzsigntemplatesignaturecustomdateID": 58,
- "iEzsigntemplatesignaturecustomdateX": 200,
- "iEzsigntemplatesignaturecustomdateY": 300,
- "iEzsigntemplatesignaturecustomdateOffsetx": 200,
- "iEzsigntemplatesignaturecustomdateOffsety": 200,
- "sEzsigntemplatesignaturecustomdateFormat": "Signature date: {YYYY}/{MM}/{DD} {hh}:{mm}{ss} {Z}"
}
], - "a_objEzsigntemplateelementdependency": [
- {
- "pkiEzsigntemplateelementdependencyID": 314,
- "fkiEzsigntemplateformfieldIDValidation": 71,
- "fkiEzsigntemplateformfieldgroupIDValidation": 64,
- "sEzsigntemplateelementdependencyEzsigntemplateformfieldgrouplabel": "Allergies",
- "sEzsigntemplateelementdependencyEzsigntemplateformfieldlabel": "Peanuts",
- "eEzsigntemplateelementdependencyValidation": "Value",
- "bEzsigntemplateelementdependencySelected": false,
- "eEzsigntemplateelementdependencyOperator": "eq",
- "sEzsigntemplateelementdependencyValue": "Montreal"
}
]
}
]
}
{- "mPayload": {
- "a_pkiEzsigntemplatesignatureID": [
- 99
]
}, - "objDebugPayload": {
- "iVersionMin": 1,
- "iVersionMax": 2,
- "a_RequiredPermission": [
- 117
], - "bVersionDeprecated": false,
- "dtResponseDate": "2020-12-31 23:59:59"
}, - "objDebug": {
- "sMemoryUsage": "11,923MB",
- "sRunTime": "0.6084s",
- "iSQLSelects": 3,
- "iSQLQueries": 6,
- "a_objSQLQuery": [
- {
- "sQuery": "SELECT * FROM table",
- "fDuration": 0.0001
}, - {
- "sQuery": "SELECT * FROM table",
- "fDuration": 0.0001
}
]
}
}
Flatten an Ezsigntemplatedocument signatures, forms and annotations. This process finalizes the PDF so that the forms and annotations become part of the document content and cannot be edited.
pkiEzsigntemplatedocumentID required | integer (Field-pkiEzsigntemplatedocumentID) >= 0 Example: 133 The unique ID of the Ezsigntemplatedocument |
Request for POST /1/object/ezsigntemplatedocument/{pkiEzsigntemplatedocumentID}/flatten
Intentionally empty for future-proofing
{ }
{- "objDebugPayload": {
- "iVersionMin": 1,
- "iVersionMax": 2,
- "a_RequiredPermission": [
- 117
], - "bVersionDeprecated": false,
- "dtResponseDate": "2020-12-31 23:59:59"
}, - "objDebug": {
- "sMemoryUsage": "11,923MB",
- "sRunTime": "0.6084s",
- "iSQLSelects": 3,
- "iSQLQueries": 6,
- "a_objSQLQuery": [
- {
- "sQuery": "SELECT * FROM table",
- "fDuration": 0.0001
}, - {
- "sQuery": "SELECT * FROM table",
- "fDuration": 0.0001
}
]
}
}
pkiEzsigntemplatedocumentID required | integer (Field-pkiEzsigntemplatedocumentID) >= 0 Example: 133 The unique ID of the Ezsigntemplatedocument |
required | object (ezsigntemplatedocument-RequestPatch) An Ezsigntemplatedocument Object |
{- "objEzsigntemplatedocument": {
- "sEzsigntemplatedocumentName": "Standard Contract"
}
}
{- "objDebugPayload": {
- "iVersionMin": 1,
- "iVersionMax": 2,
- "a_RequiredPermission": [
- 117
], - "bVersionDeprecated": false,
- "dtResponseDate": "2020-12-31 23:59:59"
}, - "objDebug": {
- "sMemoryUsage": "11,923MB",
- "sRunTime": "0.6084s",
- "iSQLSelects": 3,
- "iSQLQueries": 6,
- "a_objSQLQuery": [
- {
- "sQuery": "SELECT * FROM table",
- "fDuration": 0.0001
}, - {
- "sQuery": "SELECT * FROM table",
- "fDuration": 0.0001
}
]
}
}
pkiEzsigntemplatedocumentID required | integer (Field-pkiEzsigntemplatedocumentID) >= 0 Example: 133 The unique ID of the Ezsigntemplatedocument |
{- "mPayload": {
- "objEzsigntemplatedocument": {
- "pkiEzsigntemplatedocumentID": 133,
- "fkiEzsigntemplateID": 36,
- "sEzsigntemplatedocumentName": "Standard Contract",
- "iEzsigntemplatedocumentPagetotal": 5,
- "iEzsigntemplatedocumentSignaturetotal": 8,
- "bEzsigntemplatedocumentHassignedsignatures": true
}
}, - "objDebugPayload": {
- "iVersionMin": 1,
- "iVersionMax": 2,
- "a_RequiredPermission": [
- 117
], - "bVersionDeprecated": false,
- "dtResponseDate": "2020-12-31 23:59:59"
}, - "objDebug": {
- "sMemoryUsage": "11,923MB",
- "sRunTime": "0.6084s",
- "iSQLSelects": 3,
- "iSQLQueries": 6,
- "a_objSQLQuery": [
- {
- "sQuery": "SELECT * FROM table",
- "fDuration": 0.0001
}, - {
- "sQuery": "SELECT * FROM table",
- "fDuration": 0.0001
}
]
}
}
pkiEzsigntemplatedocumentID required | integer (Field-pkiEzsigntemplatedocumentID) >= 0 Example: 133 The unique ID of the Ezsigntemplatedocument |
{- "mPayload": {
- "a_objEzsigntemplatedocumentpage": [
- {
- "pkiEzsigntemplatedocumentpageID": 85,
- "iEzsigntemplatedocumentpageWidthimage": 850,
- "iEzsigntemplatedocumentpageHeightimage": 1100,
- "iEzsigntemplatedocumentpageWidthpdf": 612,
- "iEzsigntemplatedocumentpageHeightpdf": 792,
- "iEzsigntemplatedocumentpagePagenumber": 1,
- "sComputedImageurl": "string"
}
]
}, - "objDebugPayload": {
- "iVersionMin": 1,
- "iVersionMax": 2,
- "a_RequiredPermission": [
- 117
], - "bVersionDeprecated": false,
- "dtResponseDate": "2020-12-31 23:59:59"
}, - "objDebug": {
- "sMemoryUsage": "11,923MB",
- "sRunTime": "0.6084s",
- "iSQLSelects": 3,
- "iSQLQueries": 6,
- "a_objSQLQuery": [
- {
- "sQuery": "SELECT * FROM table",
- "fDuration": 0.0001
}, - {
- "sQuery": "SELECT * FROM table",
- "fDuration": 0.0001
}
]
}
}
pkiEzsigntemplatedocumentID required | integer (Field-pkiEzsigntemplatedocumentID) >= 0 Example: 133 The unique ID of the Ezsigntemplatedocument |
{- "mPayload": {
- "a_objEzsigntemplateformfieldgroup": [
- {
- "pkiEzsigntemplateformfieldgroupID": 64,
- "fkiEzsigntemplatedocumentID": 133,
- "eEzsigntemplateformfieldgroupType": "Text",
- "eEzsigntemplateformfieldgroupSignerrequirement": "One",
- "sEzsigntemplateformfieldgroupLabel": "Allergies",
- "iEzsigntemplateformfieldgroupStep": 1,
- "sEzsigntemplateformfieldgroupDefaultvalue": "Foo",
- "iEzsigntemplateformfieldgroupFilledmin": 1,
- "iEzsigntemplateformfieldgroupFilledmax": 2,
- "bEzsigntemplateformfieldgroupReadonly": true,
- "iEzsigntemplateformfieldgroupMaxlength": 75,
- "bEzsigntemplateformfieldgroupEncrypted": true,
- "sEzsigntemplateformfieldgroupRegexp": "/[-0-9a-zA-Z.+_]+@[-0-9a-zA-Z.+_]+.[a-zA-Z]{2,4}/",
- "eEzsigntemplateformfieldgroupTextvalidation": "None",
- "tEzsigntemplateformfieldgroupTooltip": "Please enter a valid email address",
- "eEzsigntemplateformfieldgroupTooltipposition": "TopLeft",
- "a_objEzsigntemplateformfieldgroupsigner": [
- {
- "pkiEzsigntemplateformfieldgroupsignerID": 87,
- "fkiEzsigntemplatesignerID": 9
}
], - "a_objDropdownElement": [
- {
- "sLabel": "string",
- "sValue": "string"
}
], - "a_objEzsigntemplateformfield": [
- {
- "pkiEzsigntemplateformfieldID": 71,
- "eEzsigntemplateformfieldPositioning": "PerCoordinates",
- "iEzsigntemplatedocumentpagePagenumber": 1,
- "sEzsigntemplateformfieldLabel": "Peanuts",
- "sEzsigntemplateformfieldValue": "Yes",
- "iEzsigntemplateformfieldX": 200,
- "iEzsigntemplateformfieldY": 300,
- "iEzsigntemplateformfieldWidth": 102,
- "iEzsigntemplateformfieldHeight": 22,
- "bEzsigntemplateformfieldAutocomplete": true,
- "bEzsigntemplateformfieldSelected": true,
- "eEzsigntemplateformfieldDependencyrequirement": "AllOf",
- "sEzsigntemplateformfieldPositioningpattern": "Signature",
- "iEzsigntemplateformfieldPositioningoffsetx": 200,
- "iEzsigntemplateformfieldPositioningoffsety": 200,
- "eEzsigntemplateformfieldPositioningoccurence": "All",
- "a_objEzsigntemplateelementdependency": [
- {
- "pkiEzsigntemplateelementdependencyID": 314,
- "fkiEzsigntemplateformfieldID": 71,
- "fkiEzsigntemplatesignatureID": 99,
- "fkiEzsigntemplateformfieldIDValidation": 71,
- "fkiEzsigntemplateformfieldgroupIDValidation": 64,
- "eEzsigntemplateelementdependencyValidation": "Value",
- "bEzsigntemplateelementdependencySelected": false,
- "eEzsigntemplateelementdependencyOperator": "eq",
- "sEzsigntemplateelementdependencyValue": "Montreal"
}
]
}
]
}
]
}, - "objDebugPayload": {
- "iVersionMin": 1,
- "iVersionMax": 2,
- "a_RequiredPermission": [
- 117
], - "bVersionDeprecated": false,
- "dtResponseDate": "2020-12-31 23:59:59"
}, - "objDebug": {
- "sMemoryUsage": "11,923MB",
- "sRunTime": "0.6084s",
- "iSQLSelects": 3,
- "iSQLQueries": 6,
- "a_objSQLQuery": [
- {
- "sQuery": "SELECT * FROM table",
- "fDuration": 0.0001
}, - {
- "sQuery": "SELECT * FROM table",
- "fDuration": 0.0001
}
]
}
}
pkiEzsigntemplatedocumentID required | integer (Field-pkiEzsigntemplatedocumentID) >= 0 Example: 133 The unique ID of the Ezsigntemplatedocument |
{- "mPayload": {
- "a_objEzsigntemplatesignature": [
- {
- "pkiEzsigntemplatesignatureID": 99,
- "fkiEzsigntemplatedocumentID": 133,
- "fkiEzsigntemplatesignerID": 9,
- "fkiEzsigntemplatesignerIDValidation": 9,
- "eEzsigntemplatesignaturePositioning": "PerCoordinates",
- "iEzsigntemplatedocumentpagePagenumber": 1,
- "iEzsigntemplatesignatureX": 200,
- "iEzsigntemplatesignatureY": 300,
- "iEzsigntemplatesignatureWidth": 200,
- "iEzsigntemplatesignatureHeight": 200,
- "iEzsigntemplatesignatureStep": 1,
- "eEzsigntemplatesignatureType": "Name",
- "tEzsigntemplatesignatureTooltip": "Please sign here if you agree to the terms",
- "eEzsigntemplatesignatureTooltipposition": "TopLeft",
- "eEzsigntemplatesignatureFont": "Normal",
- "iEzsigntemplatesignatureValidationstep": 1,
- "sEzsigntemplatesignatureAttachmentdescription": "Attachment",
- "eEzsigntemplatesignatureAttachmentnamesource": "Description",
- "bEzsigntemplatesignatureRequired": true,
- "iEzsigntemplatesignatureMaxlength": 75,
- "sEzsigntemplatesignatureRegexp": "/[-0-9a-zA-Z.+_]+@[-0-9a-zA-Z.+_]+.[a-zA-Z]{2,4}/",
- "eEzsigntemplatesignatureTextvalidation": "None",
- "eEzsigntemplatesignatureDependencyrequirement": "AllOf",
- "sEzsigntemplatesignaturePositioningpattern": "Signature",
- "iEzsigntemplatesignaturePositioningoffsetx": 200,
- "iEzsigntemplatesignaturePositioningoffsety": 200,
- "eEzsigntemplatesignaturePositioningoccurence": "All",
- "bEzsigntemplatesignatureCustomdate": true,
- "a_objEzsigntemplatesignaturecustomdate": [
- {
- "pkiEzsigntemplatesignaturecustomdateID": 58,
- "iEzsigntemplatesignaturecustomdateX": 200,
- "iEzsigntemplatesignaturecustomdateY": 300,
- "iEzsigntemplatesignaturecustomdateOffsetx": 200,
- "iEzsigntemplatesignaturecustomdateOffsety": 200,
- "sEzsigntemplatesignaturecustomdateFormat": "Signature date: {YYYY}/{MM}/{DD} {hh}:{mm}{ss} {Z}"
}
], - "a_objEzsigntemplateelementdependency": [
- {
- "pkiEzsigntemplateelementdependencyID": 314,
- "fkiEzsigntemplateformfieldID": 71,
- "fkiEzsigntemplatesignatureID": 99,
- "fkiEzsigntemplateformfieldIDValidation": 71,
- "fkiEzsigntemplateformfieldgroupIDValidation": 64,
- "eEzsigntemplateelementdependencyValidation": "Value",
- "bEzsigntemplateelementdependencySelected": false,
- "eEzsigntemplateelementdependencyOperator": "eq",
- "sEzsigntemplateelementdependencyValue": "Montreal"
}
]
}
]
}, - "objDebugPayload": {
- "iVersionMin": 1,
- "iVersionMax": 2,
- "a_RequiredPermission": [
- 117
], - "bVersionDeprecated": false,
- "dtResponseDate": "2020-12-31 23:59:59"
}, - "objDebug": {
- "sMemoryUsage": "11,923MB",
- "sRunTime": "0.6084s",
- "iSQLSelects": 3,
- "iSQLQueries": 6,
- "a_objSQLQuery": [
- {
- "sQuery": "SELECT * FROM table",
- "fDuration": 0.0001
}, - {
- "sQuery": "SELECT * FROM table",
- "fDuration": 0.0001
}
]
}
}
pkiEzsigntemplatedocumentID required | integer (Field-pkiEzsigntemplatedocumentID) >= 0 Example: 133 The unique ID of the Ezsigntemplatedocument |
eGet required | string Enum: "All" "Words" Specify if you want to retrieve All words or specific Words from the document. If you specify Words, you must send the list of words to search for in a_sWord. |
bWordCaseSensitive required | boolean IF true, words will be searched case-sensitive and results will be returned case-sensitive. IF false, words will be searched case-insensitive and results will be returned case-insensitive. |
a_sWord | Array of strings Array of words to find in the document |
{- "eGet": "All",
- "bWordCaseSensitive": true,
- "a_sWord": [
- "string"
]
}
{- "mPayload": [
- {
- "sWord": "string",
- "a_objWordPositionOccurence": [
- {
- "iPage": 1,
- "iX": 0,
- "iY": 0
}
]
}
], - "objDebugPayload": {
- "iVersionMin": 1,
- "iVersionMax": 2,
- "a_RequiredPermission": [
- 117
], - "bVersionDeprecated": false,
- "dtResponseDate": "2020-12-31 23:59:59"
}, - "objDebug": {
- "sMemoryUsage": "11,923MB",
- "sRunTime": "0.6084s",
- "iSQLSelects": 3,
- "iSQLQueries": 6,
- "a_objSQLQuery": [
- {
- "sQuery": "SELECT * FROM table",
- "fDuration": 0.0001
}, - {
- "sQuery": "SELECT * FROM table",
- "fDuration": 0.0001
}
]
}
}
Ezsigntemplateformfieldgroup contains detail about a specific group of form blocks on a page of a Ezsigntemplatedocument
The endpoint allows to create one or many elements at once.
required | Array of objects (ezsigntemplateformfieldgroup-RequestCompound) non-empty |
{- "a_objEzsigntemplateformfieldgroup": [
- {
- "pkiEzsigntemplateformfieldgroupID": 64,
- "fkiEzsigntemplatedocumentID": 133,
- "eEzsigntemplateformfieldgroupType": "Text",
- "eEzsigntemplateformfieldgroupSignerrequirement": "One",
- "sEzsigntemplateformfieldgroupLabel": "Allergies",
- "iEzsigntemplateformfieldgroupStep": 1,
- "sEzsigntemplateformfieldgroupDefaultvalue": "Foo",
- "iEzsigntemplateformfieldgroupFilledmin": 1,
- "iEzsigntemplateformfieldgroupFilledmax": 2,
- "bEzsigntemplateformfieldgroupReadonly": true,
- "iEzsigntemplateformfieldgroupMaxlength": 75,
- "bEzsigntemplateformfieldgroupEncrypted": true,
- "sEzsigntemplateformfieldgroupRegexp": "/[-0-9a-zA-Z.+_]+@[-0-9a-zA-Z.+_]+.[a-zA-Z]{2,4}/",
- "eEzsigntemplateformfieldgroupTextvalidation": "None",
- "tEzsigntemplateformfieldgroupTooltip": "Please enter a valid email address",
- "eEzsigntemplateformfieldgroupTooltipposition": "TopLeft",
- "a_objEzsigntemplateformfieldgroupsigner": [
- {
- "pkiEzsigntemplateformfieldgroupsignerID": 87,
- "fkiEzsigntemplatesignerID": 9
}
], - "a_objDropdownElement": [
- {
- "sLabel": "string",
- "sValue": "string"
}
], - "a_objEzsigntemplateformfield": [
- {
- "pkiEzsigntemplateformfieldID": 71,
- "eEzsigntemplateformfieldPositioning": "PerCoordinates",
- "iEzsigntemplatedocumentpagePagenumber": 1,
- "sEzsigntemplateformfieldLabel": "Peanuts",
- "sEzsigntemplateformfieldValue": "Yes",
- "iEzsigntemplateformfieldX": 200,
- "iEzsigntemplateformfieldY": 300,
- "iEzsigntemplateformfieldWidth": 102,
- "iEzsigntemplateformfieldHeight": 22,
- "bEzsigntemplateformfieldAutocomplete": true,
- "bEzsigntemplateformfieldSelected": true,
- "eEzsigntemplateformfieldDependencyrequirement": "AllOf",
- "sEzsigntemplateformfieldPositioningpattern": "Signature",
- "iEzsigntemplateformfieldPositioningoffsetx": 200,
- "iEzsigntemplateformfieldPositioningoffsety": 200,
- "eEzsigntemplateformfieldPositioningoccurence": "All",
- "a_objEzsigntemplateelementdependency": [
- {
- "pkiEzsigntemplateelementdependencyID": 314,
- "fkiEzsigntemplateformfieldIDValidation": 71,
- "fkiEzsigntemplateformfieldgroupIDValidation": 64,
- "sEzsigntemplateelementdependencyEzsigntemplateformfieldgrouplabel": "Allergies",
- "sEzsigntemplateelementdependencyEzsigntemplateformfieldlabel": "Peanuts",
- "eEzsigntemplateelementdependencyValidation": "Value",
- "bEzsigntemplateelementdependencySelected": false,
- "eEzsigntemplateelementdependencyOperator": "eq",
- "sEzsigntemplateelementdependencyValue": "Montreal"
}
]
}
]
}
]
}
{- "mPayload": {
- "a_pkiEzsigntemplateformfieldgroupID": [
- 64
]
}, - "objDebugPayload": {
- "iVersionMin": 1,
- "iVersionMax": 2,
- "a_RequiredPermission": [
- 117
], - "bVersionDeprecated": false,
- "dtResponseDate": "2020-12-31 23:59:59"
}, - "objDebug": {
- "sMemoryUsage": "11,923MB",
- "sRunTime": "0.6084s",
- "iSQLSelects": 3,
- "iSQLQueries": 6,
- "a_objSQLQuery": [
- {
- "sQuery": "SELECT * FROM table",
- "fDuration": 0.0001
}, - {
- "sQuery": "SELECT * FROM table",
- "fDuration": 0.0001
}
]
}
}
pkiEzsigntemplateformfieldgroupID required | integer (Field-pkiEzsigntemplateformfieldgroupID) >= 0 Example: 64 The unique ID of the Ezsigntemplateformfieldgroup |
{- "objDebugPayload": {
- "iVersionMin": 1,
- "iVersionMax": 2,
- "a_RequiredPermission": [
- 117
], - "bVersionDeprecated": false,
- "dtResponseDate": "2020-12-31 23:59:59"
}, - "objDebug": {
- "sMemoryUsage": "11,923MB",
- "sRunTime": "0.6084s",
- "iSQLSelects": 3,
- "iSQLQueries": 6,
- "a_objSQLQuery": [
- {
- "sQuery": "SELECT * FROM table",
- "fDuration": 0.0001
}, - {
- "sQuery": "SELECT * FROM table",
- "fDuration": 0.0001
}
]
}
}
pkiEzsigntemplateformfieldgroupID required | integer (Field-pkiEzsigntemplateformfieldgroupID) >= 0 Example: 64 The unique ID of the Ezsigntemplateformfieldgroup |
required | object (ezsigntemplateformfieldgroup-RequestCompound) A Ezsigntemplateformfieldgroup Object and children |
{- "objEzsigntemplateformfieldgroup": {
- "pkiEzsigntemplateformfieldgroupID": 64,
- "fkiEzsigntemplatedocumentID": 133,
- "eEzsigntemplateformfieldgroupType": "Text",
- "eEzsigntemplateformfieldgroupSignerrequirement": "One",
- "sEzsigntemplateformfieldgroupLabel": "Allergies",
- "iEzsigntemplateformfieldgroupStep": 1,
- "sEzsigntemplateformfieldgroupDefaultvalue": "Foo",
- "iEzsigntemplateformfieldgroupFilledmin": 1,
- "iEzsigntemplateformfieldgroupFilledmax": 2,
- "bEzsigntemplateformfieldgroupReadonly": true,
- "iEzsigntemplateformfieldgroupMaxlength": 75,
- "bEzsigntemplateformfieldgroupEncrypted": true,
- "sEzsigntemplateformfieldgroupRegexp": "/[-0-9a-zA-Z.+_]+@[-0-9a-zA-Z.+_]+.[a-zA-Z]{2,4}/",
- "eEzsigntemplateformfieldgroupTextvalidation": "None",
- "tEzsigntemplateformfieldgroupTooltip": "Please enter a valid email address",
- "eEzsigntemplateformfieldgroupTooltipposition": "TopLeft",
- "a_objEzsigntemplateformfieldgroupsigner": [
- {
- "pkiEzsigntemplateformfieldgroupsignerID": 87,
- "fkiEzsigntemplatesignerID": 9
}
], - "a_objDropdownElement": [
- {
- "sLabel": "string",
- "sValue": "string"
}
], - "a_objEzsigntemplateformfield": [
- {
- "pkiEzsigntemplateformfieldID": 71,
- "eEzsigntemplateformfieldPositioning": "PerCoordinates",
- "iEzsigntemplatedocumentpagePagenumber": 1,
- "sEzsigntemplateformfieldLabel": "Peanuts",
- "sEzsigntemplateformfieldValue": "Yes",
- "iEzsigntemplateformfieldX": 200,
- "iEzsigntemplateformfieldY": 300,
- "iEzsigntemplateformfieldWidth": 102,
- "iEzsigntemplateformfieldHeight": 22,
- "bEzsigntemplateformfieldAutocomplete": true,
- "bEzsigntemplateformfieldSelected": true,
- "eEzsigntemplateformfieldDependencyrequirement": "AllOf",
- "sEzsigntemplateformfieldPositioningpattern": "Signature",
- "iEzsigntemplateformfieldPositioningoffsetx": 200,
- "iEzsigntemplateformfieldPositioningoffsety": 200,
- "eEzsigntemplateformfieldPositioningoccurence": "All",
- "a_objEzsigntemplateelementdependency": [
- {
- "pkiEzsigntemplateelementdependencyID": 314,
- "fkiEzsigntemplateformfieldIDValidation": 71,
- "fkiEzsigntemplateformfieldgroupIDValidation": 64,
- "sEzsigntemplateelementdependencyEzsigntemplateformfieldgrouplabel": "Allergies",
- "sEzsigntemplateelementdependencyEzsigntemplateformfieldlabel": "Peanuts",
- "eEzsigntemplateelementdependencyValidation": "Value",
- "bEzsigntemplateelementdependencySelected": false,
- "eEzsigntemplateelementdependencyOperator": "eq",
- "sEzsigntemplateelementdependencyValue": "Montreal"
}
]
}
]
}
}
{- "objDebugPayload": {
- "iVersionMin": 1,
- "iVersionMax": 2,
- "a_RequiredPermission": [
- 117
], - "bVersionDeprecated": false,
- "dtResponseDate": "2020-12-31 23:59:59"
}, - "objDebug": {
- "sMemoryUsage": "11,923MB",
- "sRunTime": "0.6084s",
- "iSQLSelects": 3,
- "iSQLQueries": 6,
- "a_objSQLQuery": [
- {
- "sQuery": "SELECT * FROM table",
- "fDuration": 0.0001
}, - {
- "sQuery": "SELECT * FROM table",
- "fDuration": 0.0001
}
]
}
}
pkiEzsigntemplateformfieldgroupID required | integer (Field-pkiEzsigntemplateformfieldgroupID) >= 0 Example: 64 The unique ID of the Ezsigntemplateformfieldgroup |
{- "mPayload": {
- "objEzsigntemplateformfieldgroup": {
- "pkiEzsigntemplateformfieldgroupID": 64,
- "fkiEzsigntemplatedocumentID": 133,
- "eEzsigntemplateformfieldgroupType": "Text",
- "eEzsigntemplateformfieldgroupSignerrequirement": "One",
- "sEzsigntemplateformfieldgroupLabel": "Allergies",
- "iEzsigntemplateformfieldgroupStep": 1,
- "sEzsigntemplateformfieldgroupDefaultvalue": "Foo",
- "iEzsigntemplateformfieldgroupFilledmin": 1,
- "iEzsigntemplateformfieldgroupFilledmax": 2,
- "bEzsigntemplateformfieldgroupReadonly": true,
- "iEzsigntemplateformfieldgroupMaxlength": 75,
- "bEzsigntemplateformfieldgroupEncrypted": true,
- "sEzsigntemplateformfieldgroupRegexp": "/[-0-9a-zA-Z.+_]+@[-0-9a-zA-Z.+_]+.[a-zA-Z]{2,4}/",
- "eEzsigntemplateformfieldgroupTextvalidation": "None",
- "tEzsigntemplateformfieldgroupTooltip": "Please enter a valid email address",
- "eEzsigntemplateformfieldgroupTooltipposition": "TopLeft",
- "a_objEzsigntemplateformfieldgroupsigner": [
- {
- "pkiEzsigntemplateformfieldgroupsignerID": 87,
- "fkiEzsigntemplatesignerID": 9
}
], - "a_objDropdownElement": [
- {
- "sLabel": "string",
- "sValue": "string"
}
], - "a_objEzsigntemplateformfield": [
- {
- "pkiEzsigntemplateformfieldID": 71,
- "eEzsigntemplateformfieldPositioning": "PerCoordinates",
- "iEzsigntemplatedocumentpagePagenumber": 1,
- "sEzsigntemplateformfieldLabel": "Peanuts",
- "sEzsigntemplateformfieldValue": "Yes",
- "iEzsigntemplateformfieldX": 200,
- "iEzsigntemplateformfieldY": 300,
- "iEzsigntemplateformfieldWidth": 102,
- "iEzsigntemplateformfieldHeight": 22,
- "bEzsigntemplateformfieldAutocomplete": true,
- "bEzsigntemplateformfieldSelected": true,
- "eEzsigntemplateformfieldDependencyrequirement": "AllOf",
- "sEzsigntemplateformfieldPositioningpattern": "Signature",
- "iEzsigntemplateformfieldPositioningoffsetx": 200,
- "iEzsigntemplateformfieldPositioningoffsety": 200,
- "eEzsigntemplateformfieldPositioningoccurence": "All",
- "a_objEzsigntemplateelementdependency": [
- {
- "pkiEzsigntemplateelementdependencyID": 314,
- "fkiEzsigntemplateformfieldID": 71,
- "fkiEzsigntemplatesignatureID": 99,
- "fkiEzsigntemplateformfieldIDValidation": 71,
- "fkiEzsigntemplateformfieldgroupIDValidation": 64,
- "eEzsigntemplateelementdependencyValidation": "Value",
- "bEzsigntemplateelementdependencySelected": false,
- "eEzsigntemplateelementdependencyOperator": "eq",
- "sEzsigntemplateelementdependencyValue": "Montreal"
}
]
}
]
}
}, - "objDebugPayload": {
- "iVersionMin": 1,
- "iVersionMax": 2,
- "a_RequiredPermission": [
- 117
], - "bVersionDeprecated": false,
- "dtResponseDate": "2020-12-31 23:59:59"
}, - "objDebug": {
- "sMemoryUsage": "11,923MB",
- "sRunTime": "0.6084s",
- "iSQLSelects": 3,
- "iSQLQueries": 6,
- "a_objSQLQuery": [
- {
- "sQuery": "SELECT * FROM table",
- "fDuration": 0.0001
}, - {
- "sQuery": "SELECT * FROM table",
- "fDuration": 0.0001
}
]
}
}
Ezsigntemplatepackage contains detail about a package of ezsign templates that can be used as a whole
The endpoint allows to create one or many elements at once.
required | Array of objects (ezsigntemplatepackage-RequestCompound) non-empty |
{- "a_objEzsigntemplatepackage": [
- {
- "pkiEzsigntemplatepackageID": 99,
- "fkiEzsignfoldertypeID": 5,
- "fkiLanguageID": 2,
- "sEzsigntemplatepackageDescription": "Package for new clients",
- "bEzsigntemplatepackageAdminonly": true,
- "bEzsigntemplatepackageIsactive": true
}
]
}
{- "mPayload": {
- "a_pkiEzsigntemplatepackageID": [
- 99
]
}, - "objDebugPayload": {
- "iVersionMin": 1,
- "iVersionMax": 2,
- "a_RequiredPermission": [
- 117
], - "bVersionDeprecated": false,
- "dtResponseDate": "2020-12-31 23:59:59"
}, - "objDebug": {
- "sMemoryUsage": "11,923MB",
- "sRunTime": "0.6084s",
- "iSQLSelects": 3,
- "iSQLQueries": 6,
- "a_objSQLQuery": [
- {
- "sQuery": "SELECT * FROM table",
- "fDuration": 0.0001
}, - {
- "sQuery": "SELECT * FROM table",
- "fDuration": 0.0001
}
]
}
}
pkiEzsigntemplatepackageID required | integer (Field-pkiEzsigntemplatepackageID) >= 0 Example: 99 The unique ID of the Ezsigntemplatepackage |
{- "objDebugPayload": {
- "iVersionMin": 1,
- "iVersionMax": 2,
- "a_RequiredPermission": [
- 117
], - "bVersionDeprecated": false,
- "dtResponseDate": "2020-12-31 23:59:59"
}, - "objDebug": {
- "sMemoryUsage": "11,923MB",
- "sRunTime": "0.6084s",
- "iSQLSelects": 3,
- "iSQLQueries": 6,
- "a_objSQLQuery": [
- {
- "sQuery": "SELECT * FROM table",
- "fDuration": 0.0001
}, - {
- "sQuery": "SELECT * FROM table",
- "fDuration": 0.0001
}
]
}
}
pkiEzsigntemplatepackageID required | integer (Field-pkiEzsigntemplatepackageID) >= 0 Example: 99 The unique ID of the Ezsigntemplatepackage |
required | object (ezsigntemplatepackage-RequestCompound) A Ezsigntemplatepackage Object and children |
{- "objEzsigntemplatepackage": {
- "pkiEzsigntemplatepackageID": 99,
- "fkiEzsignfoldertypeID": 5,
- "fkiLanguageID": 2,
- "sEzsigntemplatepackageDescription": "Package for new clients",
- "bEzsigntemplatepackageAdminonly": true,
- "bEzsigntemplatepackageIsactive": true
}
}
{- "objDebugPayload": {
- "iVersionMin": 1,
- "iVersionMax": 2,
- "a_RequiredPermission": [
- 117
], - "bVersionDeprecated": false,
- "dtResponseDate": "2020-12-31 23:59:59"
}, - "objDebug": {
- "sMemoryUsage": "11,923MB",
- "sRunTime": "0.6084s",
- "iSQLSelects": 3,
- "iSQLQueries": 6,
- "a_objSQLQuery": [
- {
- "sQuery": "SELECT * FROM table",
- "fDuration": 0.0001
}, - {
- "sQuery": "SELECT * FROM table",
- "fDuration": 0.0001
}
]
}
}
Using this endpoint, you can edit multiple Ezsigntemplatepackagesigners at the same time.
pkiEzsigntemplatepackageID required | integer (Field-pkiEzsigntemplatepackageID) >= 0 Example: 99 The unique ID of the Ezsigntemplatepackage |
required | Array of objects (ezsigntemplatepackagesigner-RequestCompound) |
{- "a_objEzsigntemplatepackagesigner": [
- {
- "pkiEzsigntemplatepackagesignerID": 174,
- "fkiEzsigntemplatepackageID": 99,
- "sEzsigntemplatepackagesignerDescription": "Customer"
}
]
}
{- "mPayload": {
- "a_pkiEzsigntemplatepackagesignerID": [
- 174
]
}, - "objDebugPayload": {
- "iVersionMin": 1,
- "iVersionMax": 2,
- "a_RequiredPermission": [
- 117
], - "bVersionDeprecated": false,
- "dtResponseDate": "2020-12-31 23:59:59"
}, - "objDebug": {
- "sMemoryUsage": "11,923MB",
- "sRunTime": "0.6084s",
- "iSQLSelects": 3,
- "iSQLQueries": 6,
- "a_objSQLQuery": [
- {
- "sQuery": "SELECT * FROM table",
- "fDuration": 0.0001
}, - {
- "sQuery": "SELECT * FROM table",
- "fDuration": 0.0001
}
]
}
}
pkiEzsigntemplatepackageID required | integer (Field-pkiEzsigntemplatepackageID) >= 0 Example: 99 The unique ID of the Ezsigntemplatepackage |
{- "mPayload": {
- "objEzsigntemplatepackage": {
- "pkiEzsigntemplatepackageID": 99,
- "fkiEzsignfoldertypeID": 5,
- "fkiLanguageID": 2,
- "sLanguageNameX": "English",
- "sEzsigntemplatepackageDescription": "Package for new clients",
- "bEzsigntemplatepackageAdminonly": true,
- "bEzsigntemplatepackageNeedvalidation": true,
- "bEzsigntemplatepackageIsactive": true,
- "sEzsignfoldertypeNameX": "Default",
- "bEzsigntemplatepackageEditallowed": true,
- "a_objEzsigntemplatepackagesigner": [
- {
- "pkiEzsigntemplatepackagesignerID": 174,
- "fkiEzsigntemplatepackageID": 99,
- "sEzsigntemplatepackagesignerDescription": "Customer"
}
], - "a_objEzsigntemplatepackagemembership": [
- {
- "pkiEzsigntemplatepackagemembershipID": 194,
- "fkiEzsigntemplatepackageID": 99,
- "fkiEzsigntemplateID": 36,
- "iEzsigntemplatepackagemembershipOrder": 1,
- "objEzsigntemplate": {
- "pkiEzsigntemplateID": 36,
- "fkiEzsigntemplatedocumentID": 133,
- "fkiEzsignfoldertypeID": 5,
- "fkiLanguageID": 2,
- "sLanguageNameX": "English",
- "sEzsigntemplateDescription": "Standard Contract",
- "sEzsigntemplateFilenamepattern": "Contract",
- "bEzsigntemplateAdminonly": true,
- "sEzsignfoldertypeNameX": "Default",
- "objAudit": {
- "objAuditdetailCreated": {
- "fkiUserID": 70,
- "fkiApikeyID": 99,
- "sUserLoginname": "JohnDoe",
- "sUserLastname": "Doe",
- "sUserFirstname": "John",
- "sApikeyDescriptionX": "Project X",
- "dtAuditdetailDate": "2020-12-31 23:59:59"
}, - "objAuditdetailModified": {
- "fkiUserID": 70,
- "fkiApikeyID": 99,
- "sUserLoginname": "JohnDoe",
- "sUserLastname": "Doe",
- "sUserFirstname": "John",
- "sApikeyDescriptionX": "Project X",
- "dtAuditdetailDate": "2020-12-31 23:59:59"
}
}, - "bEzsigntemplateEditallowed": true,
- "eEzsigntemplateType": "Usergroup",
- "objEzsigntemplatedocument": {
- "pkiEzsigntemplatedocumentID": 133,
- "fkiEzsigntemplateID": 36,
- "sEzsigntemplatedocumentName": "Standard Contract",
- "iEzsigntemplatedocumentPagetotal": 5,
- "iEzsigntemplatedocumentSignaturetotal": 8,
- "bEzsigntemplatedocumentHassignedsignatures": true
}, - "a_objEzsigntemplatesigner": [
- {
- "pkiEzsigntemplatesignerID": 9,
- "fkiEzsigntemplateID": 36,
- "sEzsigntemplatesignerDescription": "Customer"
}
]
}, - "a_objEzsigntemplatepackagesignermembership": [
- {
- "pkiEzsigntemplatepackagesignermembershipID": 237,
- "fkiEzsigntemplatepackagemembershipID": 194,
- "fkiEzsigntemplatepackagesignerID": 174,
- "fkiEzsigntemplatesignerID": 9,
- "iEzsigntemplatepackagesignermembershipCopy": 1
}
]
}
]
}
}, - "objDebugPayload": {
- "iVersionMin": 1,
- "iVersionMax": 2,
- "a_RequiredPermission": [
- 117
], - "bVersionDeprecated": false,
- "dtResponseDate": "2020-12-31 23:59:59"
}, - "objDebug": {
- "sMemoryUsage": "11,923MB",
- "sRunTime": "0.6084s",
- "iSQLSelects": 3,
- "iSQLQueries": 6,
- "a_objSQLQuery": [
- {
- "sQuery": "SELECT * FROM table",
- "fDuration": 0.0001
}, - {
- "sQuery": "SELECT * FROM table",
- "fDuration": 0.0001
}
]
}
}
Enum values that can be filtered in query parameter sFilter:
Variable | Valid values |
---|---|
eEzsigntemplatepackageType | Company Team User Usergroup |
eOrderBy | string Enum: "pkiEzsigntemplatepackageID_ASC" "pkiEzsigntemplatepackageID_DESC" "fkiTeamID_ASC" "fkiTeamID_DESC" "fkiEzsignfoldertypeID_ASC" … 15 more Specify how you want the results to be sorted |
iRowMax | integer (Field-iRowMax) [ 1 .. 10000 ] Example: iRowMax=100 The maximum numbers of results to be returned. When the content-type is application/json there is an implicit default of 10 000. When it's application/vnd.openxmlformats-officedocument.spreadsheetml.sheet the is no implicit default so if you do not specify iRowMax, all records will be returned. |
iRowOffset | integer (Field-iRowOffset) >= 0 Default: 0 Example: iRowOffset=0 The starting element from where to start retrieving the results. For example if you started at iRowOffset=0 and asked for iRowMax=100, to get the next 100 results, you could specify iRowOffset=100&iRowMax=100, |
sFilter | string (Field-sFilter) Example: sFilter=bField1 eq true and iField2 gte 0 and iField2 lte 1000 and sField3 eq 'Other' and eField4 eq 'Paid' and sField5 like '%needle%' and iField6 in '1,2,3' and dtField7 rg '=m,=3mm' The filter to apply to the request to limit results. |
Accept-Language | string (Header-Accept-Language) Enum: "*" "en" "fr" Example: en The language of the returned content.
|
{- "mPayload": {
- "a_objEzsigntemplatepackage": [
- {
- "pkiEzsigntemplatepackageID": 99,
- "fkiEzsignfoldertypeID": 5,
- "fkiLanguageID": 2,
- "sEzsigntemplatepackageDescription": "Package for new clients",
- "bEzsigntemplatepackageNeedvalidation": true,
- "iEzsigntemplatepackagemembership": 0,
- "sEzsignfoldertypeNameX": "Default",
- "bEzsigntemplatepackageIsactive": true
}
], - "iRowReturned": 100,
- "iRowFiltered": 533
}, - "objDebugPayload": {
- "iVersionMin": 1,
- "iVersionMax": 2,
- "a_RequiredPermission": [
- 117
], - "bVersionDeprecated": false,
- "dtResponseDate": "2020-12-31 23:59:59",
- "a_Filter": {
- "a_AutoType": {
- "property1": "string",
- "property2": "string"
}, - "a_AutoTypeHaving": {
- "property1": "string",
- "property2": "string"
}, - "a_Enum": {
- "property1": {
- "property1": "string",
- "property2": "string"
}, - "property2": {
- "property1": "string",
- "property2": "string"
}
}
}, - "a_OrderBy": {
- "property1": "string",
- "property2": "string"
}, - "iRowMax": 100,
- "iRowOffset": 0
}, - "objDebug": {
- "sMemoryUsage": "11,923MB",
- "sRunTime": "0.6084s",
- "iSQLSelects": 3,
- "iSQLQueries": 6,
- "a_objSQLQuery": [
- {
- "sQuery": "SELECT * FROM table",
- "fDuration": 0.0001
}, - {
- "sQuery": "SELECT * FROM table",
- "fDuration": 0.0001
}
]
}
}
Get the list of Ezsigntemplatepackage to be used in a dropdown or autocomplete control.
sSelector required | string Enum: "All" "AllMultipleCopiesDisabled" The type of Ezsigntemplatepackages to return |
eFilterActive | string Default: "Active" Enum: "All" "Active" "Inactive" Specify which results we want to display. |
sQuery | string Allow to filter the returned results |
Accept-Language | string (Header-Accept-Language) Enum: "*" "en" "fr" Example: en The language of the returned content.
|
{- "mPayload": {
- "a_objEzsigntemplatepackage": [
- {
- "eEzsignfoldertypePrivacylevel": "User",
- "sEzsigntemplatepackageDescription": "Package for new clients",
- "pkiEzsigntemplatepackageID": 99,
- "bEzsigntemplatepackageIsactive": true,
- "bDisabled": true
}
]
}, - "objDebugPayload": {
- "iVersionMin": 1,
- "iVersionMax": 2,
- "a_RequiredPermission": [
- 117
], - "bVersionDeprecated": false,
- "dtResponseDate": "2020-12-31 23:59:59"
}, - "objDebug": {
- "sMemoryUsage": "11,923MB",
- "sRunTime": "0.6084s",
- "iSQLSelects": 3,
- "iSQLQueries": 6,
- "a_objSQLQuery": [
- {
- "sQuery": "SELECT * FROM table",
- "fDuration": 0.0001
}, - {
- "sQuery": "SELECT * FROM table",
- "fDuration": 0.0001
}
]
}
}
Ezsigntemplatepackagemembership contains detail about a relation between the Ezsigntemplatepackage and the Ezsigntemplate
The endpoint allows to create one or many elements at once.
required | Array of objects (ezsigntemplatepackagemembership-RequestCompound) non-empty |
{- "a_objEzsigntemplatepackagemembership": [
- {
- "pkiEzsigntemplatepackagemembershipID": 194,
- "fkiEzsigntemplatepackageID": 99,
- "fkiEzsigntemplateID": 36
}
]
}
{- "mPayload": {
- "a_pkiEzsigntemplatepackagemembershipID": [
- 194
], - "bEzsigntemplatepackageNeedvalidation": true,
- "bEzsignbulksendNeedvalidation": true
}, - "objDebugPayload": {
- "iVersionMin": 1,
- "iVersionMax": 2,
- "a_RequiredPermission": [
- 117
], - "bVersionDeprecated": false,
- "dtResponseDate": "2020-12-31 23:59:59"
}, - "objDebug": {
- "sMemoryUsage": "11,923MB",
- "sRunTime": "0.6084s",
- "iSQLSelects": 3,
- "iSQLQueries": 6,
- "a_objSQLQuery": [
- {
- "sQuery": "SELECT * FROM table",
- "fDuration": 0.0001
}, - {
- "sQuery": "SELECT * FROM table",
- "fDuration": 0.0001
}
]
}
}
pkiEzsigntemplatepackagemembershipID required | integer (Field-pkiEzsigntemplatepackagemembershipID) >= 0 Example: 194 The unique ID of the Ezsigntemplatepackagemembership |
{- "objDebugPayload": {
- "iVersionMin": 1,
- "iVersionMax": 2,
- "a_RequiredPermission": [
- 117
], - "bVersionDeprecated": false,
- "dtResponseDate": "2020-12-31 23:59:59"
}, - "objDebug": {
- "sMemoryUsage": "11,923MB",
- "sRunTime": "0.6084s",
- "iSQLSelects": 3,
- "iSQLQueries": 6,
- "a_objSQLQuery": [
- {
- "sQuery": "SELECT * FROM table",
- "fDuration": 0.0001
}, - {
- "sQuery": "SELECT * FROM table",
- "fDuration": 0.0001
}
]
}
}
pkiEzsigntemplatepackagemembershipID required | integer (Field-pkiEzsigntemplatepackagemembershipID) >= 0 Example: 194 The unique ID of the Ezsigntemplatepackagemembership |
{- "mPayload": {
- "objEzsigntemplatepackagemembership": {
- "pkiEzsigntemplatepackagemembershipID": 194,
- "fkiEzsigntemplatepackageID": 99,
- "fkiEzsigntemplateID": 36,
- "iEzsigntemplatepackagemembershipOrder": 1,
- "objEzsigntemplate": {
- "pkiEzsigntemplateID": 36,
- "fkiEzsigntemplatedocumentID": 133,
- "fkiEzsignfoldertypeID": 5,
- "fkiLanguageID": 2,
- "sLanguageNameX": "English",
- "sEzsigntemplateDescription": "Standard Contract",
- "sEzsigntemplateFilenamepattern": "Contract",
- "bEzsigntemplateAdminonly": true,
- "sEzsignfoldertypeNameX": "Default",
- "objAudit": {
- "objAuditdetailCreated": {
- "fkiUserID": 70,
- "fkiApikeyID": 99,
- "sUserLoginname": "JohnDoe",
- "sUserLastname": "Doe",
- "sUserFirstname": "John",
- "sApikeyDescriptionX": "Project X",
- "dtAuditdetailDate": "2020-12-31 23:59:59"
}, - "objAuditdetailModified": {
- "fkiUserID": 70,
- "fkiApikeyID": 99,
- "sUserLoginname": "JohnDoe",
- "sUserLastname": "Doe",
- "sUserFirstname": "John",
- "sApikeyDescriptionX": "Project X",
- "dtAuditdetailDate": "2020-12-31 23:59:59"
}
}, - "bEzsigntemplateEditallowed": true,
- "eEzsigntemplateType": "Usergroup",
- "objEzsigntemplatedocument": {
- "pkiEzsigntemplatedocumentID": 133,
- "fkiEzsigntemplateID": 36,
- "sEzsigntemplatedocumentName": "Standard Contract",
- "iEzsigntemplatedocumentPagetotal": 5,
- "iEzsigntemplatedocumentSignaturetotal": 8,
- "bEzsigntemplatedocumentHassignedsignatures": true
}, - "a_objEzsigntemplatesigner": [
- {
- "pkiEzsigntemplatesignerID": 9,
- "fkiEzsigntemplateID": 36,
- "sEzsigntemplatesignerDescription": "Customer"
}
]
}, - "a_objEzsigntemplatepackagesignermembership": [
- {
- "pkiEzsigntemplatepackagesignermembershipID": 237,
- "fkiEzsigntemplatepackagemembershipID": 194,
- "fkiEzsigntemplatepackagesignerID": 174,
- "fkiEzsigntemplatesignerID": 9,
- "iEzsigntemplatepackagesignermembershipCopy": 1
}
]
}
}, - "objDebugPayload": {
- "iVersionMin": 1,
- "iVersionMax": 2,
- "a_RequiredPermission": [
- 117
], - "bVersionDeprecated": false,
- "dtResponseDate": "2020-12-31 23:59:59"
}, - "objDebug": {
- "sMemoryUsage": "11,923MB",
- "sRunTime": "0.6084s",
- "iSQLSelects": 3,
- "iSQLQueries": 6,
- "a_objSQLQuery": [
- {
- "sQuery": "SELECT * FROM table",
- "fDuration": 0.0001
}, - {
- "sQuery": "SELECT * FROM table",
- "fDuration": 0.0001
}
]
}
}
Ezsigntemplatepackagesigner contains detail about a signer role in an Ezsigntemplatepackage
The endpoint allows to create one or many elements at once.
required | Array of objects (ezsigntemplatepackagesigner-RequestCompound) non-empty |
{- "a_objEzsigntemplatepackagesigner": [
- {
- "pkiEzsigntemplatepackagesignerID": 174,
- "fkiEzsigntemplatepackageID": 99,
- "sEzsigntemplatepackagesignerDescription": "Customer"
}
]
}
{- "mPayload": {
- "a_pkiEzsigntemplatepackagesignerID": [
- 174
]
}, - "objDebugPayload": {
- "iVersionMin": 1,
- "iVersionMax": 2,
- "a_RequiredPermission": [
- 117
], - "bVersionDeprecated": false,
- "dtResponseDate": "2020-12-31 23:59:59"
}, - "objDebug": {
- "sMemoryUsage": "11,923MB",
- "sRunTime": "0.6084s",
- "iSQLSelects": 3,
- "iSQLQueries": 6,
- "a_objSQLQuery": [
- {
- "sQuery": "SELECT * FROM table",
- "fDuration": 0.0001
}, - {
- "sQuery": "SELECT * FROM table",
- "fDuration": 0.0001
}
]
}
}
pkiEzsigntemplatepackagesignerID required | integer (Field-pkiEzsigntemplatepackagesignerID) >= 0 Example: 174 The unique ID of the Ezsigntemplatepackagesigner |
{- "mPayload": {
- "bEzsigntemplatepackageNeedvalidation": true,
- "bEzsignbulksendNeedvalidation": true
}, - "objDebugPayload": {
- "iVersionMin": 1,
- "iVersionMax": 2,
- "a_RequiredPermission": [
- 117
], - "bVersionDeprecated": false,
- "dtResponseDate": "2020-12-31 23:59:59"
}, - "objDebug": {
- "sMemoryUsage": "11,923MB",
- "sRunTime": "0.6084s",
- "iSQLSelects": 3,
- "iSQLQueries": 6,
- "a_objSQLQuery": [
- {
- "sQuery": "SELECT * FROM table",
- "fDuration": 0.0001
}, - {
- "sQuery": "SELECT * FROM table",
- "fDuration": 0.0001
}
]
}
}
pkiEzsigntemplatepackagesignerID required | integer (Field-pkiEzsigntemplatepackagesignerID) >= 0 Example: 174 The unique ID of the Ezsigntemplatepackagesigner |
required | object (ezsigntemplatepackagesigner-RequestCompound) A Ezsigntemplatepackagesigner Object and children |
{- "objEzsigntemplatepackagesigner": {
- "pkiEzsigntemplatepackagesignerID": 174,
- "fkiEzsigntemplatepackageID": 99,
- "sEzsigntemplatepackagesignerDescription": "Customer"
}
}
{- "objDebugPayload": {
- "iVersionMin": 1,
- "iVersionMax": 2,
- "a_RequiredPermission": [
- 117
], - "bVersionDeprecated": false,
- "dtResponseDate": "2020-12-31 23:59:59"
}, - "objDebug": {
- "sMemoryUsage": "11,923MB",
- "sRunTime": "0.6084s",
- "iSQLSelects": 3,
- "iSQLQueries": 6,
- "a_objSQLQuery": [
- {
- "sQuery": "SELECT * FROM table",
- "fDuration": 0.0001
}, - {
- "sQuery": "SELECT * FROM table",
- "fDuration": 0.0001
}
]
}
}
pkiEzsigntemplatepackagesignerID required | integer (Field-pkiEzsigntemplatepackagesignerID) >= 0 Example: 174 The unique ID of the Ezsigntemplatepackagesigner |
{- "mPayload": {
- "objEzsigntemplatepackagesigner": {
- "pkiEzsigntemplatepackagesignerID": 174,
- "fkiEzsigntemplatepackageID": 99,
- "sEzsigntemplatepackagesignerDescription": "Customer"
}
}, - "objDebugPayload": {
- "iVersionMin": 1,
- "iVersionMax": 2,
- "a_RequiredPermission": [
- 117
], - "bVersionDeprecated": false,
- "dtResponseDate": "2020-12-31 23:59:59"
}, - "objDebug": {
- "sMemoryUsage": "11,923MB",
- "sRunTime": "0.6084s",
- "iSQLSelects": 3,
- "iSQLQueries": 6,
- "a_objSQLQuery": [
- {
- "sQuery": "SELECT * FROM table",
- "fDuration": 0.0001
}, - {
- "sQuery": "SELECT * FROM table",
- "fDuration": 0.0001
}
]
}
}
Ezsigntemplatepackagesignermembership contains detail about the mapping of Ezsigntemplatepackagesigner to Ezsigntemplatesigner in a Ezsigntemplatepackagemembership
The endpoint allows to create one or many elements at once.
required | Array of objects (ezsigntemplatepackagesignermembership-RequestCompound) non-empty |
{- "a_objEzsigntemplatepackagesignermembership": [
- {
- "pkiEzsigntemplatepackagesignermembershipID": 237,
- "fkiEzsigntemplatepackagemembershipID": 194,
- "fkiEzsigntemplatepackagesignerID": 174,
- "fkiEzsigntemplatesignerID": 9,
- "iEzsigntemplatepackagesignermembershipCopy": 1
}
]
}
{- "mPayload": {
- "a_pkiEzsigntemplatepackagesignermembershipID": [
- 237
]
}, - "objDebugPayload": {
- "iVersionMin": 1,
- "iVersionMax": 2,
- "a_RequiredPermission": [
- 117
], - "bVersionDeprecated": false,
- "dtResponseDate": "2020-12-31 23:59:59"
}, - "objDebug": {
- "sMemoryUsage": "11,923MB",
- "sRunTime": "0.6084s",
- "iSQLSelects": 3,
- "iSQLQueries": 6,
- "a_objSQLQuery": [
- {
- "sQuery": "SELECT * FROM table",
- "fDuration": 0.0001
}, - {
- "sQuery": "SELECT * FROM table",
- "fDuration": 0.0001
}
]
}
}
pkiEzsigntemplatepackagesignermembershipID required | integer (Field-pkiEzsigntemplatepackagesignermembershipID) >= 0 Example: 237 The unique ID of the Ezsigntemplatepackagesignermembership |
{- "mPayload": {
- "bEzsigntemplatepackageNeedvalidation": true,
- "bEzsignbulksendNeedvalidation": true
}, - "objDebugPayload": {
- "iVersionMin": 1,
- "iVersionMax": 2,
- "a_RequiredPermission": [
- 117
], - "bVersionDeprecated": false,
- "dtResponseDate": "2020-12-31 23:59:59"
}, - "objDebug": {
- "sMemoryUsage": "11,923MB",
- "sRunTime": "0.6084s",
- "iSQLSelects": 3,
- "iSQLQueries": 6,
- "a_objSQLQuery": [
- {
- "sQuery": "SELECT * FROM table",
- "fDuration": 0.0001
}, - {
- "sQuery": "SELECT * FROM table",
- "fDuration": 0.0001
}
]
}
}
pkiEzsigntemplatepackagesignermembershipID required | integer (Field-pkiEzsigntemplatepackagesignermembershipID) >= 0 Example: 237 The unique ID of the Ezsigntemplatepackagesignermembership |
{- "mPayload": {
- "objEzsigntemplatepackagesignermembership": {
- "pkiEzsigntemplatepackagesignermembershipID": 237,
- "fkiEzsigntemplatepackagemembershipID": 194,
- "fkiEzsigntemplatepackagesignerID": 174,
- "fkiEzsigntemplatesignerID": 9,
- "iEzsigntemplatepackagesignermembershipCopy": 1
}
}, - "objDebugPayload": {
- "iVersionMin": 1,
- "iVersionMax": 2,
- "a_RequiredPermission": [
- 117
], - "bVersionDeprecated": false,
- "dtResponseDate": "2020-12-31 23:59:59"
}, - "objDebug": {
- "sMemoryUsage": "11,923MB",
- "sRunTime": "0.6084s",
- "iSQLSelects": 3,
- "iSQLQueries": 6,
- "a_objSQLQuery": [
- {
- "sQuery": "SELECT * FROM table",
- "fDuration": 0.0001
}, - {
- "sQuery": "SELECT * FROM table",
- "fDuration": 0.0001
}
]
}
}
Ezsigntemplatesignature contains detail about a specific signature block on a page of a Ezsigntemplatedocument
The endpoint allows to create one or many elements at once.
required | Array of objects (ezsigntemplatesignature-RequestCompound) non-empty |
{- "a_objEzsigntemplatesignature": [
- {
- "pkiEzsigntemplatesignatureID": 99,
- "fkiEzsigntemplatedocumentID": 133,
- "fkiEzsigntemplatesignerID": 9,
- "fkiEzsigntemplatesignerIDValidation": 9,
- "eEzsigntemplatesignaturePositioning": "PerCoordinates",
- "iEzsigntemplatedocumentpagePagenumber": 1,
- "iEzsigntemplatesignatureX": 200,
- "iEzsigntemplatesignatureY": 300,
- "iEzsigntemplatesignatureWidth": 200,
- "iEzsigntemplatesignatureHeight": 200,
- "iEzsigntemplatesignatureStep": 1,
- "eEzsigntemplatesignatureType": "Name",
- "tEzsigntemplatesignatureTooltip": "Please sign here if you agree to the terms",
- "eEzsigntemplatesignatureTooltipposition": "TopLeft",
- "eEzsigntemplatesignatureFont": "Normal",
- "bEzsigntemplatesignatureRequired": true,
- "eEzsigntemplatesignatureAttachmentnamesource": "Description",
- "sEzsigntemplatesignatureAttachmentdescription": "Attachment",
- "iEzsigntemplatesignatureValidationstep": 1,
- "iEzsigntemplatesignatureMaxlength": 75,
- "sEzsigntemplatesignatureRegexp": "/[-0-9a-zA-Z.+_]+@[-0-9a-zA-Z.+_]+.[a-zA-Z]{2,4}/",
- "eEzsigntemplatesignatureTextvalidation": "None",
- "eEzsigntemplatesignatureDependencyrequirement": "AllOf",
- "sEzsigntemplatesignaturePositioningpattern": "Signature",
- "iEzsigntemplatesignaturePositioningoffsetx": 200,
- "iEzsigntemplatesignaturePositioningoffsety": 200,
- "eEzsigntemplatesignaturePositioningoccurence": "All",
- "bEzsigntemplatesignatureCustomdate": true,
- "a_objEzsigntemplatesignaturecustomdate": [
- {
- "pkiEzsigntemplatesignaturecustomdateID": 58,
- "iEzsigntemplatesignaturecustomdateX": 200,
- "iEzsigntemplatesignaturecustomdateY": 300,
- "iEzsigntemplatesignaturecustomdateOffsetx": 200,
- "iEzsigntemplatesignaturecustomdateOffsety": 200,
- "sEzsigntemplatesignaturecustomdateFormat": "Signature date: {YYYY}/{MM}/{DD} {hh}:{mm}{ss} {Z}"
}
], - "a_objEzsigntemplateelementdependency": [
- {
- "pkiEzsigntemplateelementdependencyID": 314,
- "fkiEzsigntemplateformfieldIDValidation": 71,
- "fkiEzsigntemplateformfieldgroupIDValidation": 64,
- "sEzsigntemplateelementdependencyEzsigntemplateformfieldgrouplabel": "Allergies",
- "sEzsigntemplateelementdependencyEzsigntemplateformfieldlabel": "Peanuts",
- "eEzsigntemplateelementdependencyValidation": "Value",
- "bEzsigntemplateelementdependencySelected": false,
- "eEzsigntemplateelementdependencyOperator": "eq",
- "sEzsigntemplateelementdependencyValue": "Montreal"
}
]
}
]
}
{- "mPayload": {
- "a_pkiEzsigntemplatesignatureID": [
- 99
]
}, - "objDebugPayload": {
- "iVersionMin": 1,
- "iVersionMax": 2,
- "a_RequiredPermission": [
- 117
], - "bVersionDeprecated": false,
- "dtResponseDate": "2020-12-31 23:59:59"
}, - "objDebug": {
- "sMemoryUsage": "11,923MB",
- "sRunTime": "0.6084s",
- "iSQLSelects": 3,
- "iSQLQueries": 6,
- "a_objSQLQuery": [
- {
- "sQuery": "SELECT * FROM table",
- "fDuration": 0.0001
}, - {
- "sQuery": "SELECT * FROM table",
- "fDuration": 0.0001
}
]
}
}
pkiEzsigntemplatesignatureID required | integer (Field-pkiEzsigntemplatesignatureID) >= 0 Example: 99 The unique ID of the Ezsigntemplatesignature |
{- "objDebugPayload": {
- "iVersionMin": 1,
- "iVersionMax": 2,
- "a_RequiredPermission": [
- 117
], - "bVersionDeprecated": false,
- "dtResponseDate": "2020-12-31 23:59:59"
}, - "objDebug": {
- "sMemoryUsage": "11,923MB",
- "sRunTime": "0.6084s",
- "iSQLSelects": 3,
- "iSQLQueries": 6,
- "a_objSQLQuery": [
- {
- "sQuery": "SELECT * FROM table",
- "fDuration": 0.0001
}, - {
- "sQuery": "SELECT * FROM table",
- "fDuration": 0.0001
}
]
}
}
pkiEzsigntemplatesignatureID required | integer (Field-pkiEzsigntemplatesignatureID) >= 0 Example: 99 The unique ID of the Ezsigntemplatesignature |
required | object (ezsigntemplatesignature-RequestCompound) A Ezsigntemplatesignature Object and children |
{- "objEzsigntemplatesignature": {
- "pkiEzsigntemplatesignatureID": 99,
- "fkiEzsigntemplatedocumentID": 133,
- "fkiEzsigntemplatesignerID": 9,
- "fkiEzsigntemplatesignerIDValidation": 9,
- "eEzsigntemplatesignaturePositioning": "PerCoordinates",
- "iEzsigntemplatedocumentpagePagenumber": 1,
- "iEzsigntemplatesignatureX": 200,
- "iEzsigntemplatesignatureY": 300,
- "iEzsigntemplatesignatureWidth": 200,
- "iEzsigntemplatesignatureHeight": 200,
- "iEzsigntemplatesignatureStep": 1,
- "eEzsigntemplatesignatureType": "Name",
- "tEzsigntemplatesignatureTooltip": "Please sign here if you agree to the terms",
- "eEzsigntemplatesignatureTooltipposition": "TopLeft",
- "eEzsigntemplatesignatureFont": "Normal",
- "bEzsigntemplatesignatureRequired": true,
- "eEzsigntemplatesignatureAttachmentnamesource": "Description",
- "sEzsigntemplatesignatureAttachmentdescription": "Attachment",
- "iEzsigntemplatesignatureValidationstep": 1,
- "iEzsigntemplatesignatureMaxlength": 75,
- "sEzsigntemplatesignatureRegexp": "/[-0-9a-zA-Z.+_]+@[-0-9a-zA-Z.+_]+.[a-zA-Z]{2,4}/",
- "eEzsigntemplatesignatureTextvalidation": "None",
- "eEzsigntemplatesignatureDependencyrequirement": "AllOf",
- "sEzsigntemplatesignaturePositioningpattern": "Signature",
- "iEzsigntemplatesignaturePositioningoffsetx": 200,
- "iEzsigntemplatesignaturePositioningoffsety": 200,
- "eEzsigntemplatesignaturePositioningoccurence": "All",
- "bEzsigntemplatesignatureCustomdate": true,
- "a_objEzsigntemplatesignaturecustomdate": [
- {
- "pkiEzsigntemplatesignaturecustomdateID": 58,
- "iEzsigntemplatesignaturecustomdateX": 200,
- "iEzsigntemplatesignaturecustomdateY": 300,
- "iEzsigntemplatesignaturecustomdateOffsetx": 200,
- "iEzsigntemplatesignaturecustomdateOffsety": 200,
- "sEzsigntemplatesignaturecustomdateFormat": "Signature date: {YYYY}/{MM}/{DD} {hh}:{mm}{ss} {Z}"
}
], - "a_objEzsigntemplateelementdependency": [
- {
- "pkiEzsigntemplateelementdependencyID": 314,
- "fkiEzsigntemplateformfieldIDValidation": 71,
- "fkiEzsigntemplateformfieldgroupIDValidation": 64,
- "sEzsigntemplateelementdependencyEzsigntemplateformfieldgrouplabel": "Allergies",
- "sEzsigntemplateelementdependencyEzsigntemplateformfieldlabel": "Peanuts",
- "eEzsigntemplateelementdependencyValidation": "Value",
- "bEzsigntemplateelementdependencySelected": false,
- "eEzsigntemplateelementdependencyOperator": "eq",
- "sEzsigntemplateelementdependencyValue": "Montreal"
}
]
}
}
{- "objDebugPayload": {
- "iVersionMin": 1,
- "iVersionMax": 2,
- "a_RequiredPermission": [
- 117
], - "bVersionDeprecated": false,
- "dtResponseDate": "2020-12-31 23:59:59"
}, - "objDebug": {
- "sMemoryUsage": "11,923MB",
- "sRunTime": "0.6084s",
- "iSQLSelects": 3,
- "iSQLQueries": 6,
- "a_objSQLQuery": [
- {
- "sQuery": "SELECT * FROM table",
- "fDuration": 0.0001
}, - {
- "sQuery": "SELECT * FROM table",
- "fDuration": 0.0001
}
]
}
}
pkiEzsigntemplatesignatureID required | integer (Field-pkiEzsigntemplatesignatureID) >= 0 Example: 99 The unique ID of the Ezsigntemplatesignature |
{- "mPayload": {
- "objEzsigntemplatesignature": {
- "pkiEzsigntemplatesignatureID": 99,
- "fkiEzsigntemplatedocumentID": 133,
- "fkiEzsigntemplatesignerID": 9,
- "fkiEzsigntemplatesignerIDValidation": 9,
- "eEzsigntemplatesignaturePositioning": "PerCoordinates",
- "iEzsigntemplatedocumentpagePagenumber": 1,
- "iEzsigntemplatesignatureX": 200,
- "iEzsigntemplatesignatureY": 300,
- "iEzsigntemplatesignatureWidth": 200,
- "iEzsigntemplatesignatureHeight": 200,
- "iEzsigntemplatesignatureStep": 1,
- "eEzsigntemplatesignatureType": "Name",
- "tEzsigntemplatesignatureTooltip": "Please sign here if you agree to the terms",
- "eEzsigntemplatesignatureTooltipposition": "TopLeft",
- "eEzsigntemplatesignatureFont": "Normal",
- "iEzsigntemplatesignatureValidationstep": 1,
- "sEzsigntemplatesignatureAttachmentdescription": "Attachment",
- "eEzsigntemplatesignatureAttachmentnamesource": "Description",
- "bEzsigntemplatesignatureRequired": true,
- "iEzsigntemplatesignatureMaxlength": 75,
- "sEzsigntemplatesignatureRegexp": "/[-0-9a-zA-Z.+_]+@[-0-9a-zA-Z.+_]+.[a-zA-Z]{2,4}/",
- "eEzsigntemplatesignatureTextvalidation": "None",
- "eEzsigntemplatesignatureDependencyrequirement": "AllOf",
- "sEzsigntemplatesignaturePositioningpattern": "Signature",
- "iEzsigntemplatesignaturePositioningoffsetx": 200,
- "iEzsigntemplatesignaturePositioningoffsety": 200,
- "eEzsigntemplatesignaturePositioningoccurence": "All",
- "bEzsigntemplatesignatureCustomdate": true,
- "a_objEzsigntemplatesignaturecustomdate": [
- {
- "pkiEzsigntemplatesignaturecustomdateID": 58,
- "iEzsigntemplatesignaturecustomdateX": 200,
- "iEzsigntemplatesignaturecustomdateY": 300,
- "iEzsigntemplatesignaturecustomdateOffsetx": 200,
- "iEzsigntemplatesignaturecustomdateOffsety": 200,
- "sEzsigntemplatesignaturecustomdateFormat": "Signature date: {YYYY}/{MM}/{DD} {hh}:{mm}{ss} {Z}"
}
], - "a_objEzsigntemplateelementdependency": [
- {
- "pkiEzsigntemplateelementdependencyID": 314,
- "fkiEzsigntemplateformfieldID": 71,
- "fkiEzsigntemplatesignatureID": 99,
- "fkiEzsigntemplateformfieldIDValidation": 71,
- "fkiEzsigntemplateformfieldgroupIDValidation": 64,
- "eEzsigntemplateelementdependencyValidation": "Value",
- "bEzsigntemplateelementdependencySelected": false,
- "eEzsigntemplateelementdependencyOperator": "eq",
- "sEzsigntemplateelementdependencyValue": "Montreal"
}
]
}
}, - "objDebugPayload": {
- "iVersionMin": 1,
- "iVersionMax": 2,
- "a_RequiredPermission": [
- 117
], - "bVersionDeprecated": false,
- "dtResponseDate": "2020-12-31 23:59:59"
}, - "objDebug": {
- "sMemoryUsage": "11,923MB",
- "sRunTime": "0.6084s",
- "iSQLSelects": 3,
- "iSQLQueries": 6,
- "a_objSQLQuery": [
- {
- "sQuery": "SELECT * FROM table",
- "fDuration": 0.0001
}, - {
- "sQuery": "SELECT * FROM table",
- "fDuration": 0.0001
}
]
}
}
Ezsigntemplatesigner contains detail about a signer (or role) in a Ezsigntemplate
The endpoint allows to create one or many elements at once.
required | Array of objects (ezsigntemplatesigner-RequestCompound) non-empty |
{- "a_objEzsigntemplatesigner": [
- {
- "pkiEzsigntemplatesignerID": 9,
- "fkiEzsigntemplateID": 36,
- "sEzsigntemplatesignerDescription": "Customer"
}
]
}
{- "mPayload": {
- "a_pkiEzsigntemplatesignerID": [
- 9
], - "bEzsigntemplatepackageNeedvalidation": true,
- "bEzsignbulksendNeedvalidation": true
}, - "objDebugPayload": {
- "iVersionMin": 1,
- "iVersionMax": 2,
- "a_RequiredPermission": [
- 117
], - "bVersionDeprecated": false,
- "dtResponseDate": "2020-12-31 23:59:59"
}, - "objDebug": {
- "sMemoryUsage": "11,923MB",
- "sRunTime": "0.6084s",
- "iSQLSelects": 3,
- "iSQLQueries": 6,
- "a_objSQLQuery": [
- {
- "sQuery": "SELECT * FROM table",
- "fDuration": 0.0001
}, - {
- "sQuery": "SELECT * FROM table",
- "fDuration": 0.0001
}
]
}
}
pkiEzsigntemplatesignerID required | integer (Field-pkiEzsigntemplatesignerID) >= 0 Example: 9 The unique ID of the Ezsigntemplatesigner |
{- "objDebugPayload": {
- "iVersionMin": 1,
- "iVersionMax": 2,
- "a_RequiredPermission": [
- 117
], - "bVersionDeprecated": false,
- "dtResponseDate": "2020-12-31 23:59:59"
}, - "objDebug": {
- "sMemoryUsage": "11,923MB",
- "sRunTime": "0.6084s",
- "iSQLSelects": 3,
- "iSQLQueries": 6,
- "a_objSQLQuery": [
- {
- "sQuery": "SELECT * FROM table",
- "fDuration": 0.0001
}, - {
- "sQuery": "SELECT * FROM table",
- "fDuration": 0.0001
}
]
}
}
pkiEzsigntemplatesignerID required | integer (Field-pkiEzsigntemplatesignerID) >= 0 Example: 9 The unique ID of the Ezsigntemplatesigner |
required | object (ezsigntemplatesigner-RequestCompound) A Ezsigntemplatesigner Object and children |
{- "objEzsigntemplatesigner": {
- "pkiEzsigntemplatesignerID": 9,
- "fkiEzsigntemplateID": 36,
- "sEzsigntemplatesignerDescription": "Customer"
}
}
{- "objDebugPayload": {
- "iVersionMin": 1,
- "iVersionMax": 2,
- "a_RequiredPermission": [
- 117
], - "bVersionDeprecated": false,
- "dtResponseDate": "2020-12-31 23:59:59"
}, - "objDebug": {
- "sMemoryUsage": "11,923MB",
- "sRunTime": "0.6084s",
- "iSQLSelects": 3,
- "iSQLQueries": 6,
- "a_objSQLQuery": [
- {
- "sQuery": "SELECT * FROM table",
- "fDuration": 0.0001
}, - {
- "sQuery": "SELECT * FROM table",
- "fDuration": 0.0001
}
]
}
}
pkiEzsigntemplatesignerID required | integer (Field-pkiEzsigntemplatesignerID) >= 0 Example: 9 The unique ID of the Ezsigntemplatesigner |
{- "mPayload": {
- "objEzsigntemplatesigner": {
- "pkiEzsigntemplatesignerID": 9,
- "fkiEzsigntemplateID": 36,
- "sEzsigntemplatesignerDescription": "Customer"
}
}, - "objDebugPayload": {
- "iVersionMin": 1,
- "iVersionMax": 2,
- "a_RequiredPermission": [
- 117
], - "bVersionDeprecated": false,
- "dtResponseDate": "2020-12-31 23:59:59"
}, - "objDebug": {
- "sMemoryUsage": "11,923MB",
- "sRunTime": "0.6084s",
- "iSQLSelects": 3,
- "iSQLQueries": 6,
- "a_objSQLQuery": [
- {
- "sQuery": "SELECT * FROM table",
- "fDuration": 0.0001
}, - {
- "sQuery": "SELECT * FROM table",
- "fDuration": 0.0001
}
]
}
}
Get the list of Ezsigntsarequirement to be used in a dropdown or autocomplete control.
sSelector required | string Enum: "All" "User" "Usergroup" The type of Ezsigntsarequirements to return |
fkiEzsignfoldertypeID | integer (Field-pkiEzsignfoldertypeID) [ 0 .. 65535 ] Example: fkiEzsignfoldertypeID=5 The unique ID of the Ezsignfoldertype. |
eFilterActive | string Default: "Active" Enum: "All" "Active" "Inactive" Specify which results we want to display. |
sQuery | string Allow to filter the returned results |
Accept-Language | string (Header-Accept-Language) Enum: "*" "en" "fr" Example: en The language of the returned content.
|
{- "mPayload": {
- "a_objEzsigntsarequirement": [
- {
- "sEzsigntsarequirementDescriptionX": "No",
- "pkiEzsigntsarequirementID": 1,
- "bEzsigntsarequirementIsactive": true,
- "bDisabled": true
}
]
}, - "objDebugPayload": {
- "iVersionMin": 1,
- "iVersionMax": 2,
- "a_RequiredPermission": [
- 117
], - "bVersionDeprecated": false,
- "dtResponseDate": "2020-12-31 23:59:59"
}, - "objDebug": {
- "sMemoryUsage": "11,923MB",
- "sRunTime": "0.6084s",
- "iSQLSelects": 3,
- "iSQLQueries": 6,
- "a_objSQLQuery": [
- {
- "sQuery": "SELECT * FROM table",
- "fDuration": 0.0001
}, - {
- "sQuery": "SELECT * FROM table",
- "fDuration": 0.0001
}
]
}
}
Get the list of Font to be used in a dropdown or autocomplete control.
sSelector required | string Value: "All" The type of Fonts to return |
eFilterActive | string Default: "Active" Enum: "All" "Active" "Inactive" Specify which results we want to display. |
sQuery | string Allow to filter the returned results |
Accept-Language | string (Header-Accept-Language) Enum: "*" "en" "fr" Example: en The language of the returned content.
|
{- "mPayload": {
- "a_objFont": [
- {
- "sFontName": "Arial",
- "pkiFontID": 1,
- "bFontIsactive": true
}
]
}, - "objDebugPayload": {
- "iVersionMin": 1,
- "iVersionMax": 2,
- "a_RequiredPermission": [
- 117
], - "bVersionDeprecated": false,
- "dtResponseDate": "2020-12-31 23:59:59"
}, - "objDebug": {
- "sMemoryUsage": "11,923MB",
- "sRunTime": "0.6084s",
- "iSQLSelects": 3,
- "iSQLQueries": 6,
- "a_objSQLQuery": [
- {
- "sQuery": "SELECT * FROM table",
- "fDuration": 0.0001
}, - {
- "sQuery": "SELECT * FROM table",
- "fDuration": 0.0001
}
]
}
}
Franchisebroker contains detail about a brokerage in the franchise administration module
Get the list of Franchisebroker to be used in a dropdown or autocomplete control.
sSelector required | string Value: "All" The type of Franchisebrokers to return |
eFilterActive | string Default: "Active" Enum: "All" "Active" "Inactive" Specify which results we want to display. |
sQuery | string Allow to filter the returned results |
Accept-Language | string (Header-Accept-Language) Enum: "*" "en" "fr" Example: en The language of the returned content.
|
{- "mPayload": {
- "a_objFranchisebroker": [
- {
- "sFranchisebrokerName": "Default",
- "pkiFranchisebrokerID": 61,
- "bFranchisebrokerIsactive": true
}
]
}, - "objDebugPayload": {
- "iVersionMin": 1,
- "iVersionMax": 2,
- "a_RequiredPermission": [
- 117
], - "bVersionDeprecated": false,
- "dtResponseDate": "2020-12-31 23:59:59"
}, - "objDebug": {
- "sMemoryUsage": "11,923MB",
- "sRunTime": "0.6084s",
- "iSQLSelects": 3,
- "iSQLQueries": 6,
- "a_objSQLQuery": [
- {
- "sQuery": "SELECT * FROM table",
- "fDuration": 0.0001
}, - {
- "sQuery": "SELECT * FROM table",
- "fDuration": 0.0001
}
]
}
}
Franchiseoffice contains detail about a brokerage's office in the franchise administration module
Get the list of Franchiseoffice to be used in a dropdown or autocomplete control.
sSelector required | string Value: "All" The type of Franchiseoffices to return |
eFilterActive | string Default: "Active" Enum: "All" "Active" "Inactive" Specify which results we want to display. |
sQuery | string Allow to filter the returned results |
Accept-Language | string (Header-Accept-Language) Enum: "*" "en" "fr" Example: en The language of the returned content.
|
{- "mPayload": {
- "a_objFranchiseoffice": [
- {
- "sFranchiseofficeDescription": "Default",
- "pkiFranchiseofficeID": 50,
- "bFranchiseofficeIsactive": true
}
]
}, - "objDebugPayload": {
- "iVersionMin": 1,
- "iVersionMax": 2,
- "a_RequiredPermission": [
- 117
], - "bVersionDeprecated": false,
- "dtResponseDate": "2020-12-31 23:59:59"
}, - "objDebug": {
- "sMemoryUsage": "11,923MB",
- "sRunTime": "0.6084s",
- "iSQLSelects": 3,
- "iSQLQueries": 6,
- "a_objSQLQuery": [
- {
- "sQuery": "SELECT * FROM table",
- "fDuration": 0.0001
}, - {
- "sQuery": "SELECT * FROM table",
- "fDuration": 0.0001
}
]
}
}
Franchisereferalincome contains detail about a referal income in the franchise administration module
The endpoint allows to create one or many elements at once.
required | Array of objects (franchisereferalincome-RequestCompound) non-empty |
{- "a_objFranchisereferalincome": [
- {
- "pkiFranchisereferalincomeID": 35,
- "fkiFranchisebrokerID": 61,
- "fkiFranchisereferalincomeprogramID": 51,
- "fkiPeriodID": 21,
- "dFranchisereferalincomeLoan": "500275.62",
- "dFranchisereferalincomeFranchiseamount": "275.00",
- "dFranchisereferalincomeFranchisoramount": "385.00",
- "dFranchisereferalincomeAgentamount": "800.00",
- "dtFranchisereferalincomeDisbursed": "2020-12-31",
- "tFranchisereferalincomeComment": "This is a comment",
- "fkiFranchiseofficeID": 50,
- "sFranchisereferalincomeRemoteid": "string",
- "objAddress": {
- "fkiAddresstypeID": 1,
- "sAddressCivic": "2540",
- "sAddressStreet": "Daniel-Johnson Blvd.",
- "sAddressSuite": "610",
- "sAddressCity": "Laval",
- "fkiProvinceID": 11,
- "fkiCountryID": 1,
- "sAddressZip": "H7T2S3",
- "fAddressLongitude": "doej",
- "fAddressLatitude": "doej"
}, - "a_objContact": [
- {
- "fkiContacttitleID": 2,
- "fkiLanguageID": 2,
- "sContactFirstname": "John",
- "sContactLastname": "Doe",
- "sContactCompany": "eZmax Solutions Inc.",
- "dtContactBirthdate": "1980-01-01",
- "objContactinformations": {
- "iAddressDefault": 0,
- "iPhoneDefault": 0,
- "iEmailDefault": 0,
- "iWebsiteDefault": 0,
- "a_objAddress": [
- {
- "fkiAddresstypeID": 1,
- "sAddressCivic": "2540",
- "sAddressStreet": "Daniel-Johnson Blvd.",
- "sAddressSuite": "610",
- "sAddressCity": "Laval",
- "fkiProvinceID": 11,
- "fkiCountryID": 1,
- "sAddressZip": "H7T2S3",
- "fAddressLongitude": "doej",
- "fAddressLatitude": "doej"
}
], - "a_objPhone": [
- {
- "pkiPhoneID": 1,
- "fkiPhonetypeID": 1,
- "ePhoneType": "Local",
- "sPhoneRegion": "514",
- "sPhoneExchange": "990",
- "sPhoneNumber": "1516",
- "sPhoneInternational": "15149901516",
- "sPhoneExtension": "123",
- "sPhoneE164": "+15149901516"
}
], - "a_objEmail": [
- {
- "pkiEmailID": 22,
- "fkiEmailtypeID": 1,
- "sEmailAddress": "email@example.com"
}
],
}
}
]
}
]
}
{- "mPayload": {
- "a_pkiFranchisereferalincomeID": [
- 35
]
}, - "objDebugPayload": {
- "iVersionMin": 1,
- "iVersionMax": 2,
- "a_RequiredPermission": [
- 117
], - "bVersionDeprecated": false,
- "dtResponseDate": "2020-12-31 23:59:59"
}, - "objDebug": {
- "sMemoryUsage": "11,923MB",
- "sRunTime": "0.6084s",
- "iSQLSelects": 3,
- "iSQLQueries": 6,
- "a_objSQLQuery": [
- {
- "sQuery": "SELECT * FROM table",
- "fDuration": 0.0001
}, - {
- "sQuery": "SELECT * FROM table",
- "fDuration": 0.0001
}
]
}
}
pkiInscriptionID required | integer (Field-pkiInscriptionID) >= 0 Example: 17 The unique ID of the Inscription. |
{- "mPayload": {
- "a_objCommunication": [
- {
- "pkiCommunicationID": 1,
- "dtCreatedDate": "2020-12-31 23:59:59",
- "eCommunicationDirection": "Outbound",
- "eCommunicationImportance": "Normal",
- "eCommunicationType": "Email",
- "iCommunicationrecipientCount": 8,
- "sCommunicationSubject": "This is an example of subject",
- "sCommunicationSender": "John Doe",
- "sCommunicationRecipient": "Jane Doe"
}
]
}, - "objDebugPayload": {
- "iVersionMin": 1,
- "iVersionMax": 2,
- "a_RequiredPermission": [
- 117
], - "bVersionDeprecated": false,
- "dtResponseDate": "2020-12-31 23:59:59",
- "a_Filter": {
- "a_AutoType": {
- "property1": "string",
- "property2": "string"
}, - "a_AutoTypeHaving": {
- "property1": "string",
- "property2": "string"
}, - "a_Enum": {
- "property1": {
- "property1": "string",
- "property2": "string"
}, - "property2": {
- "property1": "string",
- "property2": "string"
}
}
}, - "a_OrderBy": {
- "property1": "string",
- "property2": "string"
}, - "iRowMax": 100,
- "iRowOffset": 0
}, - "objDebug": {
- "sMemoryUsage": "11,923MB",
- "sRunTime": "0.6084s",
- "iSQLSelects": 3,
- "iSQLQueries": 6,
- "a_objSQLQuery": [
- {
- "sQuery": "SELECT * FROM table",
- "fDuration": 0.0001
}, - {
- "sQuery": "SELECT * FROM table",
- "fDuration": 0.0001
}
]
}
}
pkiInscriptionID required | integer (Field-pkiInscriptionID) >= 0 Example: 17 The unique ID of the Inscription. |
{- "mPayload": {
- "a_objAttachmentdocumenttype": [
- {
- "eAttachmentDocumenttype": "Adjustment",
- "a_objAttachment": [
- {
- "pkiAttachmentID": 1,
- "fkiComputerID": 249,
- "fkiAdjustmentID": 202,
- "fkiAgentID": 1,
- "fkiBankaccountID": 46,
- "fkiBrokerID": 26,
- "fkiCommissionadvanceID": 115,
- "fkiCommunicationID": 1,
- "fkiCustomerID": 18,
- "fkiCustomertemplateID": 152,
- "fkiDepositID": 54,
- "fkiDeposittransitchequeID": 251,
- "fkiElectronicfundstransferID": 1262,
- "fkiEmployeeID": 31,
- "fkiExternalbrokerID": 1,
- "fkiEzcomadvanceserverID": 238,
- "fkiEzcomcompanyID": 170,
- "fkiEzsigndocumentID": 97,
- "fkiGhacqcontractID": 217,
- "fkiInscriptionID": 17,
- "fkiInscriptiontempID": 2445,
- "fkiInscriptionnotauthenticatedID": 24,
- "fkiInvoiceID": 1,
- "fkiBuyercontractID": 38,
- "fkiFranchisebrokerID": 61,
- "fkiFranchiseagenceID": 117,
- "fkiFranchiseofficeID": 50,
- "fkiFranchisefranchiseID": 156,
- "fkiFranchisecomplaintID": 24,
- "fkiLeadID": 117,
- "fkiMarketingprogramID": 178,
- "fkiMarketingfollowID": 45,
- "fkiNotaryID": 1,
- "fkiOfficetaxreportID": 200,
- "fkiOtherincomeID": 142,
- "fkiPaymentpreparationID": 124,
- "fkiPurchaseID": 155,
- "fkiSalaryID": 73,
- "fkiSupplierID": 1,
- "fkiTranqcontractID": 39,
- "fkiTemplateID": 232,
- "fkiInscriptionchecklistID": 191,
- "fkiFolderID": 81,
- "fkiRejectedoffertopurchaseID": 532,
- "fkiDisclosureID": 51,
- "fkiReconciliationID": 140,
- "fkiEzsigndocumentIDReference": 97,
- "eAttachmentDocumenttype": "Adjustment",
- "sAttachmentName": "Document.pdf",
- "eAttachmentPrivacy": "All",
- "fkiUserIDSpecific": 70,
- "eAttachmentType": "Other",
- "iAttachmentSize": 277465200,
- "iAttachmentEDMmoduleflag": 65,
- "sAttachmentMD5": "2cb29026e8a93c930e71598579400db6",
- "bAttachmentDeleted": false,
- "bAttachmentValid": true,
- "eAttachmentVerified": "No",
- "tAttachmentRejectioncomment": "Unreadable",
- "fkiUserIDOwner": 70,
- "objAudit": {
- "objAuditdetailCreated": {
- "fkiUserID": 70,
- "fkiApikeyID": 99,
- "sUserLoginname": "JohnDoe",
- "sUserLastname": "Doe",
- "sUserFirstname": "John",
- "sApikeyDescriptionX": "Project X",
- "dtAuditdetailDate": "2020-12-31 23:59:59"
}, - "objAuditdetailModified": {
- "fkiUserID": 70,
- "fkiApikeyID": 99,
- "sUserLoginname": "JohnDoe",
- "sUserLastname": "Doe",
- "sUserFirstname": "John",
- "sApikeyDescriptionX": "Project X",
- "dtAuditdetailDate": "2020-12-31 23:59:59"
}
}, - "objAttachmentProof": {
- "pkiAttachmentID": 1,
- "fkiComputerID": 249,
- "fkiAdjustmentID": 202,
- "fkiAgentID": 1,
- "fkiBankaccountID": 46,
- "fkiBrokerID": 26,
- "fkiCommissionadvanceID": 115,
- "fkiCommunicationID": 1,
- "fkiCustomerID": 18,
- "fkiCustomertemplateID": 152,
- "fkiDepositID": 54,
- "fkiDeposittransitchequeID": 251,
- "fkiElectronicfundstransferID": 1262,
- "fkiEmployeeID": 31,
- "fkiExternalbrokerID": 1,
- "fkiEzcomadvanceserverID": 238,
- "fkiEzcomcompanyID": 170,
- "fkiEzsigndocumentID": 97,
- "fkiGhacqcontractID": 217,
- "fkiInscriptionID": 17,
- "fkiInscriptiontempID": 2445,
- "fkiInscriptionnotauthenticatedID": 24,
- "fkiInvoiceID": 1,
- "fkiBuyercontractID": 38,
- "fkiFranchisebrokerID": 61,
- "fkiFranchiseagenceID": 117,
- "fkiFranchiseofficeID": 50,
- "fkiFranchisefranchiseID": 156,
- "fkiFranchisecomplaintID": 24,
- "fkiLeadID": 117,
- "fkiMarketingprogramID": 178,
- "fkiMarketingfollowID": 45,
- "fkiNotaryID": 1,
- "fkiOfficetaxreportID": 200,
- "fkiOtherincomeID": 142,
- "fkiPaymentpreparationID": 124,
- "fkiPurchaseID": 155,
- "fkiSalaryID": 73,
- "fkiSupplierID": 1,
- "fkiTranqcontractID": 39,
- "fkiTemplateID": 232,
- "fkiInscriptionchecklistID": 191,
- "fkiFolderID": 81,
- "fkiRejectedoffertopurchaseID": 532,
- "fkiDisclosureID": 51,
- "fkiReconciliationID": 140,
- "fkiEzsigndocumentIDReference": 97,
- "eAttachmentDocumenttype": "Adjustment",
- "sAttachmentName": "Document.pdf",
- "eAttachmentPrivacy": "All",
- "fkiUserIDSpecific": 70,
- "eAttachmentType": "Other",
- "iAttachmentSize": 277465200,
- "iAttachmentEDMmoduleflag": 65,
- "sAttachmentMD5": "2cb29026e8a93c930e71598579400db6",
- "bAttachmentDeleted": false,
- "bAttachmentValid": true,
- "eAttachmentVerified": "No",
- "tAttachmentRejectioncomment": "Unreadable",
- "fkiUserIDOwner": 70,
- "objAudit": {
- "objAuditdetailCreated": {
- "fkiUserID": 70,
- "fkiApikeyID": 99,
- "sUserLoginname": "JohnDoe",
- "sUserLastname": "Doe",
- "sUserFirstname": "John",
- "sApikeyDescriptionX": "Project X",
- "dtAuditdetailDate": "2020-12-31 23:59:59"
}, - "objAuditdetailModified": {
- "fkiUserID": 70,
- "fkiApikeyID": 99,
- "sUserLoginname": "JohnDoe",
- "sUserLastname": "Doe",
- "sUserFirstname": "John",
- "sApikeyDescriptionX": "Project X",
- "dtAuditdetailDate": "2020-12-31 23:59:59"
}
}
}, - "objAttachmentProofdocument": {
- "pkiAttachmentID": 1,
- "fkiComputerID": 249,
- "fkiAdjustmentID": 202,
- "fkiAgentID": 1,
- "fkiBankaccountID": 46,
- "fkiBrokerID": 26,
- "fkiCommissionadvanceID": 115,
- "fkiCommunicationID": 1,
- "fkiCustomerID": 18,
- "fkiCustomertemplateID": 152,
- "fkiDepositID": 54,
- "fkiDeposittransitchequeID": 251,
- "fkiElectronicfundstransferID": 1262,
- "fkiEmployeeID": 31,
- "fkiExternalbrokerID": 1,
- "fkiEzcomadvanceserverID": 238,
- "fkiEzcomcompanyID": 170,
- "fkiEzsigndocumentID": 97,
- "fkiGhacqcontractID": 217,
- "fkiInscriptionID": 17,
- "fkiInscriptiontempID": 2445,
- "fkiInscriptionnotauthenticatedID": 24,
- "fkiInvoiceID": 1,
- "fkiBuyercontractID": 38,
- "fkiFranchisebrokerID": 61,
- "fkiFranchiseagenceID": 117,
- "fkiFranchiseofficeID": 50,
- "fkiFranchisefranchiseID": 156,
- "fkiFranchisecomplaintID": 24,
- "fkiLeadID": 117,
- "fkiMarketingprogramID": 178,
- "fkiMarketingfollowID": 45,
- "fkiNotaryID": 1,
- "fkiOfficetaxreportID": 200,
- "fkiOtherincomeID": 142,
- "fkiPaymentpreparationID": 124,
- "fkiPurchaseID": 155,
- "fkiSalaryID": 73,
- "fkiSupplierID": 1,
- "fkiTranqcontractID": 39,
- "fkiTemplateID": 232,
- "fkiInscriptionchecklistID": 191,
- "fkiFolderID": 81,
- "fkiRejectedoffertopurchaseID": 532,
- "fkiDisclosureID": 51,
- "fkiReconciliationID": 140,
- "fkiEzsigndocumentIDReference": 97,
- "eAttachmentDocumenttype": "Adjustment",
- "sAttachmentName": "Document.pdf",
- "eAttachmentPrivacy": "All",
- "fkiUserIDSpecific": 70,
- "eAttachmentType": "Other",
- "iAttachmentSize": 277465200,
- "iAttachmentEDMmoduleflag": 65,
- "sAttachmentMD5": "2cb29026e8a93c930e71598579400db6",
- "bAttachmentDeleted": false,
- "bAttachmentValid": true,
- "eAttachmentVerified": "No",
- "tAttachmentRejectioncomment": "Unreadable",
- "fkiUserIDOwner": 70,
- "objAudit": {
- "objAuditdetailCreated": {
- "fkiUserID": 70,
- "fkiApikeyID": 99,
- "sUserLoginname": "JohnDoe",
- "sUserLastname": "Doe",
- "sUserFirstname": "John",
- "sApikeyDescriptionX": "Project X",
- "dtAuditdetailDate": "2020-12-31 23:59:59"
}, - "objAuditdetailModified": {
- "fkiUserID": 70,
- "fkiApikeyID": 99,
- "sUserLoginname": "JohnDoe",
- "sUserLastname": "Doe",
- "sUserFirstname": "John",
- "sApikeyDescriptionX": "Project X",
- "dtAuditdetailDate": "2020-12-31 23:59:59"
}
}
}, - "a_objAttachmentAttachment": [
- {
- "pkiAttachmentID": 1,
- "fkiComputerID": 249,
- "fkiAdjustmentID": 202,
- "fkiAgentID": 1,
- "fkiBankaccountID": 46,
- "fkiBrokerID": 26,
- "fkiCommissionadvanceID": 115,
- "fkiCommunicationID": 1,
- "fkiCustomerID": 18,
- "fkiCustomertemplateID": 152,
- "fkiDepositID": 54,
- "fkiDeposittransitchequeID": 251,
- "fkiElectronicfundstransferID": 1262,
- "fkiEmployeeID": 31,
- "fkiExternalbrokerID": 1,
- "fkiEzcomadvanceserverID": 238,
- "fkiEzcomcompanyID": 170,
- "fkiEzsigndocumentID": 97,
- "fkiGhacqcontractID": 217,
- "fkiInscriptionID": 17,
- "fkiInscriptiontempID": 2445,
- "fkiInscriptionnotauthenticatedID": 24,
- "fkiInvoiceID": 1,
- "fkiBuyercontractID": 38,
- "fkiFranchisebrokerID": 61,
- "fkiFranchiseagenceID": 117,
- "fkiFranchiseofficeID": 50,
- "fkiFranchisefranchiseID": 156,
- "fkiFranchisecomplaintID": 24,
- "fkiLeadID": 117,
- "fkiMarketingprogramID": 178,
- "fkiMarketingfollowID": 45,
- "fkiNotaryID": 1,
- "fkiOfficetaxreportID": 200,
- "fkiOtherincomeID": 142,
- "fkiPaymentpreparationID": 124,
- "fkiPurchaseID": 155,
- "fkiSalaryID": 73,
- "fkiSupplierID": 1,
- "fkiTranqcontractID": 39,
- "fkiTemplateID": 232,
- "fkiInscriptionchecklistID": 191,
- "fkiFolderID": 81,
- "fkiRejectedoffertopurchaseID": 532,
- "fkiDisclosureID": 51,
- "fkiReconciliationID": 140,
- "fkiEzsigndocumentIDReference": 97,
- "eAttachmentDocumenttype": "Adjustment",
- "sAttachmentName": "Document.pdf",
- "eAttachmentPrivacy": "All",
- "fkiUserIDSpecific": 70,
- "eAttachmentType": "Other",
- "iAttachmentSize": 277465200,
- "iAttachmentEDMmoduleflag": 65,
- "sAttachmentMD5": "2cb29026e8a93c930e71598579400db6",
- "bAttachmentDeleted": false,
- "bAttachmentValid": true,
- "eAttachmentVerified": "No",
- "tAttachmentRejectioncomment": "Unreadable",
- "fkiUserIDOwner": 70,
- "objAudit": {
- "objAuditdetailCreated": {
- "fkiUserID": null,
- "fkiApikeyID": null,
- "sUserLoginname": null,
- "sUserLastname": null,
- "sUserFirstname": null,
- "sApikeyDescriptionX": null,
- "dtAuditdetailDate": null
}, - "objAuditdetailModified": {
- "fkiUserID": null,
- "fkiApikeyID": null,
- "sUserLoginname": null,
- "sUserLastname": null,
- "sUserFirstname": null,
- "sApikeyDescriptionX": null,
- "dtAuditdetailDate": null
}
}
}
], - "a_objAttachmentVersion": [
- {
- "pkiAttachmentID": 1,
- "fkiComputerID": 249,
- "fkiAdjustmentID": 202,
- "fkiAgentID": 1,
- "fkiBankaccountID": 46,
- "fkiBrokerID": 26,
- "fkiCommissionadvanceID": 115,
- "fkiCommunicationID": 1,
- "fkiCustomerID": 18,
- "fkiCustomertemplateID": 152,
- "fkiDepositID": 54,
- "fkiDeposittransitchequeID": 251,
- "fkiElectronicfundstransferID": 1262,
- "fkiEmployeeID": 31,
- "fkiExternalbrokerID": 1,
- "fkiEzcomadvanceserverID": 238,
- "fkiEzcomcompanyID": 170,
- "fkiEzsigndocumentID": 97,
- "fkiGhacqcontractID": 217,
- "fkiInscriptionID": 17,
- "fkiInscriptiontempID": 2445,
- "fkiInscriptionnotauthenticatedID": 24,
- "fkiInvoiceID": 1,
- "fkiBuyercontractID": 38,
- "fkiFranchisebrokerID": 61,
- "fkiFranchiseagenceID": 117,
- "fkiFranchiseofficeID": 50,
- "fkiFranchisefranchiseID": 156,
- "fkiFranchisecomplaintID": 24,
- "fkiLeadID": 117,
- "fkiMarketingprogramID": 178,
- "fkiMarketingfollowID": 45,
- "fkiNotaryID": 1,
- "fkiOfficetaxreportID": 200,
- "fkiOtherincomeID": 142,
- "fkiPaymentpreparationID": 124,
- "fkiPurchaseID": 155,
- "fkiSalaryID": 73,
- "fkiSupplierID": 1,
- "fkiTranqcontractID": 39,
- "fkiTemplateID": 232,
- "fkiInscriptionchecklistID": 191,
- "fkiFolderID": 81,
- "fkiRejectedoffertopurchaseID": 532,
- "fkiDisclosureID": 51,
- "fkiReconciliationID": 140,
- "fkiEzsigndocumentIDReference": 97,
- "eAttachmentDocumenttype": "Adjustment",
- "sAttachmentName": "Document.pdf",
- "eAttachmentPrivacy": "All",
- "fkiUserIDSpecific": 70,
- "eAttachmentType": "Other",
- "iAttachmentSize": 277465200,
- "iAttachmentEDMmoduleflag": 65,
- "sAttachmentMD5": "2cb29026e8a93c930e71598579400db6",
- "bAttachmentDeleted": false,
- "bAttachmentValid": true,
- "eAttachmentVerified": "No",
- "tAttachmentRejectioncomment": "Unreadable",
- "fkiUserIDOwner": 70,
- "objAudit": {
- "objAuditdetailCreated": {
- "fkiUserID": null,
- "fkiApikeyID": null,
- "sUserLoginname": null,
- "sUserLastname": null,
- "sUserFirstname": null,
- "sApikeyDescriptionX": null,
- "dtAuditdetailDate": null
}, - "objAuditdetailModified": {
- "fkiUserID": null,
- "fkiApikeyID": null,
- "sUserLoginname": null,
- "sUserLastname": null,
- "sUserFirstname": null,
- "sApikeyDescriptionX": null,
- "dtAuditdetailDate": null
}
}
}
]
}
]
}
]
}, - "objDebugPayload": {
- "iVersionMin": 1,
- "iVersionMax": 2,
- "a_RequiredPermission": [
- 117
], - "bVersionDeprecated": false,
- "dtResponseDate": "2020-12-31 23:59:59"
}, - "objDebug": {
- "sMemoryUsage": "11,923MB",
- "sRunTime": "0.6084s",
- "iSQLSelects": 3,
- "iSQLQueries": 6,
- "a_objSQLQuery": [
- {
- "sQuery": "SELECT * FROM table",
- "fDuration": 0.0001
}, - {
- "sQuery": "SELECT * FROM table",
- "fDuration": 0.0001
}
]
}
}
pkiInscriptionID required | integer (Field-pkiInscriptionID) >= 0 Example: 17 The unique ID of the Inscription. |
{- "mPayload": {
- "a_objCommunicationsenders": [
- {
- "fkiAgentID": 1,
- "fkiBrokerID": 26,
- "fkiUserID": 70,
- "fkiMailboxsharedID": 47,
- "fkiPhonelinesharedID": 47,
- "eCommunicationsenderObjecttype": "User",
- "objContactName": {
- "sContactFirstname": "John",
- "sContactLastname": "Doe",
- "sContactCompany": "eZmax Solutions Inc."
}, - "objEmail": {
- "pkiEmailID": 22,
- "fkiEmailtypeID": 1,
- "sEmailAddress": "email@example.com"
}, - "objPhoneFax": {
- "pkiPhoneID": 1,
- "fkiPhonetypeID": 1,
- "ePhoneType": "Local",
- "sPhoneE164": "+15149901516",
- "sPhoneExtension": "123",
- "bPhoneInternational": true
}, - "objPhoneSMS": {
- "pkiPhoneID": 1,
- "fkiPhonetypeID": 1,
- "ePhoneType": "Local",
- "sPhoneE164": "+15149901516",
- "sPhoneExtension": "123",
- "bPhoneInternational": true
}
}
]
}, - "objDebugPayload": {
- "iVersionMin": 1,
- "iVersionMax": 2,
- "a_RequiredPermission": [
- 117
], - "bVersionDeprecated": false,
- "dtResponseDate": "2020-12-31 23:59:59"
}, - "objDebug": {
- "sMemoryUsage": "11,923MB",
- "sRunTime": "0.6084s",
- "iSQLSelects": 3,
- "iSQLQueries": 6,
- "a_objSQLQuery": [
- {
- "sQuery": "SELECT * FROM table",
- "fDuration": 0.0001
}, - {
- "sQuery": "SELECT * FROM table",
- "fDuration": 0.0001
}
]
}
}
Inscriptionnotauthenticated contains detail about an Inscriptionnotauthenticated
pkiInscriptionnotauthenticatedID required | integer (Field-pkiInscriptionnotauthenticatedID) >= 0 Example: 24 The unique ID of the Inscriptionnotauthenticated. |
{- "mPayload": {
- "a_objCommunication": [
- {
- "pkiCommunicationID": 1,
- "dtCreatedDate": "2020-12-31 23:59:59",
- "eCommunicationDirection": "Outbound",
- "eCommunicationImportance": "Normal",
- "eCommunicationType": "Email",
- "iCommunicationrecipientCount": 8,
- "sCommunicationSubject": "This is an example of subject",
- "sCommunicationSender": "John Doe",
- "sCommunicationRecipient": "Jane Doe"
}
]
}, - "objDebugPayload": {
- "iVersionMin": 1,
- "iVersionMax": 2,
- "a_RequiredPermission": [
- 117
], - "bVersionDeprecated": false,
- "dtResponseDate": "2020-12-31 23:59:59",
- "a_Filter": {
- "a_AutoType": {
- "property1": "string",
- "property2": "string"
}, - "a_AutoTypeHaving": {
- "property1": "string",
- "property2": "string"
}, - "a_Enum": {
- "property1": {
- "property1": "string",
- "property2": "string"
}, - "property2": {
- "property1": "string",
- "property2": "string"
}
}
}, - "a_OrderBy": {
- "property1": "string",
- "property2": "string"
}, - "iRowMax": 100,
- "iRowOffset": 0
}, - "objDebug": {
- "sMemoryUsage": "11,923MB",
- "sRunTime": "0.6084s",
- "iSQLSelects": 3,
- "iSQLQueries": 6,
- "a_objSQLQuery": [
- {
- "sQuery": "SELECT * FROM table",
- "fDuration": 0.0001
}, - {
- "sQuery": "SELECT * FROM table",
- "fDuration": 0.0001
}
]
}
}
pkiInscriptiontempID required | integer (Field-pkiInscriptiontempID) [ 1 .. 16777215 ] Example: 2445 The unique ID of the Inscriptiontemp |
{- "mPayload": {
- "a_objCommunication": [
- {
- "pkiCommunicationID": 1,
- "dtCreatedDate": "2020-12-31 23:59:59",
- "eCommunicationDirection": "Outbound",
- "eCommunicationImportance": "Normal",
- "eCommunicationType": "Email",
- "iCommunicationrecipientCount": 8,
- "sCommunicationSubject": "This is an example of subject",
- "sCommunicationSender": "John Doe",
- "sCommunicationRecipient": "Jane Doe"
}
]
}, - "objDebugPayload": {
- "iVersionMin": 1,
- "iVersionMax": 2,
- "a_RequiredPermission": [
- 117
], - "bVersionDeprecated": false,
- "dtResponseDate": "2020-12-31 23:59:59",
- "a_Filter": {
- "a_AutoType": {
- "property1": "string",
- "property2": "string"
}, - "a_AutoTypeHaving": {
- "property1": "string",
- "property2": "string"
}, - "a_Enum": {
- "property1": {
- "property1": "string",
- "property2": "string"
}, - "property2": {
- "property1": "string",
- "property2": "string"
}
}
}, - "a_OrderBy": {
- "property1": "string",
- "property2": "string"
}, - "iRowMax": 100,
- "iRowOffset": 0
}, - "objDebug": {
- "sMemoryUsage": "11,923MB",
- "sRunTime": "0.6084s",
- "iSQLSelects": 3,
- "iSQLQueries": 6,
- "a_objSQLQuery": [
- {
- "sQuery": "SELECT * FROM table",
- "fDuration": 0.0001
}, - {
- "sQuery": "SELECT * FROM table",
- "fDuration": 0.0001
}
]
}
}
pkiInvoiceID required | integer (Field-pkiInvoiceID) >= 0 Example: 1 The unique ID of the Invoice. |
{- "mPayload": {
- "a_objCommunication": [
- {
- "pkiCommunicationID": 1,
- "dtCreatedDate": "2020-12-31 23:59:59",
- "eCommunicationDirection": "Outbound",
- "eCommunicationImportance": "Normal",
- "eCommunicationType": "Email",
- "iCommunicationrecipientCount": 8,
- "sCommunicationSubject": "This is an example of subject",
- "sCommunicationSender": "John Doe",
- "sCommunicationRecipient": "Jane Doe"
}
]
}, - "objDebugPayload": {
- "iVersionMin": 1,
- "iVersionMax": 2,
- "a_RequiredPermission": [
- 117
], - "bVersionDeprecated": false,
- "dtResponseDate": "2020-12-31 23:59:59",
- "a_Filter": {
- "a_AutoType": {
- "property1": "string",
- "property2": "string"
}, - "a_AutoTypeHaving": {
- "property1": "string",
- "property2": "string"
}, - "a_Enum": {
- "property1": {
- "property1": "string",
- "property2": "string"
}, - "property2": {
- "property1": "string",
- "property2": "string"
}
}
}, - "a_OrderBy": {
- "property1": "string",
- "property2": "string"
}, - "iRowMax": 100,
- "iRowOffset": 0
}, - "objDebug": {
- "sMemoryUsage": "11,923MB",
- "sRunTime": "0.6084s",
- "iSQLSelects": 3,
- "iSQLQueries": 6,
- "a_objSQLQuery": [
- {
- "sQuery": "SELECT * FROM table",
- "fDuration": 0.0001
}, - {
- "sQuery": "SELECT * FROM table",
- "fDuration": 0.0001
}
]
}
}
pkiInvoiceID required | integer (Field-pkiInvoiceID) >= 0 Example: 1 The unique ID of the Invoice. |
{- "mPayload": {
- "a_objAttachmentdocumenttype": [
- {
- "eAttachmentDocumenttype": "Adjustment",
- "a_objAttachment": [
- {
- "pkiAttachmentID": 1,
- "fkiComputerID": 249,
- "fkiAdjustmentID": 202,
- "fkiAgentID": 1,
- "fkiBankaccountID": 46,
- "fkiBrokerID": 26,
- "fkiCommissionadvanceID": 115,
- "fkiCommunicationID": 1,
- "fkiCustomerID": 18,
- "fkiCustomertemplateID": 152,
- "fkiDepositID": 54,
- "fkiDeposittransitchequeID": 251,
- "fkiElectronicfundstransferID": 1262,
- "fkiEmployeeID": 31,
- "fkiExternalbrokerID": 1,
- "fkiEzcomadvanceserverID": 238,
- "fkiEzcomcompanyID": 170,
- "fkiEzsigndocumentID": 97,
- "fkiGhacqcontractID": 217,
- "fkiInscriptionID": 17,
- "fkiInscriptiontempID": 2445,
- "fkiInscriptionnotauthenticatedID": 24,
- "fkiInvoiceID": 1,
- "fkiBuyercontractID": 38,
- "fkiFranchisebrokerID": 61,
- "fkiFranchiseagenceID": 117,
- "fkiFranchiseofficeID": 50,
- "fkiFranchisefranchiseID": 156,
- "fkiFranchisecomplaintID": 24,
- "fkiLeadID": 117,
- "fkiMarketingprogramID": 178,
- "fkiMarketingfollowID": 45,
- "fkiNotaryID": 1,
- "fkiOfficetaxreportID": 200,
- "fkiOtherincomeID": 142,
- "fkiPaymentpreparationID": 124,
- "fkiPurchaseID": 155,
- "fkiSalaryID": 73,
- "fkiSupplierID": 1,
- "fkiTranqcontractID": 39,
- "fkiTemplateID": 232,
- "fkiInscriptionchecklistID": 191,
- "fkiFolderID": 81,
- "fkiRejectedoffertopurchaseID": 532,
- "fkiDisclosureID": 51,
- "fkiReconciliationID": 140,
- "fkiEzsigndocumentIDReference": 97,
- "eAttachmentDocumenttype": "Adjustment",
- "sAttachmentName": "Document.pdf",
- "eAttachmentPrivacy": "All",
- "fkiUserIDSpecific": 70,
- "eAttachmentType": "Other",
- "iAttachmentSize": 277465200,
- "iAttachmentEDMmoduleflag": 65,
- "sAttachmentMD5": "2cb29026e8a93c930e71598579400db6",
- "bAttachmentDeleted": false,
- "bAttachmentValid": true,
- "eAttachmentVerified": "No",
- "tAttachmentRejectioncomment": "Unreadable",
- "fkiUserIDOwner": 70,
- "objAudit": {
- "objAuditdetailCreated": {
- "fkiUserID": 70,
- "fkiApikeyID": 99,
- "sUserLoginname": "JohnDoe",
- "sUserLastname": "Doe",
- "sUserFirstname": "John",
- "sApikeyDescriptionX": "Project X",
- "dtAuditdetailDate": "2020-12-31 23:59:59"
}, - "objAuditdetailModified": {
- "fkiUserID": 70,
- "fkiApikeyID": 99,
- "sUserLoginname": "JohnDoe",
- "sUserLastname": "Doe",
- "sUserFirstname": "John",
- "sApikeyDescriptionX": "Project X",
- "dtAuditdetailDate": "2020-12-31 23:59:59"
}
}, - "objAttachmentProof": {
- "pkiAttachmentID": 1,
- "fkiComputerID": 249,
- "fkiAdjustmentID": 202,
- "fkiAgentID": 1,
- "fkiBankaccountID": 46,
- "fkiBrokerID": 26,
- "fkiCommissionadvanceID": 115,
- "fkiCommunicationID": 1,
- "fkiCustomerID": 18,
- "fkiCustomertemplateID": 152,
- "fkiDepositID": 54,
- "fkiDeposittransitchequeID": 251,
- "fkiElectronicfundstransferID": 1262,
- "fkiEmployeeID": 31,
- "fkiExternalbrokerID": 1,
- "fkiEzcomadvanceserverID": 238,
- "fkiEzcomcompanyID": 170,
- "fkiEzsigndocumentID": 97,
- "fkiGhacqcontractID": 217,
- "fkiInscriptionID": 17,
- "fkiInscriptiontempID": 2445,
- "fkiInscriptionnotauthenticatedID": 24,
- "fkiInvoiceID": 1,
- "fkiBuyercontractID": 38,
- "fkiFranchisebrokerID": 61,
- "fkiFranchiseagenceID": 117,
- "fkiFranchiseofficeID": 50,
- "fkiFranchisefranchiseID": 156,
- "fkiFranchisecomplaintID": 24,
- "fkiLeadID": 117,
- "fkiMarketingprogramID": 178,
- "fkiMarketingfollowID": 45,
- "fkiNotaryID": 1,
- "fkiOfficetaxreportID": 200,
- "fkiOtherincomeID": 142,
- "fkiPaymentpreparationID": 124,
- "fkiPurchaseID": 155,
- "fkiSalaryID": 73,
- "fkiSupplierID": 1,
- "fkiTranqcontractID": 39,
- "fkiTemplateID": 232,
- "fkiInscriptionchecklistID": 191,
- "fkiFolderID": 81,
- "fkiRejectedoffertopurchaseID": 532,
- "fkiDisclosureID": 51,
- "fkiReconciliationID": 140,
- "fkiEzsigndocumentIDReference": 97,
- "eAttachmentDocumenttype": "Adjustment",
- "sAttachmentName": "Document.pdf",
- "eAttachmentPrivacy": "All",
- "fkiUserIDSpecific": 70,
- "eAttachmentType": "Other",
- "iAttachmentSize": 277465200,
- "iAttachmentEDMmoduleflag": 65,
- "sAttachmentMD5": "2cb29026e8a93c930e71598579400db6",
- "bAttachmentDeleted": false,
- "bAttachmentValid": true,
- "eAttachmentVerified": "No",
- "tAttachmentRejectioncomment": "Unreadable",
- "fkiUserIDOwner": 70,
- "objAudit": {
- "objAuditdetailCreated": {
- "fkiUserID": 70,
- "fkiApikeyID": 99,
- "sUserLoginname": "JohnDoe",
- "sUserLastname": "Doe",
- "sUserFirstname": "John",
- "sApikeyDescriptionX": "Project X",
- "dtAuditdetailDate": "2020-12-31 23:59:59"
}, - "objAuditdetailModified": {
- "fkiUserID": 70,
- "fkiApikeyID": 99,
- "sUserLoginname": "JohnDoe",
- "sUserLastname": "Doe",
- "sUserFirstname": "John",
- "sApikeyDescriptionX": "Project X",
- "dtAuditdetailDate": "2020-12-31 23:59:59"
}
}
}, - "objAttachmentProofdocument": {
- "pkiAttachmentID": 1,
- "fkiComputerID": 249,
- "fkiAdjustmentID": 202,
- "fkiAgentID": 1,
- "fkiBankaccountID": 46,
- "fkiBrokerID": 26,
- "fkiCommissionadvanceID": 115,
- "fkiCommunicationID": 1,
- "fkiCustomerID": 18,
- "fkiCustomertemplateID": 152,
- "fkiDepositID": 54,
- "fkiDeposittransitchequeID": 251,
- "fkiElectronicfundstransferID": 1262,
- "fkiEmployeeID": 31,
- "fkiExternalbrokerID": 1,
- "fkiEzcomadvanceserverID": 238,
- "fkiEzcomcompanyID": 170,
- "fkiEzsigndocumentID": 97,
- "fkiGhacqcontractID": 217,
- "fkiInscriptionID": 17,
- "fkiInscriptiontempID": 2445,
- "fkiInscriptionnotauthenticatedID": 24,
- "fkiInvoiceID": 1,
- "fkiBuyercontractID": 38,
- "fkiFranchisebrokerID": 61,
- "fkiFranchiseagenceID": 117,
- "fkiFranchiseofficeID": 50,
- "fkiFranchisefranchiseID": 156,
- "fkiFranchisecomplaintID": 24,
- "fkiLeadID": 117,
- "fkiMarketingprogramID": 178,
- "fkiMarketingfollowID": 45,
- "fkiNotaryID": 1,
- "fkiOfficetaxreportID": 200,
- "fkiOtherincomeID": 142,
- "fkiPaymentpreparationID": 124,
- "fkiPurchaseID": 155,
- "fkiSalaryID": 73,
- "fkiSupplierID": 1,
- "fkiTranqcontractID": 39,
- "fkiTemplateID": 232,
- "fkiInscriptionchecklistID": 191,
- "fkiFolderID": 81,
- "fkiRejectedoffertopurchaseID": 532,
- "fkiDisclosureID": 51,
- "fkiReconciliationID": 140,
- "fkiEzsigndocumentIDReference": 97,
- "eAttachmentDocumenttype": "Adjustment",
- "sAttachmentName": "Document.pdf",
- "eAttachmentPrivacy": "All",
- "fkiUserIDSpecific": 70,
- "eAttachmentType": "Other",
- "iAttachmentSize": 277465200,
- "iAttachmentEDMmoduleflag": 65,
- "sAttachmentMD5": "2cb29026e8a93c930e71598579400db6",
- "bAttachmentDeleted": false,
- "bAttachmentValid": true,
- "eAttachmentVerified": "No",
- "tAttachmentRejectioncomment": "Unreadable",
- "fkiUserIDOwner": 70,
- "objAudit": {
- "objAuditdetailCreated": {
- "fkiUserID": 70,
- "fkiApikeyID": 99,
- "sUserLoginname": "JohnDoe",
- "sUserLastname": "Doe",
- "sUserFirstname": "John",
- "sApikeyDescriptionX": "Project X",
- "dtAuditdetailDate": "2020-12-31 23:59:59"
}, - "objAuditdetailModified": {
- "fkiUserID": 70,
- "fkiApikeyID": 99,
- "sUserLoginname": "JohnDoe",
- "sUserLastname": "Doe",
- "sUserFirstname": "John",
- "sApikeyDescriptionX": "Project X",
- "dtAuditdetailDate": "2020-12-31 23:59:59"
}
}
}, - "a_objAttachmentAttachment": [
- {
- "pkiAttachmentID": 1,
- "fkiComputerID": 249,
- "fkiAdjustmentID": 202,
- "fkiAgentID": 1,
- "fkiBankaccountID": 46,
- "fkiBrokerID": 26,
- "fkiCommissionadvanceID": 115,
- "fkiCommunicationID": 1,
- "fkiCustomerID": 18,
- "fkiCustomertemplateID": 152,
- "fkiDepositID": 54,
- "fkiDeposittransitchequeID": 251,
- "fkiElectronicfundstransferID": 1262,
- "fkiEmployeeID": 31,
- "fkiExternalbrokerID": 1,
- "fkiEzcomadvanceserverID": 238,
- "fkiEzcomcompanyID": 170,
- "fkiEzsigndocumentID": 97,
- "fkiGhacqcontractID": 217,
- "fkiInscriptionID": 17,
- "fkiInscriptiontempID": 2445,
- "fkiInscriptionnotauthenticatedID": 24,
- "fkiInvoiceID": 1,
- "fkiBuyercontractID": 38,
- "fkiFranchisebrokerID": 61,
- "fkiFranchiseagenceID": 117,
- "fkiFranchiseofficeID": 50,
- "fkiFranchisefranchiseID": 156,
- "fkiFranchisecomplaintID": 24,
- "fkiLeadID": 117,
- "fkiMarketingprogramID": 178,
- "fkiMarketingfollowID": 45,
- "fkiNotaryID": 1,
- "fkiOfficetaxreportID": 200,
- "fkiOtherincomeID": 142,
- "fkiPaymentpreparationID": 124,
- "fkiPurchaseID": 155,
- "fkiSalaryID": 73,
- "fkiSupplierID": 1,
- "fkiTranqcontractID": 39,
- "fkiTemplateID": 232,
- "fkiInscriptionchecklistID": 191,
- "fkiFolderID": 81,
- "fkiRejectedoffertopurchaseID": 532,
- "fkiDisclosureID": 51,
- "fkiReconciliationID": 140,
- "fkiEzsigndocumentIDReference": 97,
- "eAttachmentDocumenttype": "Adjustment",
- "sAttachmentName": "Document.pdf",
- "eAttachmentPrivacy": "All",
- "fkiUserIDSpecific": 70,
- "eAttachmentType": "Other",
- "iAttachmentSize": 277465200,
- "iAttachmentEDMmoduleflag": 65,
- "sAttachmentMD5": "2cb29026e8a93c930e71598579400db6",
- "bAttachmentDeleted": false,
- "bAttachmentValid": true,
- "eAttachmentVerified": "No",
- "tAttachmentRejectioncomment": "Unreadable",
- "fkiUserIDOwner": 70,
- "objAudit": {
- "objAuditdetailCreated": {
- "fkiUserID": null,
- "fkiApikeyID": null,
- "sUserLoginname": null,
- "sUserLastname": null,
- "sUserFirstname": null,
- "sApikeyDescriptionX": null,
- "dtAuditdetailDate": null
}, - "objAuditdetailModified": {
- "fkiUserID": null,
- "fkiApikeyID": null,
- "sUserLoginname": null,
- "sUserLastname": null,
- "sUserFirstname": null,
- "sApikeyDescriptionX": null,
- "dtAuditdetailDate": null
}
}
}
], - "a_objAttachmentVersion": [
- {
- "pkiAttachmentID": 1,
- "fkiComputerID": 249,
- "fkiAdjustmentID": 202,
- "fkiAgentID": 1,
- "fkiBankaccountID": 46,
- "fkiBrokerID": 26,
- "fkiCommissionadvanceID": 115,
- "fkiCommunicationID": 1,
- "fkiCustomerID": 18,
- "fkiCustomertemplateID": 152,
- "fkiDepositID": 54,
- "fkiDeposittransitchequeID": 251,
- "fkiElectronicfundstransferID": 1262,
- "fkiEmployeeID": 31,
- "fkiExternalbrokerID": 1,
- "fkiEzcomadvanceserverID": 238,
- "fkiEzcomcompanyID": 170,
- "fkiEzsigndocumentID": 97,
- "fkiGhacqcontractID": 217,
- "fkiInscriptionID": 17,
- "fkiInscriptiontempID": 2445,
- "fkiInscriptionnotauthenticatedID": 24,
- "fkiInvoiceID": 1,
- "fkiBuyercontractID": 38,
- "fkiFranchisebrokerID": 61,
- "fkiFranchiseagenceID": 117,
- "fkiFranchiseofficeID": 50,
- "fkiFranchisefranchiseID": 156,
- "fkiFranchisecomplaintID": 24,
- "fkiLeadID": 117,
- "fkiMarketingprogramID": 178,
- "fkiMarketingfollowID": 45,
- "fkiNotaryID": 1,
- "fkiOfficetaxreportID": 200,
- "fkiOtherincomeID": 142,
- "fkiPaymentpreparationID": 124,
- "fkiPurchaseID": 155,
- "fkiSalaryID": 73,
- "fkiSupplierID": 1,
- "fkiTranqcontractID": 39,
- "fkiTemplateID": 232,
- "fkiInscriptionchecklistID": 191,
- "fkiFolderID": 81,
- "fkiRejectedoffertopurchaseID": 532,
- "fkiDisclosureID": 51,
- "fkiReconciliationID": 140,
- "fkiEzsigndocumentIDReference": 97,
- "eAttachmentDocumenttype": "Adjustment",
- "sAttachmentName": "Document.pdf",
- "eAttachmentPrivacy": "All",
- "fkiUserIDSpecific": 70,
- "eAttachmentType": "Other",
- "iAttachmentSize": 277465200,
- "iAttachmentEDMmoduleflag": 65,
- "sAttachmentMD5": "2cb29026e8a93c930e71598579400db6",
- "bAttachmentDeleted": false,
- "bAttachmentValid": true,
- "eAttachmentVerified": "No",
- "tAttachmentRejectioncomment": "Unreadable",
- "fkiUserIDOwner": 70,
- "objAudit": {
- "objAuditdetailCreated": {
- "fkiUserID": null,
- "fkiApikeyID": null,
- "sUserLoginname": null,
- "sUserLastname": null,
- "sUserFirstname": null,
- "sApikeyDescriptionX": null,
- "dtAuditdetailDate": null
}, - "objAuditdetailModified": {
- "fkiUserID": null,
- "fkiApikeyID": null,
- "sUserLoginname": null,
- "sUserLastname": null,
- "sUserFirstname": null,
- "sApikeyDescriptionX": null,
- "dtAuditdetailDate": null
}
}
}
]
}
]
}
]
}, - "objDebugPayload": {
- "iVersionMin": 1,
- "iVersionMax": 2,
- "a_RequiredPermission": [
- 117
], - "bVersionDeprecated": false,
- "dtResponseDate": "2020-12-31 23:59:59"
}, - "objDebug": {
- "sMemoryUsage": "11,923MB",
- "sRunTime": "0.6084s",
- "iSQLSelects": 3,
- "iSQLQueries": 6,
- "a_objSQLQuery": [
- {
- "sQuery": "SELECT * FROM table",
- "fDuration": 0.0001
}, - {
- "sQuery": "SELECT * FROM table",
- "fDuration": 0.0001
}
]
}
}
Get the list of Language to be used in a dropdown or autocomplete control.
sSelector required | string Value: "All" The type of Languages to return |
eFilterActive | string Default: "Active" Enum: "All" "Active" "Inactive" Specify which results we want to display. |
sQuery | string Allow to filter the returned results |
Accept-Language | string (Header-Accept-Language) Enum: "*" "en" "fr" Example: en The language of the returned content.
|
{- "mPayload": {
- "a_objLanguage": [
- {
- "pkiLanguageID": 2,
- "sLanguageNameX": "English",
- "bLanguageIsactive": true
}
]
}, - "objDebugPayload": {
- "iVersionMin": 1,
- "iVersionMax": 2,
- "a_RequiredPermission": [
- 117
], - "bVersionDeprecated": false,
- "dtResponseDate": "2020-12-31 23:59:59"
}, - "objDebug": {
- "sMemoryUsage": "11,923MB",
- "sRunTime": "0.6084s",
- "iSQLSelects": 3,
- "iSQLQueries": 6,
- "a_objSQLQuery": [
- {
- "sQuery": "SELECT * FROM table",
- "fDuration": 0.0001
}, - {
- "sQuery": "SELECT * FROM table",
- "fDuration": 0.0001
}
]
}
}
Get the list of Module to be used in a dropdown or autocomplete control.
sSelector required | string Value: "Forms" The type of Modules to return |
eFilterActive | string Default: "Active" Enum: "All" "Active" "Inactive" Specify which results we want to display. |
sQuery | string Allow to filter the returned results |
Accept-Language | string (Header-Accept-Language) Enum: "*" "en" "fr" Example: en The language of the returned content.
|
{- "mPayload": {
- "a_objModule": [
- {
- "pkiModuleID": 40,
- "sModuleNameX": "Purchase",
- "bModuleIsactive": true
}
]
}, - "objDebugPayload": {
- "iVersionMin": 1,
- "iVersionMax": 2,
- "a_RequiredPermission": [
- 117
], - "bVersionDeprecated": false,
- "dtResponseDate": "2020-12-31 23:59:59"
}, - "objDebug": {
- "sMemoryUsage": "11,923MB",
- "sRunTime": "0.6084s",
- "iSQLSelects": 3,
- "iSQLQueries": 6,
- "a_objSQLQuery": [
- {
- "sQuery": "SELECT * FROM table",
- "fDuration": 0.0001
}, - {
- "sQuery": "SELECT * FROM table",
- "fDuration": 0.0001
}
]
}
}
eContext required | string Enum: "Api" "User" The context of the Modulegroup |
{- "mPayload": {
- "a_objModulegroup": [
- {
- "pkiModulegroupID": 46,
- "sModulegroupNameX": "Management",
- "a_objModule": [
- {
- "pkiModuleID": 40,
- "fkiModulegroupID": 46,
- "eModuleInternalname": "Purchases",
- "sModuleNameX": "Purchase",
- "bModuleRegistered": true,
- "bModuleRegisteredapi": true,
- "a_objModulesection": [
- {
- "pkiModulesectionID": 53,
- "fkiModuleID": 40,
- "sModulesectionInternalname": "Access",
- "sModulesectionNameX": "Access",
- "a_objPermission": [
- {
- "pkiPermissionID": null,
- "fkiUserID": null,
- "fkiApikeyID": null,
- "fkiUsergroupID": null,
- "fkiCompanyID": null,
- "fkiModulesectionID": null,
- "sCompanyNameX": null
}
]
}
]
}
]
}
]
}, - "objDebugPayload": {
- "iVersionMin": 1,
- "iVersionMax": 2,
- "a_RequiredPermission": [
- 117
], - "bVersionDeprecated": false,
- "dtResponseDate": "2020-12-31 23:59:59"
}, - "objDebug": {
- "sMemoryUsage": "11,923MB",
- "sRunTime": "0.6084s",
- "iSQLSelects": 3,
- "iSQLQueries": 6,
- "a_objSQLQuery": [
- {
- "sQuery": "SELECT * FROM table",
- "fDuration": 0.0001
}, - {
- "sQuery": "SELECT * FROM table",
- "fDuration": 0.0001
}
]
}
}
Notificationsection contains detail about the count of elements for configured notification tests
pkiNotificationsectionID required | integer (Field-pkiNotificationsectionID) >= 0 Example: 1 The unique ID of the Notificationsection |
bShowHidden required | boolean Whether or not to return the hidden Notificationtests |
{- "mPayload": {
- "a_objNotificationsubsection": [
- {
- "pkiNotificationsubsectionID": 3,
- "fkiNotificationsectionID": 1,
- "objNotificationsubsectionName": {
- "sNotificationsubsectionName1": "Signature électronique",
- "sNotificationsubsectionName2": "Electronic signature"
}, - "sNotificationsectionNameX": "Homepage",
- "sNotificationsubsectionNameX": "Default",
- "a_objNotificationtest": [
- {
- "pkiNotificationtestID": 14,
- "objNotificationtestName": {
- "sNotificationtestName1": "Default",
- "sNotificationtestName2": "Default"
}, - "fkiNotificationsubsectionID": 3,
- "sNotificationtestFunction": "Default",
- "sNotificationtestNameX": "Default",
- "eNotificationpreferenceStatus": "Show",
- "iNotificationtest": 27
}
]
}
]
}, - "objDebugPayload": {
- "iVersionMin": 1,
- "iVersionMax": 2,
- "a_RequiredPermission": [
- 117
], - "bVersionDeprecated": false,
- "dtResponseDate": "2020-12-31 23:59:59"
}, - "objDebug": {
- "sMemoryUsage": "11,923MB",
- "sRunTime": "0.6084s",
- "iSQLSelects": 3,
- "iSQLQueries": 6,
- "a_objSQLQuery": [
- {
- "sQuery": "SELECT * FROM table",
- "fDuration": 0.0001
}, - {
- "sQuery": "SELECT * FROM table",
- "fDuration": 0.0001
}
]
}
}
Notificationtest contains detail about the notified tests to the users about things to take action on
pkiNotificationtestID required | integer (Field-pkiNotificationtestID) >= 0 Example: 14 The unique ID of the Notificationtest |
{- "mPayload": {
- "pkiNotificationtestID": 14,
- "sNotificationtestFunction": "Default",
- "a_sVariableobjectProperty": [
- "PropertyName1"
], - "a_objVariableobject": [
- { }
]
}, - "objDebugPayload": {
- "iVersionMin": 1,
- "iVersionMax": 2,
- "a_RequiredPermission": [
- 117
], - "bVersionDeprecated": false,
- "dtResponseDate": "2020-12-31 23:59:59"
}, - "objDebug": {
- "sMemoryUsage": "11,923MB",
- "sRunTime": "0.6084s",
- "iSQLSelects": 3,
- "iSQLQueries": 6,
- "a_objSQLQuery": [
- {
- "sQuery": "SELECT * FROM table",
- "fDuration": 0.0001
}, - {
- "sQuery": "SELECT * FROM table",
- "fDuration": 0.0001
}
]
}
}
pkiOtherincomeID required | integer (Field-pkiOtherincomeID) [ 1 .. 65535 ] Example: 142 The unique ID of the Otherincome |
{- "mPayload": {
- "a_objCommunication": [
- {
- "pkiCommunicationID": 1,
- "dtCreatedDate": "2020-12-31 23:59:59",
- "eCommunicationDirection": "Outbound",
- "eCommunicationImportance": "Normal",
- "eCommunicationType": "Email",
- "iCommunicationrecipientCount": 8,
- "sCommunicationSubject": "This is an example of subject",
- "sCommunicationSender": "John Doe",
- "sCommunicationRecipient": "Jane Doe"
}
]
}, - "objDebugPayload": {
- "iVersionMin": 1,
- "iVersionMax": 2,
- "a_RequiredPermission": [
- 117
], - "bVersionDeprecated": false,
- "dtResponseDate": "2020-12-31 23:59:59",
- "a_Filter": {
- "a_AutoType": {
- "property1": "string",
- "property2": "string"
}, - "a_AutoTypeHaving": {
- "property1": "string",
- "property2": "string"
}, - "a_Enum": {
- "property1": {
- "property1": "string",
- "property2": "string"
}, - "property2": {
- "property1": "string",
- "property2": "string"
}
}
}, - "a_OrderBy": {
- "property1": "string",
- "property2": "string"
}, - "iRowMax": 100,
- "iRowOffset": 0
}, - "objDebug": {
- "sMemoryUsage": "11,923MB",
- "sRunTime": "0.6084s",
- "iSQLSelects": 3,
- "iSQLQueries": 6,
- "a_objSQLQuery": [
- {
- "sQuery": "SELECT * FROM table",
- "fDuration": 0.0001
}, - {
- "sQuery": "SELECT * FROM table",
- "fDuration": 0.0001
}
]
}
}
The endpoint allows to create one or many elements at once.
required | Array of objects (paymentterm-RequestCompound) non-empty |
{- "a_objPaymentterm": [
- {
- "pkiPaymenttermID": 46,
- "sPaymenttermCode": "0030",
- "ePaymenttermType": "Days",
- "iPaymenttermDay": 30,
- "objPaymenttermDescription": {
- "sPaymenttermDescription1": "Net 30 jours",
- "sPaymenttermDescription2": "Net 30 days"
}, - "bPaymenttermIsactive": true
}
]
}
{- "mPayload": {
- "a_pkiPaymenttermID": [
- 46
]
}, - "objDebugPayload": {
- "iVersionMin": 1,
- "iVersionMax": 2,
- "a_RequiredPermission": [
- 117
], - "bVersionDeprecated": false,
- "dtResponseDate": "2020-12-31 23:59:59"
}, - "objDebug": {
- "sMemoryUsage": "11,923MB",
- "sRunTime": "0.6084s",
- "iSQLSelects": 3,
- "iSQLQueries": 6,
- "a_objSQLQuery": [
- {
- "sQuery": "SELECT * FROM table",
- "fDuration": 0.0001
}, - {
- "sQuery": "SELECT * FROM table",
- "fDuration": 0.0001
}
]
}
}
pkiPaymenttermID required | integer (Field-pkiPaymenttermID) Example: 46 The unique ID of the Paymentterm |
required | object (paymentterm-RequestCompound) A Paymentterm Object and children |
{- "objPaymentterm": {
- "pkiPaymenttermID": 46,
- "sPaymenttermCode": "0030",
- "ePaymenttermType": "Days",
- "iPaymenttermDay": 30,
- "objPaymenttermDescription": {
- "sPaymenttermDescription1": "Net 30 jours",
- "sPaymenttermDescription2": "Net 30 days"
}, - "bPaymenttermIsactive": true
}
}
{- "objDebugPayload": {
- "iVersionMin": 1,
- "iVersionMax": 2,
- "a_RequiredPermission": [
- 117
], - "bVersionDeprecated": false,
- "dtResponseDate": "2020-12-31 23:59:59"
}, - "objDebug": {
- "sMemoryUsage": "11,923MB",
- "sRunTime": "0.6084s",
- "iSQLSelects": 3,
- "iSQLQueries": 6,
- "a_objSQLQuery": [
- {
- "sQuery": "SELECT * FROM table",
- "fDuration": 0.0001
}, - {
- "sQuery": "SELECT * FROM table",
- "fDuration": 0.0001
}
]
}
}
pkiPaymenttermID required | integer (Field-pkiPaymenttermID) Example: 46 The unique ID of the Paymentterm |
{- "mPayload": {
- "objPaymentterm": {
- "pkiPaymenttermID": 46,
- "sPaymenttermCode": "0030",
- "ePaymenttermType": "Days",
- "iPaymenttermDay": 30,
- "objPaymenttermDescription": {
- "sPaymenttermDescription1": "Net 30 jours",
- "sPaymenttermDescription2": "Net 30 days"
}, - "bPaymenttermIsactive": true,
- "objAudit": {
- "objAuditdetailCreated": {
- "fkiUserID": 70,
- "fkiApikeyID": 99,
- "sUserLoginname": "JohnDoe",
- "sUserLastname": "Doe",
- "sUserFirstname": "John",
- "sApikeyDescriptionX": "Project X",
- "dtAuditdetailDate": "2020-12-31 23:59:59"
}, - "objAuditdetailModified": {
- "fkiUserID": 70,
- "fkiApikeyID": 99,
- "sUserLoginname": "JohnDoe",
- "sUserLastname": "Doe",
- "sUserFirstname": "John",
- "sApikeyDescriptionX": "Project X",
- "dtAuditdetailDate": "2020-12-31 23:59:59"
}
}
}
}, - "objDebugPayload": {
- "iVersionMin": 1,
- "iVersionMax": 2,
- "a_RequiredPermission": [
- 117
], - "bVersionDeprecated": false,
- "dtResponseDate": "2020-12-31 23:59:59"
}, - "objDebug": {
- "sMemoryUsage": "11,923MB",
- "sRunTime": "0.6084s",
- "iSQLSelects": 3,
- "iSQLQueries": 6,
- "a_objSQLQuery": [
- {
- "sQuery": "SELECT * FROM table",
- "fDuration": 0.0001
}, - {
- "sQuery": "SELECT * FROM table",
- "fDuration": 0.0001
}
]
}
}
eOrderBy | string Enum: "pkiPaymenttermID_ASC" "pkiPaymenttermID_DESC" "sPaymenttermCode_ASC" "sPaymenttermCode_DESC" "ePaymenttermType_ASC" … 7 more Specify how you want the results to be sorted |
iRowMax | integer (Field-iRowMax) [ 1 .. 10000 ] Example: iRowMax=100 The maximum numbers of results to be returned. When the content-type is application/json there is an implicit default of 10 000. When it's application/vnd.openxmlformats-officedocument.spreadsheetml.sheet the is no implicit default so if you do not specify iRowMax, all records will be returned. |
iRowOffset | integer (Field-iRowOffset) >= 0 Default: 0 Example: iRowOffset=0 The starting element from where to start retrieving the results. For example if you started at iRowOffset=0 and asked for iRowMax=100, to get the next 100 results, you could specify iRowOffset=100&iRowMax=100, |
sFilter | string (Field-sFilter) Example: sFilter=bField1 eq true and iField2 gte 0 and iField2 lte 1000 and sField3 eq 'Other' and eField4 eq 'Paid' and sField5 like '%needle%' and iField6 in '1,2,3' and dtField7 rg '=m,=3mm' The filter to apply to the request to limit results. |
Accept-Language | string (Header-Accept-Language) Enum: "*" "en" "fr" Example: en The language of the returned content.
|
{- "mPayload": {
- "a_objPaymentterm": [
- {
- "pkiPaymenttermID": 46,
- "sPaymenttermCode": "0030",
- "ePaymenttermType": "Days",
- "iPaymenttermDay": 30,
- "sPaymenttermDescriptionX": "Net 30 days",
- "bPaymenttermIsactive": true
}
], - "iRowReturned": 100,
- "iRowFiltered": 533
}, - "objDebugPayload": {
- "iVersionMin": 1,
- "iVersionMax": 2,
- "a_RequiredPermission": [
- 117
], - "bVersionDeprecated": false,
- "dtResponseDate": "2020-12-31 23:59:59",
- "a_Filter": {
- "a_AutoType": {
- "property1": "string",
- "property2": "string"
}, - "a_AutoTypeHaving": {
- "property1": "string",
- "property2": "string"
}, - "a_Enum": {
- "property1": {
- "property1": "string",
- "property2": "string"
}, - "property2": {
- "property1": "string",
- "property2": "string"
}
}
}, - "a_OrderBy": {
- "property1": "string",
- "property2": "string"
}, - "iRowMax": 100,
- "iRowOffset": 0
}, - "objDebug": {
- "sMemoryUsage": "11,923MB",
- "sRunTime": "0.6084s",
- "iSQLSelects": 3,
- "iSQLQueries": 6,
- "a_objSQLQuery": [
- {
- "sQuery": "SELECT * FROM table",
- "fDuration": 0.0001
}, - {
- "sQuery": "SELECT * FROM table",
- "fDuration": 0.0001
}
]
}
}
Get the list of Paymentterm to be used in a dropdown or autocomplete control.
sSelector required | string Value: "All" The type of Paymentterms to return |
eFilterActive | string Default: "Active" Enum: "All" "Active" "Inactive" Specify which results we want to display. |
sQuery | string Allow to filter the returned results |
Accept-Language | string (Header-Accept-Language) Enum: "*" "en" "fr" Example: en The language of the returned content.
|
{- "mPayload": {
- "a_objPaymentterm": [
- {
- "pkiPaymenttermID": 46,
- "sPaymenttermDescriptionX": "Net 30 days",
- "bPaymenttermIsactive": true
}
]
}, - "objDebugPayload": {
- "iVersionMin": 1,
- "iVersionMax": 2,
- "a_RequiredPermission": [
- 117
], - "bVersionDeprecated": false,
- "dtResponseDate": "2020-12-31 23:59:59"
}, - "objDebug": {
- "sMemoryUsage": "11,923MB",
- "sRunTime": "0.6084s",
- "iSQLSelects": 3,
- "iSQLQueries": 6,
- "a_objSQLQuery": [
- {
- "sQuery": "SELECT * FROM table",
- "fDuration": 0.0001
}, - {
- "sQuery": "SELECT * FROM table",
- "fDuration": 0.0001
}
]
}
}
Get the list of Period to be used in a dropdown or autocomplete control.
sSelector required | string Enum: "ActiveNormal" "ActiveNormalAndEndOfYear" "AllNormal" "AllNormalAndEndOfYear" The type of Periods to return |
eFilterActive | string Default: "Active" Enum: "All" "Active" "Inactive" Specify which results we want to display. |
sQuery | string Allow to filter the returned results |
Accept-Language | string (Header-Accept-Language) Enum: "*" "en" "fr" Example: en The language of the returned content.
|
{- "mPayload": {
- "a_objPeriod": [
- {
- "sPeriodYYYYMM": "2202-12",
- "pkiPeriodID": 21,
- "bPeriodIsactive": true
}
]
}, - "objDebugPayload": {
- "iVersionMin": 1,
- "iVersionMax": 2,
- "a_RequiredPermission": [
- 117
], - "bVersionDeprecated": false,
- "dtResponseDate": "2020-12-31 23:59:59"
}, - "objDebug": {
- "sMemoryUsage": "11,923MB",
- "sRunTime": "0.6084s",
- "iSQLSelects": 3,
- "iSQLQueries": 6,
- "a_objSQLQuery": [
- {
- "sQuery": "SELECT * FROM table",
- "fDuration": 0.0001
}, - {
- "sQuery": "SELECT * FROM table",
- "fDuration": 0.0001
}
]
}
}
The endpoint allows to create one or many elements at once.
required | Array of objects (permission-RequestCompound) non-empty |
{- "a_objPermission": [
- {
- "pkiPermissionID": 31,
- "fkiUserID": 70,
- "fkiApikeyID": 99,
- "fkiUsergroupID": 2,
- "fkiCompanyID": 1,
- "fkiModulesectionID": 53
}
]
}
{- "mPayload": {
- "a_pkiPermissionID": [
- 31
]
}, - "objDebugPayload": {
- "iVersionMin": 1,
- "iVersionMax": 2,
- "a_RequiredPermission": [
- 117
], - "bVersionDeprecated": false,
- "dtResponseDate": "2020-12-31 23:59:59"
}, - "objDebug": {
- "sMemoryUsage": "11,923MB",
- "sRunTime": "0.6084s",
- "iSQLSelects": 3,
- "iSQLQueries": 6,
- "a_objSQLQuery": [
- {
- "sQuery": "SELECT * FROM table",
- "fDuration": 0.0001
}, - {
- "sQuery": "SELECT * FROM table",
- "fDuration": 0.0001
}
]
}
}
pkiPermissionID required | integer (Field-pkiPermissionID) [ 0 .. 65535 ] Example: 31 The unique ID of the Permission |
{- "objDebugPayload": {
- "iVersionMin": 1,
- "iVersionMax": 2,
- "a_RequiredPermission": [
- 117
], - "bVersionDeprecated": false,
- "dtResponseDate": "2020-12-31 23:59:59"
}, - "objDebug": {
- "sMemoryUsage": "11,923MB",
- "sRunTime": "0.6084s",
- "iSQLSelects": 3,
- "iSQLQueries": 6,
- "a_objSQLQuery": [
- {
- "sQuery": "SELECT * FROM table",
- "fDuration": 0.0001
}, - {
- "sQuery": "SELECT * FROM table",
- "fDuration": 0.0001
}
]
}
}
pkiPermissionID required | integer (Field-pkiPermissionID) [ 0 .. 65535 ] Example: 31 The unique ID of the Permission |
required | object (permission-RequestCompound) A Permission Object and children to create a complete structure |
{- "objPermission": {
- "pkiPermissionID": 31,
- "fkiUserID": 70,
- "fkiApikeyID": 99,
- "fkiUsergroupID": 2,
- "fkiCompanyID": 1,
- "fkiModulesectionID": 53
}
}
{- "objDebugPayload": {
- "iVersionMin": 1,
- "iVersionMax": 2,
- "a_RequiredPermission": [
- 117
], - "bVersionDeprecated": false,
- "dtResponseDate": "2020-12-31 23:59:59"
}, - "objDebug": {
- "sMemoryUsage": "11,923MB",
- "sRunTime": "0.6084s",
- "iSQLSelects": 3,
- "iSQLQueries": 6,
- "a_objSQLQuery": [
- {
- "sQuery": "SELECT * FROM table",
- "fDuration": 0.0001
}, - {
- "sQuery": "SELECT * FROM table",
- "fDuration": 0.0001
}
]
}
}
pkiPermissionID required | integer (Field-pkiPermissionID) [ 0 .. 65535 ] Example: 31 The unique ID of the Permission |
{- "mPayload": {
- "objPermission": {
- "pkiPermissionID": 31,
- "fkiUserID": 70,
- "fkiApikeyID": 99,
- "fkiUsergroupID": 2,
- "fkiCompanyID": 1,
- "fkiModulesectionID": 53,
- "sCompanyNameX": "Acme inc."
}
}, - "objDebugPayload": {
- "iVersionMin": 1,
- "iVersionMax": 2,
- "a_RequiredPermission": [
- 117
], - "bVersionDeprecated": false,
- "dtResponseDate": "2020-12-31 23:59:59"
}, - "objDebug": {
- "sMemoryUsage": "11,923MB",
- "sRunTime": "0.6084s",
- "iSQLSelects": 3,
- "iSQLQueries": 6,
- "a_objSQLQuery": [
- {
- "sQuery": "SELECT * FROM table",
- "fDuration": 0.0001
}, - {
- "sQuery": "SELECT * FROM table",
- "fDuration": 0.0001
}
]
}
}
Get the list of Phonetype to be used in a dropdown or autocomplete control.
sSelector required | string Value: "All" The type of Phonetypes to return |
eFilterActive | string Default: "Active" Enum: "All" "Active" "Inactive" Specify which results we want to display. |
sQuery | string Allow to filter the returned results |
Accept-Language | string (Header-Accept-Language) Enum: "*" "en" "fr" Example: en The language of the returned content.
|
{- "mPayload": {
- "a_objPhonetype": [
- {
- "pkiPhonetypeID": 1,
- "sPhonetypeNameX": "Office",
- "bPhonetypeIsactive": true
}
]
}, - "objDebugPayload": {
- "iVersionMin": 1,
- "iVersionMax": 2,
- "a_RequiredPermission": [
- 117
], - "bVersionDeprecated": false,
- "dtResponseDate": "2020-12-31 23:59:59"
}, - "objDebug": {
- "sMemoryUsage": "11,923MB",
- "sRunTime": "0.6084s",
- "iSQLSelects": 3,
- "iSQLQueries": 6,
- "a_objSQLQuery": [
- {
- "sQuery": "SELECT * FROM table",
- "fDuration": 0.0001
}, - {
- "sQuery": "SELECT * FROM table",
- "fDuration": 0.0001
}
]
}
}
Get the list of Province to be used in a dropdown or autocomplete control.
sSelector required | string Value: "All" The type of Provinces to return |
eFilterActive | string Default: "Active" Enum: "All" "Active" "Inactive" Specify which results we want to display. |
sQuery | string Allow to filter the returned results |
Accept-Language | string (Header-Accept-Language) Enum: "*" "en" "fr" Example: en The language of the returned content.
|
{- "mPayload": {
- "a_objProvince": [
- {
- "pkiProvinceID": 11,
- "fkiCountryID": 1,
- "sProvinceNameX": "Quebec",
- "sProvinceShortname": "QC",
- "bProvinceIsactive": true
}
]
}, - "objDebugPayload": {
- "iVersionMin": 1,
- "iVersionMax": 2,
- "a_RequiredPermission": [
- 117
], - "bVersionDeprecated": false,
- "dtResponseDate": "2020-12-31 23:59:59"
}, - "objDebug": {
- "sMemoryUsage": "11,923MB",
- "sRunTime": "0.6084s",
- "iSQLSelects": 3,
- "iSQLQueries": 6,
- "a_objSQLQuery": [
- {
- "sQuery": "SELECT * FROM table",
- "fDuration": 0.0001
}, - {
- "sQuery": "SELECT * FROM table",
- "fDuration": 0.0001
}
]
}
}
pkiRejectedoffertopurchaseID required | integer (Field-pkiRejectedoffertopurchaseID) [ 1 .. 65535 ] Example: 532 The unique ID of the Rejectedoffertopurchase |
{- "mPayload": {
- "a_objCommunication": [
- {
- "pkiCommunicationID": 1,
- "dtCreatedDate": "2020-12-31 23:59:59",
- "eCommunicationDirection": "Outbound",
- "eCommunicationImportance": "Normal",
- "eCommunicationType": "Email",
- "iCommunicationrecipientCount": 8,
- "sCommunicationSubject": "This is an example of subject",
- "sCommunicationSender": "John Doe",
- "sCommunicationRecipient": "Jane Doe"
}
]
}, - "objDebugPayload": {
- "iVersionMin": 1,
- "iVersionMax": 2,
- "a_RequiredPermission": [
- 117
], - "bVersionDeprecated": false,
- "dtResponseDate": "2020-12-31 23:59:59",
- "a_Filter": {
- "a_AutoType": {
- "property1": "string",
- "property2": "string"
}, - "a_AutoTypeHaving": {
- "property1": "string",
- "property2": "string"
}, - "a_Enum": {
- "property1": {
- "property1": "string",
- "property2": "string"
}, - "property2": {
- "property1": "string",
- "property2": "string"
}
}
}, - "a_OrderBy": {
- "property1": "string",
- "property2": "string"
}, - "iRowMax": 100,
- "iRowOffset": 0
}, - "objDebug": {
- "sMemoryUsage": "11,923MB",
- "sRunTime": "0.6084s",
- "iSQLSelects": 3,
- "iSQLQueries": 6,
- "a_objSQLQuery": [
- {
- "sQuery": "SELECT * FROM table",
- "fDuration": 0.0001
}, - {
- "sQuery": "SELECT * FROM table",
- "fDuration": 0.0001
}
]
}
}
Get the list of Secretquestion to be used in a dropdown or autocomplete control.
sSelector required | string Value: "All" The type of Secretquestions to return |
eFilterActive | string Default: "Active" Enum: "All" "Active" "Inactive" Specify which results we want to display. |
sQuery | string Allow to filter the returned results |
Accept-Language | string (Header-Accept-Language) Enum: "*" "en" "fr" Example: en The language of the returned content.
|
{- "mPayload": {
- "a_objSecretquestion": [
- {
- "sSecretquestionTextX": "The name of the hospital in which you were born",
- "pkiSecretquestionID": 7,
- "bSecretquestionIsactive": true
}
]
}, - "objDebugPayload": {
- "iVersionMin": 1,
- "iVersionMax": 2,
- "a_RequiredPermission": [
- 117
], - "bVersionDeprecated": false,
- "dtResponseDate": "2020-12-31 23:59:59"
}, - "objDebug": {
- "sMemoryUsage": "11,923MB",
- "sRunTime": "0.6084s",
- "iSQLSelects": 3,
- "iSQLQueries": 6,
- "a_objSQLQuery": [
- {
- "sQuery": "SELECT * FROM table",
- "fDuration": 0.0001
}, - {
- "sQuery": "SELECT * FROM table",
- "fDuration": 0.0001
}
]
}
}
eOrderBy | string Enum: "pkiSessionhistoryID_ASC" "pkiSessionhistoryID_DESC" "fkiComputerID_ASC" "fkiComputerID_DESC" "fkiUserID_ASC" … 15 more Specify how you want the results to be sorted |
iRowMax | integer (Field-iRowMax) [ 1 .. 10000 ] Example: iRowMax=100 The maximum numbers of results to be returned. When the content-type is application/json there is an implicit default of 10 000. When it's application/vnd.openxmlformats-officedocument.spreadsheetml.sheet the is no implicit default so if you do not specify iRowMax, all records will be returned. |
iRowOffset | integer (Field-iRowOffset) >= 0 Default: 0 Example: iRowOffset=0 The starting element from where to start retrieving the results. For example if you started at iRowOffset=0 and asked for iRowMax=100, to get the next 100 results, you could specify iRowOffset=100&iRowMax=100, |
sFilter | string (Field-sFilter) Example: sFilter=bField1 eq true and iField2 gte 0 and iField2 lte 1000 and sField3 eq 'Other' and eField4 eq 'Paid' and sField5 like '%needle%' and iField6 in '1,2,3' and dtField7 rg '=m,=3mm' The filter to apply to the request to limit results. |
Accept-Language | string (Header-Accept-Language) Enum: "*" "en" "fr" Example: en The language of the returned content.
|
{- "mPayload": {
- "a_objSessionhistory": [
- {
- "pkiSessionhistoryID": 259,
- "fkiComputerID": 249,
- "fkiUserID": 70,
- "dtSessionhistoryFirsthit": "2020-12-31 17:35:37",
- "dtSessionhistoryLasthit": "2020-12-31 19:27:38",
- "eSessionhistoryEndby": "Logoff",
- "sComputerDescription": "PC001",
- "sSessionhistoryDuration": "01:52:01",
- "sSessionhistoryIP": "127.0.0.1",
- "sUserLoginname": "JohnDoe"
}
], - "iRowReturned": 100,
- "iRowFiltered": 533
}, - "objDebugPayload": {
- "iVersionMin": 1,
- "iVersionMax": 2,
- "a_RequiredPermission": [
- 117
], - "bVersionDeprecated": false,
- "dtResponseDate": "2020-12-31 23:59:59",
- "a_Filter": {
- "a_AutoType": {
- "property1": "string",
- "property2": "string"
}, - "a_AutoTypeHaving": {
- "property1": "string",
- "property2": "string"
}, - "a_Enum": {
- "property1": {
- "property1": "string",
- "property2": "string"
}, - "property2": {
- "property1": "string",
- "property2": "string"
}
}
}, - "a_OrderBy": {
- "property1": "string",
- "property2": "string"
}, - "iRowMax": 100,
- "iRowOffset": 0
}, - "objDebug": {
- "sMemoryUsage": "11,923MB",
- "sRunTime": "0.6084s",
- "iSQLSelects": 3,
- "iSQLQueries": 6,
- "a_objSQLQuery": [
- {
- "sQuery": "SELECT * FROM table",
- "fDuration": 0.0001
}, - {
- "sQuery": "SELECT * FROM table",
- "fDuration": 0.0001
}
]
}
}
The endpoint allows to create one or many elements at once.
required | Array of objects (signature-RequestCompound) non-empty |
{- "a_objSignature": [
- {
- "pkiSignatureID": 12,
- "tSignatureSvg": "<svg version=\"1.1\" id=\"Layer_2\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\" \t viewBox=\"0 0 175 75\" enable-background=\"new 0 0 175 75\" xml:space=\"preserve\"> <path fill=\"#FFFFFF\" d=\"M51,47.4c-0.8,1.6-1.7,3.1-2.8,4.5H31.9l15-17.6H36.7c-1.2,0-2.2-1-2.2-2.2s1-2.2,2.2-2.2l0,0h15 \tc0.5,1.4,0.9,2.9,1.1,4.4L41.6,47.4H51z M32,48.6c-2.2,2.2-5.1,3.3-8,3.3s-5.8-1.1-8-3.3c-4.4-4.4-4.4-11.6,0-16s11.6-4.4,16,0 \tc2.1,2.1,3.3,5,3.3,8v2.3l-17.8-0.2c0.3,1,0.9,1.9,1.7,2.7c2.7,2.7,7,2.7,9.7,0c0.9-0.9,2.3-0.9,3.2,0C32.9,46.3,32.9,47.7,32,48.6z \t M17.6,38.2l12.9,0.1c-0.3-1-0.9-1.8-1.6-2.6c-2.7-2.7-7-2.7-9.7,0C18.5,36.5,18,37.3,17.6,38.2z\"/> <path fill=\"#D12A2F\" d=\"M46.9,34.3H36.7c-1.2,0-2.2-1-2.2-2.2s1-2.2,2.2-2.2l0,0h15C48.5,21,40,14.7,30.1,14.7 \tc-12.7,0-23,10.3-23,23s10.3,23,23,23c7.3,0,13.8-3.4,18-8.7H31.8L46.9,34.3z M24,51.9c-2.9,0-5.8-1.1-8-3.3c-4.4-4.4-4.4-11.6,0-16 \ts11.6-4.4,16,0c2.1,2.1,3.3,5,3.3,8v2.3l-17.8-0.2c0.3,1,0.9,1.9,1.7,2.7c2.7,2.7,7,2.7,9.7,0c0.9-0.9,2.3-0.9,3.2,0 \tc0.9,0.9,0.9,2.3,0,3.2C29.8,50.8,26.9,51.9,24,51.9z M30.5,38.3l-12.8-0.1c0.3-0.9,0.9-1.7,1.6-2.4c2.7-2.7,7-2.7,9.7,0 \tC29.6,36.5,30.1,37.4,30.5,38.3z M41.6,47.4l11.2-13.2c0.2,1.1,0.2,2.2,0.2,3.4c0,3.5-0.8,6.8-2.2,9.8H41.6z\"/> </svg>"
}
]
}
{- "mPayload": {
- "a_pkiSignatureID": [
- 12
]
}, - "objDebugPayload": {
- "iVersionMin": 1,
- "iVersionMax": 2,
- "a_RequiredPermission": [
- 117
], - "bVersionDeprecated": false,
- "dtResponseDate": "2020-12-31 23:59:59"
}, - "objDebug": {
- "sMemoryUsage": "11,923MB",
- "sRunTime": "0.6084s",
- "iSQLSelects": 3,
- "iSQLQueries": 6,
- "a_objSQLQuery": [
- {
- "sQuery": "SELECT * FROM table",
- "fDuration": 0.0001
}, - {
- "sQuery": "SELECT * FROM table",
- "fDuration": 0.0001
}
]
}
}
pkiSignatureID required | integer (Field-pkiSignatureID) [ 0 .. 16777215 ] Example: 12 The unique ID of the Signature |
{- "objDebugPayload": {
- "iVersionMin": 1,
- "iVersionMax": 2,
- "a_RequiredPermission": [
- 117
], - "bVersionDeprecated": false,
- "dtResponseDate": "2020-12-31 23:59:59"
}, - "objDebug": {
- "sMemoryUsage": "11,923MB",
- "sRunTime": "0.6084s",
- "iSQLSelects": 3,
- "iSQLQueries": 6,
- "a_objSQLQuery": [
- {
- "sQuery": "SELECT * FROM table",
- "fDuration": 0.0001
}, - {
- "sQuery": "SELECT * FROM table",
- "fDuration": 0.0001
}
]
}
}
pkiSignatureID required | integer (Field-pkiSignatureID) [ 0 .. 16777215 ] Example: 12 The unique ID of the Signature |
required | object (signature-RequestCompound) A Signature Object and children |
{- "objSignature": {
- "pkiSignatureID": 12,
- "tSignatureSvg": "<svg version=\"1.1\" id=\"Layer_2\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\" \t viewBox=\"0 0 175 75\" enable-background=\"new 0 0 175 75\" xml:space=\"preserve\"> <path fill=\"#FFFFFF\" d=\"M51,47.4c-0.8,1.6-1.7,3.1-2.8,4.5H31.9l15-17.6H36.7c-1.2,0-2.2-1-2.2-2.2s1-2.2,2.2-2.2l0,0h15 \tc0.5,1.4,0.9,2.9,1.1,4.4L41.6,47.4H51z M32,48.6c-2.2,2.2-5.1,3.3-8,3.3s-5.8-1.1-8-3.3c-4.4-4.4-4.4-11.6,0-16s11.6-4.4,16,0 \tc2.1,2.1,3.3,5,3.3,8v2.3l-17.8-0.2c0.3,1,0.9,1.9,1.7,2.7c2.7,2.7,7,2.7,9.7,0c0.9-0.9,2.3-0.9,3.2,0C32.9,46.3,32.9,47.7,32,48.6z \t M17.6,38.2l12.9,0.1c-0.3-1-0.9-1.8-1.6-2.6c-2.7-2.7-7-2.7-9.7,0C18.5,36.5,18,37.3,17.6,38.2z\"/> <path fill=\"#D12A2F\" d=\"M46.9,34.3H36.7c-1.2,0-2.2-1-2.2-2.2s1-2.2,2.2-2.2l0,0h15C48.5,21,40,14.7,30.1,14.7 \tc-12.7,0-23,10.3-23,23s10.3,23,23,23c7.3,0,13.8-3.4,18-8.7H31.8L46.9,34.3z M24,51.9c-2.9,0-5.8-1.1-8-3.3c-4.4-4.4-4.4-11.6,0-16 \ts11.6-4.4,16,0c2.1,2.1,3.3,5,3.3,8v2.3l-17.8-0.2c0.3,1,0.9,1.9,1.7,2.7c2.7,2.7,7,2.7,9.7,0c0.9-0.9,2.3-0.9,3.2,0 \tc0.9,0.9,0.9,2.3,0,3.2C29.8,50.8,26.9,51.9,24,51.9z M30.5,38.3l-12.8-0.1c0.3-0.9,0.9-1.7,1.6-2.4c2.7-2.7,7-2.7,9.7,0 \tC29.6,36.5,30.1,37.4,30.5,38.3z M41.6,47.4l11.2-13.2c0.2,1.1,0.2,2.2,0.2,3.4c0,3.5-0.8,6.8-2.2,9.8H41.6z\"/> </svg>"
}
}
{- "objDebugPayload": {
- "iVersionMin": 1,
- "iVersionMax": 2,
- "a_RequiredPermission": [
- 117
], - "bVersionDeprecated": false,
- "dtResponseDate": "2020-12-31 23:59:59"
}, - "objDebug": {
- "sMemoryUsage": "11,923MB",
- "sRunTime": "0.6084s",
- "iSQLSelects": 3,
- "iSQLQueries": 6,
- "a_objSQLQuery": [
- {
- "sQuery": "SELECT * FROM table",
- "fDuration": 0.0001
}, - {
- "sQuery": "SELECT * FROM table",
- "fDuration": 0.0001
}
]
}
}
pkiSignatureID required | integer (Field-pkiSignatureID) [ 0 .. 16777215 ] Example: 12 The unique ID of the Signature |
{- "mPayload": {
}, - "objDebugPayload": {
- "iVersionMin": 1,
- "iVersionMax": 2,
- "a_RequiredPermission": [
- 117
], - "bVersionDeprecated": false,
- "dtResponseDate": "2020-12-31 23:59:59"
}, - "objDebug": {
- "sMemoryUsage": "11,923MB",
- "sRunTime": "0.6084s",
- "iSQLSelects": 3,
- "iSQLQueries": 6,
- "a_objSQLQuery": [
- {
- "sQuery": "SELECT * FROM table",
- "fDuration": 0.0001
}, - {
- "sQuery": "SELECT * FROM table",
- "fDuration": 0.0001
}
]
}
}
The endpoint allows to create one or many elements at once.
required | Array of objects (subnet-RequestCompound) non-empty |
{- "a_objSubnet": [
- {
- "pkiSubnetID": 3,
- "fkiUserID": 70,
- "fkiApikeyID": 99,
- "objSubnetDescription": {
- "sSubnetDescription1": "Bureau chef",
- "sSubnetDescription2": "Head office"
}, - "iSubnetNetwork": 134744064,
- "iSubnetMask": 4294967040
}
]
}
{- "mPayload": {
- "a_pkiSubnetID": [
- 3
]
}, - "objDebugPayload": {
- "iVersionMin": 1,
- "iVersionMax": 2,
- "a_RequiredPermission": [
- 117
], - "bVersionDeprecated": false,
- "dtResponseDate": "2020-12-31 23:59:59"
}, - "objDebug": {
- "sMemoryUsage": "11,923MB",
- "sRunTime": "0.6084s",
- "iSQLSelects": 3,
- "iSQLQueries": 6,
- "a_objSQLQuery": [
- {
- "sQuery": "SELECT * FROM table",
- "fDuration": 0.0001
}, - {
- "sQuery": "SELECT * FROM table",
- "fDuration": 0.0001
}
]
}
}
pkiSubnetID required | integer (Field-pkiSubnetID) [ 0 .. 65535 ] Example: 3 The unique ID of the Subnet |
{- "objDebugPayload": {
- "iVersionMin": 1,
- "iVersionMax": 2,
- "a_RequiredPermission": [
- 117
], - "bVersionDeprecated": false,
- "dtResponseDate": "2020-12-31 23:59:59"
}, - "objDebug": {
- "sMemoryUsage": "11,923MB",
- "sRunTime": "0.6084s",
- "iSQLSelects": 3,
- "iSQLQueries": 6,
- "a_objSQLQuery": [
- {
- "sQuery": "SELECT * FROM table",
- "fDuration": 0.0001
}, - {
- "sQuery": "SELECT * FROM table",
- "fDuration": 0.0001
}
]
}
}
pkiSubnetID required | integer (Field-pkiSubnetID) [ 0 .. 65535 ] Example: 3 The unique ID of the Subnet |
required | object (subnet-RequestCompound) A Subnet Object and children |
{- "objSubnet": {
- "pkiSubnetID": 3,
- "fkiUserID": 70,
- "fkiApikeyID": 99,
- "objSubnetDescription": {
- "sSubnetDescription1": "Bureau chef",
- "sSubnetDescription2": "Head office"
}, - "iSubnetNetwork": 134744064,
- "iSubnetMask": 4294967040
}
}
{- "objDebugPayload": {
- "iVersionMin": 1,
- "iVersionMax": 2,
- "a_RequiredPermission": [
- 117
], - "bVersionDeprecated": false,
- "dtResponseDate": "2020-12-31 23:59:59"
}, - "objDebug": {
- "sMemoryUsage": "11,923MB",
- "sRunTime": "0.6084s",
- "iSQLSelects": 3,
- "iSQLQueries": 6,
- "a_objSQLQuery": [
- {
- "sQuery": "SELECT * FROM table",
- "fDuration": 0.0001
}, - {
- "sQuery": "SELECT * FROM table",
- "fDuration": 0.0001
}
]
}
}
pkiSubnetID required | integer (Field-pkiSubnetID) [ 0 .. 65535 ] Example: 3 The unique ID of the Subnet |
{- "mPayload": {
- "objSubnet": {
- "pkiSubnetID": 3,
- "fkiUserID": 70,
- "fkiApikeyID": 99,
- "objSubnetDescription": {
- "sSubnetDescription1": "Bureau chef",
- "sSubnetDescription2": "Head office"
}, - "iSubnetNetwork": 134744064,
- "iSubnetMask": 4294967040
}
}, - "objDebugPayload": {
- "iVersionMin": 1,
- "iVersionMax": 2,
- "a_RequiredPermission": [
- 117
], - "bVersionDeprecated": false,
- "dtResponseDate": "2020-12-31 23:59:59"
}, - "objDebug": {
- "sMemoryUsage": "11,923MB",
- "sRunTime": "0.6084s",
- "iSQLSelects": 3,
- "iSQLQueries": 6,
- "a_objSQLQuery": [
- {
- "sQuery": "SELECT * FROM table",
- "fDuration": 0.0001
}, - {
- "sQuery": "SELECT * FROM table",
- "fDuration": 0.0001
}
]
}
}
pkiSystemconfigurationID required | integer (Field-pkiSystemconfigurationID) [ 1 .. 1 ] Example: 1 The unique ID of the Systemconfiguration |
required | object (systemconfiguration-RequestCompound) A Systemconfiguration Object and children |
{- "objSystemconfiguration": {
- "pkiSystemconfigurationID": 1,
- "eSystemconfigurationNewexternaluseraction": "Stage",
- "eSystemconfigurationLanguage1": "fr_QC",
- "eSystemconfigurationLanguage2": "en_CA",
- "eSystemconfigurationEzsign": "Yes",
- "eSystemconfigurationEzsignofficeplan": "Standard",
- "bSystemconfigurationEzsignpaidbyoffice": "true",
- "bSystemconfigurationEzsignpersonnal": true,
- "bSystemconfigurationSspr": true,
- "dtSystemconfigurationReadonlyexpirationstart": "2020-12-31",
- "dtSystemconfigurationReadonlyexpirationend": "2021-12-31"
}
}
{- "objDebugPayload": {
- "iVersionMin": 1,
- "iVersionMax": 2,
- "a_RequiredPermission": [
- 117
], - "bVersionDeprecated": false,
- "dtResponseDate": "2020-12-31 23:59:59"
}, - "objDebug": {
- "sMemoryUsage": "11,923MB",
- "sRunTime": "0.6084s",
- "iSQLSelects": 3,
- "iSQLQueries": 6,
- "a_objSQLQuery": [
- {
- "sQuery": "SELECT * FROM table",
- "fDuration": 0.0001
}, - {
- "sQuery": "SELECT * FROM table",
- "fDuration": 0.0001
}
]
}
}
pkiSystemconfigurationID required | integer (Field-pkiSystemconfigurationID) [ 1 .. 1 ] Example: 1 The unique ID of the Systemconfiguration |
{- "mPayload": {
- "objSystemconfiguration": {
- "pkiSystemconfigurationID": 1,
- "fkiSystemconfigurationtypeID": 28,
- "sSystemconfigurationtypeDescriptionX": "eZsign (Pro)",
- "eSystemconfigurationNewexternaluseraction": "Stage",
- "eSystemconfigurationLanguage1": "fr_QC",
- "eSystemconfigurationLanguage2": "en_CA",
- "eSystemconfigurationEzsign": "Yes",
- "eSystemconfigurationEzsignofficeplan": "Standard",
- "bSystemconfigurationEzsignpaidbyoffice": "true",
- "bSystemconfigurationEzsignpersonnal": true,
- "bSystemconfigurationIsdisposalactive": true,
- "bSystemconfigurationSspr": true,
- "dtSystemconfigurationReadonlyexpirationstart": "2020-12-31",
- "dtSystemconfigurationReadonlyexpirationend": "2021-12-31"
}
}, - "objDebugPayload": {
- "iVersionMin": 1,
- "iVersionMax": 2,
- "a_RequiredPermission": [
- 117
], - "bVersionDeprecated": false,
- "dtResponseDate": "2020-12-31 23:59:59"
}, - "objDebug": {
- "sMemoryUsage": "11,923MB",
- "sRunTime": "0.6084s",
- "iSQLSelects": 3,
- "iSQLQueries": 6,
- "a_objSQLQuery": [
- {
- "sQuery": "SELECT * FROM table",
- "fDuration": 0.0001
}, - {
- "sQuery": "SELECT * FROM table",
- "fDuration": 0.0001
}
]
}
}
Get the list of Taxassignment to be used in a dropdown or autocomplete control.
sSelector required | string Enum: "All" "AllButNonrecoverable" The type of Taxassignments to return |
eFilterActive | string Default: "Active" Enum: "All" "Active" "Inactive" Specify which results we want to display. |
sQuery | string Allow to filter the returned results |
Accept-Language | string (Header-Accept-Language) Enum: "*" "en" "fr" Example: en The language of the returned content.
|
{- "mPayload": {
- "a_objTaxassignment": [
- {
- "sTaxassignmentDescriptionX": "Default",
- "pkiTaxassignmentID": 1,
- "bTaxassignmentIsactive": true
}
]
}, - "objDebugPayload": {
- "iVersionMin": 1,
- "iVersionMax": 2,
- "a_RequiredPermission": [
- 117
], - "bVersionDeprecated": false,
- "dtResponseDate": "2020-12-31 23:59:59"
}, - "objDebug": {
- "sMemoryUsage": "11,923MB",
- "sRunTime": "0.6084s",
- "iSQLSelects": 3,
- "iSQLQueries": 6,
- "a_objSQLQuery": [
- {
- "sQuery": "SELECT * FROM table",
- "fDuration": 0.0001
}, - {
- "sQuery": "SELECT * FROM table",
- "fDuration": 0.0001
}
]
}
}
Get the list of Timezone to be used in a dropdown or autocomplete control.
sSelector required | string Enum: "All" "Active" The type of Timezones to return |
eFilterActive | string Default: "Active" Enum: "All" "Active" "Inactive" Specify which results we want to display. |
sQuery | string Allow to filter the returned results |
Accept-Language | string (Header-Accept-Language) Enum: "*" "en" "fr" Example: en The language of the returned content.
|
{- "mPayload": {
- "a_objTimezone": [
- {
- "sTimezoneName": "Default",
- "pkiTimezoneID": 247,
- "bTimezoneIsactive": true
}
]
}, - "objDebugPayload": {
- "iVersionMin": 1,
- "iVersionMax": 2,
- "a_RequiredPermission": [
- 117
], - "bVersionDeprecated": false,
- "dtResponseDate": "2020-12-31 23:59:59"
}, - "objDebug": {
- "sMemoryUsage": "11,923MB",
- "sRunTime": "0.6084s",
- "iSQLSelects": 3,
- "iSQLQueries": 6,
- "a_objSQLQuery": [
- {
- "sQuery": "SELECT * FROM table",
- "fDuration": 0.0001
}, - {
- "sQuery": "SELECT * FROM table",
- "fDuration": 0.0001
}
]
}
}
The endpoint allows to create one or many elements at once.
required | Array of objects (user-RequestCompoundV2) non-empty |
{- "a_objUser": [
- {
- "pkiUserID": 70,
- "fkiAgentID": 1,
- "fkiBrokerID": 26,
- "fkiAssistantID": 1,
- "fkiEmployeeID": 31,
- "fkiCompanyIDDefault": 1,
- "fkiDepartmentIDDefault": 21,
- "fkiTimezoneID": 247,
- "fkiLanguageID": 2,
- "objEmail": {
- "pkiEmailID": 22,
- "fkiEmailtypeID": 1,
- "sEmailAddress": "email@example.com"
}, - "fkiBillingentityinternalID": 1,
- "objPhoneHome": {
- "pkiPhoneID": 1,
- "fkiPhonetypeID": 1,
- "sPhoneExtension": "123",
- "sPhoneE164": "+15149901516"
}, - "objPhoneSMS": {
- "pkiPhoneID": 1,
- "fkiPhonetypeID": 1,
- "sPhoneExtension": "123",
- "sPhoneE164": "+15149901516"
}, - "fkiSecretquestionID": 7,
- "sUserSecretresponse": "Montreal General Hospital",
- "fkiModuleIDForm": 40,
- "eUserType": "EzsignUser",
- "eUserLogintype": "Password",
- "sUserFirstname": "John",
- "sUserLastname": "Doe",
- "sUserLoginname": "JohnDoe",
- "sUserJobtitle": "Sales Representative",
- "eUserEzsignaccess": "PaidByOffice",
- "bUserIsactive": true,
- "bUserValidatebyadministration": false,
- "bUserValidatebydirector": false,
- "bUserAttachmentautoverified": true,
- "bUserChangepassword": true
}
]
}
{- "mPayload": {
- "a_pkiUserID": [
- 70
]
}, - "objDebugPayload": {
- "iVersionMin": 1,
- "iVersionMax": 2,
- "a_RequiredPermission": [
- 117
], - "bVersionDeprecated": false,
- "dtResponseDate": "2020-12-31 23:59:59"
}, - "objDebug": {
- "sMemoryUsage": "11,923MB",
- "sRunTime": "0.6084s",
- "iSQLSelects": 3,
- "iSQLQueries": 6,
- "a_objSQLQuery": [
- {
- "sQuery": "SELECT * FROM table",
- "fDuration": 0.0001
}, - {
- "sQuery": "SELECT * FROM table",
- "fDuration": 0.0001
}
]
}
}
The endpoint allows to create one or many elements at once.
required | Array of objects (user-RequestCompound) non-empty |
{- "a_objUser": [
- {
- "pkiUserID": 70,
- "fkiAgentID": 1,
- "fkiBrokerID": 26,
- "fkiAssistantID": 1,
- "fkiEmployeeID": 31,
- "fkiCompanyIDDefault": 1,
- "fkiDepartmentIDDefault": 21,
- "fkiTimezoneID": 247,
- "fkiLanguageID": 2,
- "objEmail": {
- "pkiEmailID": 22,
- "fkiEmailtypeID": 1,
- "sEmailAddress": "email@example.com"
}, - "fkiBillingentityinternalID": 1,
- "objPhoneHome": {
- "pkiPhoneID": 1,
- "fkiPhonetypeID": 1,
- "ePhoneType": "Local",
- "sPhoneRegion": "514",
- "sPhoneExchange": "990",
- "sPhoneNumber": "1516",
- "sPhoneInternational": "15149901516",
- "sPhoneExtension": "123",
- "sPhoneE164": "+15149901516"
}, - "objPhoneSMS": {
- "pkiPhoneID": 1,
- "fkiPhonetypeID": 1,
- "ePhoneType": "Local",
- "sPhoneRegion": "514",
- "sPhoneExchange": "990",
- "sPhoneNumber": "1516",
- "sPhoneInternational": "15149901516",
- "sPhoneExtension": "123",
- "sPhoneE164": "+15149901516"
}, - "fkiSecretquestionID": 7,
- "sUserSecretresponse": "Montreal General Hospital",
- "fkiModuleIDForm": 40,
- "eUserType": "EzsignUser",
- "eUserLogintype": "Password",
- "sUserFirstname": "John",
- "sUserLastname": "Doe",
- "sUserLoginname": "JohnDoe",
- "sUserJobtitle": "Sales Representative",
- "eUserEzsignaccess": "PaidByOffice",
- "bUserIsactive": true,
- "bUserValidatebyadministration": false,
- "bUserValidatebydirector": false,
- "bUserAttachmentautoverified": true,
- "bUserChangepassword": true
}
]
}
{- "mPayload": {
- "a_pkiUserID": [
- 70
]
}, - "objDebugPayload": {
- "iVersionMin": 1,
- "iVersionMax": 2,
- "a_RequiredPermission": [
- 117
], - "bVersionDeprecated": false,
- "dtResponseDate": "2020-12-31 23:59:59"
}, - "objDebug": {
- "sMemoryUsage": "11,923MB",
- "sRunTime": "0.6084s",
- "iSQLSelects": 3,
- "iSQLQueries": 6,
- "a_objSQLQuery": [
- {
- "sQuery": "SELECT * FROM table",
- "fDuration": 0.0001
}, - {
- "sQuery": "SELECT * FROM table",
- "fDuration": 0.0001
}
]
}
}
pkiUserID required | integer (Field-pkiUserID) >= 0 Example: 70 The unique ID of the User |
required | object (user-RequestCompound) A User Object and children |
{- "objUser": {
- "pkiUserID": 70,
- "fkiAgentID": 1,
- "fkiBrokerID": 26,
- "fkiAssistantID": 1,
- "fkiEmployeeID": 31,
- "fkiCompanyIDDefault": 1,
- "fkiDepartmentIDDefault": 21,
- "fkiTimezoneID": 247,
- "fkiLanguageID": 2,
- "objEmail": {
- "pkiEmailID": 22,
- "fkiEmailtypeID": 1,
- "sEmailAddress": "email@example.com"
}, - "fkiBillingentityinternalID": 1,
- "objPhoneHome": {
- "pkiPhoneID": 1,
- "fkiPhonetypeID": 1,
- "ePhoneType": "Local",
- "sPhoneRegion": "514",
- "sPhoneExchange": "990",
- "sPhoneNumber": "1516",
- "sPhoneInternational": "15149901516",
- "sPhoneExtension": "123",
- "sPhoneE164": "+15149901516"
}, - "objPhoneSMS": {
- "pkiPhoneID": 1,
- "fkiPhonetypeID": 1,
- "ePhoneType": "Local",
- "sPhoneRegion": "514",
- "sPhoneExchange": "990",
- "sPhoneNumber": "1516",
- "sPhoneInternational": "15149901516",
- "sPhoneExtension": "123",
- "sPhoneE164": "+15149901516"
}, - "fkiSecretquestionID": 7,
- "sUserSecretresponse": "Montreal General Hospital",
- "fkiModuleIDForm": 40,
- "eUserType": "EzsignUser",
- "eUserLogintype": "Password",
- "sUserFirstname": "John",
- "sUserLastname": "Doe",
- "sUserLoginname": "JohnDoe",
- "sUserJobtitle": "Sales Representative",
- "eUserEzsignaccess": "PaidByOffice",
- "bUserIsactive": true,
- "bUserValidatebyadministration": false,
- "bUserValidatebydirector": false,
- "bUserAttachmentautoverified": true,
- "bUserChangepassword": true
}
}
{- "objDebugPayload": {
- "iVersionMin": 1,
- "iVersionMax": 2,
- "a_RequiredPermission": [
- 117
], - "bVersionDeprecated": false,
- "dtResponseDate": "2020-12-31 23:59:59"
}, - "objDebug": {
- "sMemoryUsage": "11,923MB",
- "sRunTime": "0.6084s",
- "iSQLSelects": 3,
- "iSQLQueries": 6,
- "a_objSQLQuery": [
- {
- "sQuery": "SELECT * FROM table",
- "fDuration": 0.0001
}, - {
- "sQuery": "SELECT * FROM table",
- "fDuration": 0.0001
}
]
}
}
Using this endpoint, you can edit multiple Permissions at the same time.
pkiUserID required | integer (Field-pkiUserID) >= 0 Example: 70 The unique ID of the User |
required | Array of objects (permission-RequestCompound) |
{- "a_objPermission": [
- {
- "pkiPermissionID": 31,
- "fkiUserID": 70,
- "fkiApikeyID": 99,
- "fkiUsergroupID": 2,
- "fkiCompanyID": 1,
- "fkiModulesectionID": 53
}
]
}
{- "mPayload": {
- "a_pkiPermissionID": [
- 31
]
}, - "objDebugPayload": {
- "iVersionMin": 1,
- "iVersionMax": 2,
- "a_RequiredPermission": [
- 117
], - "bVersionDeprecated": false,
- "dtResponseDate": "2020-12-31 23:59:59"
}, - "objDebug": {
- "sMemoryUsage": "11,923MB",
- "sRunTime": "0.6084s",
- "iSQLSelects": 3,
- "iSQLQueries": 6,
- "a_objSQLQuery": [
- {
- "sQuery": "SELECT * FROM table",
- "fDuration": 0.0001
}, - {
- "sQuery": "SELECT * FROM table",
- "fDuration": 0.0001
}
]
}
}
pkiUserID required | integer (Field-pkiUserID) >= 0 Example: 70 The unique ID of the User |
{- "mPayload": {
- "a_objUsergroupexternal": [
- {
- "pkiUsergroupexternalID": 16,
- "sUsergroupexternalName": "Administrators",
- "sUsergroupexternalID": "5140-1542"
}
]
}, - "objDebugPayload": {
- "iVersionMin": 1,
- "iVersionMax": 2,
- "a_RequiredPermission": [
- 117
], - "bVersionDeprecated": false,
- "dtResponseDate": "2020-12-31 23:59:59"
}, - "objDebug": {
- "sMemoryUsage": "11,923MB",
- "sRunTime": "0.6084s",
- "iSQLSelects": 3,
- "iSQLQueries": 6,
- "a_objSQLQuery": [
- {
- "sQuery": "SELECT * FROM table",
- "fDuration": 0.0001
}, - {
- "sQuery": "SELECT * FROM table",
- "fDuration": 0.0001
}
]
}
}
pkiUserID required | integer (Field-pkiUserID) >= 0 Example: 70 The unique ID of the User |
{- "mPayload": {
- "a_objUsergroup": [
- {
- "pkiUsergroupID": 2,
- "objUsergroupName": {
- "sUsergroupName1": "Direction",
- "sUsergroupName2": "Management"
}, - "sUsergroupNameX": "Administration"
}
]
}, - "objDebugPayload": {
- "iVersionMin": 1,
- "iVersionMax": 2,
- "a_RequiredPermission": [
- 117
], - "bVersionDeprecated": false,
- "dtResponseDate": "2020-12-31 23:59:59"
}, - "objDebug": {
- "sMemoryUsage": "11,923MB",
- "sRunTime": "0.6084s",
- "iSQLSelects": 3,
- "iSQLQueries": 6,
- "a_objSQLQuery": [
- {
- "sQuery": "SELECT * FROM table",
- "fDuration": 0.0001
}, - {
- "sQuery": "SELECT * FROM table",
- "fDuration": 0.0001
}
]
}
}
pkiUserID required | integer (Field-pkiUserID) >= 0 Example: 70 The unique ID of the User |
{- "mPayload": {
- "objUser": {
- "pkiUserID": 70,
- "fkiAgentID": 1,
- "fkiBrokerID": 26,
- "fkiAssistantID": 1,
- "fkiEmployeeID": 31,
- "fkiCompanyIDDefault": 1,
- "sCompanyNameX": "Acme inc.",
- "fkiDepartmentIDDefault": 21,
- "sDepartmentNameX": "Head Office",
- "fkiTimezoneID": 247,
- "sTimezoneName": "Default",
- "fkiLanguageID": 2,
- "sLanguageNameX": "English",
- "objEmail": {
- "pkiEmailID": 22,
- "fkiEmailtypeID": 1,
- "sEmailAddress": "email@example.com"
}, - "fkiBillingentityinternalID": 1,
- "sBillingentityinternalDescriptionX": "Default",
- "objPhoneHome": {
- "pkiPhoneID": 1,
- "fkiPhonetypeID": 1,
- "ePhoneType": "Local",
- "sPhoneE164": "+15149901516",
- "sPhoneExtension": "123",
- "bPhoneInternational": true
}, - "objPhoneSMS": {
- "pkiPhoneID": 1,
- "fkiPhonetypeID": 1,
- "ePhoneType": "Local",
- "sPhoneE164": "+15149901516",
- "sPhoneExtension": "123",
- "bPhoneInternational": true
}, - "fkiSecretquestionID": 7,
- "fkiModuleIDForm": 40,
- "sModuleNameX": "Purchase",
- "eUserOrigin": "BuiltIn",
- "eUserType": "EzsignUser",
- "eUserLogintype": "Password",
- "sUserFirstname": "John",
- "sUserLastname": "Doe",
- "sUserLoginname": "JohnDoe",
- "sUserJobtitle": "Sales Representative",
- "eUserEzsignaccess": "PaidByOffice",
- "dtUserLastlogondate": "2020-12-31 23:59:59",
- "dtUserPasswordchanged": "2020-12-31 23:59:59",
- "dtUserEzsignprepaidexpiration": "2020-12-31",
- "bUserIsactive": true,
- "bUserValidatebyadministration": false,
- "bUserValidatebydirector": false,
- "bUserAttachmentautoverified": true,
- "bUserChangepassword": true,
- "objAudit": {
- "objAuditdetailCreated": {
- "fkiUserID": 70,
- "fkiApikeyID": 99,
- "sUserLoginname": "JohnDoe",
- "sUserLastname": "Doe",
- "sUserFirstname": "John",
- "sApikeyDescriptionX": "Project X",
- "dtAuditdetailDate": "2020-12-31 23:59:59"
}, - "objAuditdetailModified": {
- "fkiUserID": 70,
- "fkiApikeyID": 99,
- "sUserLoginname": "JohnDoe",
- "sUserLastname": "Doe",
- "sUserFirstname": "John",
- "sApikeyDescriptionX": "Project X",
- "dtAuditdetailDate": "2020-12-31 23:59:59"
}
}
}
}, - "objDebugPayload": {
- "iVersionMin": 1,
- "iVersionMax": 2,
- "a_RequiredPermission": [
- 117
], - "bVersionDeprecated": false,
- "dtResponseDate": "2020-12-31 23:59:59"
}, - "objDebug": {
- "sMemoryUsage": "11,923MB",
- "sRunTime": "0.6084s",
- "iSQLSelects": 3,
- "iSQLQueries": 6,
- "a_objSQLQuery": [
- {
- "sQuery": "SELECT * FROM table",
- "fDuration": 0.0001
}, - {
- "sQuery": "SELECT * FROM table",
- "fDuration": 0.0001
}
]
}
}
pkiUserID required | integer (Field-pkiUserID) >= 0 Example: 70 The unique ID of the User |
{- "mPayload": {
- "a_objApikey": [
- {
- "pkiApikeyID": 99,
- "fkiUserID": 70,
- "objApikeyDescription": {
- "sApikeyDescription1": "Projet X",
- "sApikeyDescription2": "Project X"
}, - "objContactName": {
- "sContactFirstname": "John",
- "sContactLastname": "Doe",
- "sContactCompany": "eZmax Solutions Inc."
}, - "sApikeyApikey": "string",
- "sApikeySecret": "string",
- "bApikeyIsactive": true,
- "bApikeyIssigned": true,
- "objAudit": {
- "objAuditdetailCreated": {
- "fkiUserID": 70,
- "fkiApikeyID": 99,
- "sUserLoginname": "JohnDoe",
- "sUserLastname": "Doe",
- "sUserFirstname": "John",
- "sApikeyDescriptionX": "Project X",
- "dtAuditdetailDate": "2020-12-31 23:59:59"
}, - "objAuditdetailModified": {
- "fkiUserID": 70,
- "fkiApikeyID": 99,
- "sUserLoginname": "JohnDoe",
- "sUserLastname": "Doe",
- "sUserFirstname": "John",
- "sApikeyDescriptionX": "Project X",
- "dtAuditdetailDate": "2020-12-31 23:59:59"
}
}
}
]
}, - "objDebugPayload": {
- "iVersionMin": 1,
- "iVersionMax": 2,
- "a_RequiredPermission": [
- 117
], - "bVersionDeprecated": false,
- "dtResponseDate": "2020-12-31 23:59:59"
}, - "objDebug": {
- "sMemoryUsage": "11,923MB",
- "sRunTime": "0.6084s",
- "iSQLSelects": 3,
- "iSQLQueries": 6,
- "a_objSQLQuery": [
- {
- "sQuery": "SELECT * FROM table",
- "fDuration": 0.0001
}, - {
- "sQuery": "SELECT * FROM table",
- "fDuration": 0.0001
}
]
}
}
Effective Permissions refers to the combination of Permissions held by a User and the Permissions associated with the Usergroups they belong to.
pkiUserID required | integer (Field-pkiUserID) >= 0 Example: 70 The unique ID of the User |
{- "mPayload": {
- "a_objModulegroup": [
- {
- "pkiModulegroupID": 46,
- "sModulegroupNameX": "Management",
- "a_objModule": [
- {
- "pkiModuleID": 40,
- "fkiModulegroupID": 46,
- "eModuleInternalname": "Purchases",
- "sModuleNameX": "Purchase",
- "bModuleRegistered": true,
- "bModuleRegisteredapi": true,
- "a_objModulesection": [
- {
- "pkiModulesectionID": 53,
- "fkiModuleID": 40,
- "sModulesectionInternalname": "Access",
- "sModulesectionNameX": "Access",
- "a_objPermission": [
- {
- "pkiPermissionID": null,
- "fkiUserID": null,
- "fkiApikeyID": null,
- "fkiUsergroupID": null,
- "fkiCompanyID": null,
- "fkiModulesectionID": null,
- "sCompanyNameX": null
}
]
}
]
}
]
}
]
}, - "objDebugPayload": {
- "iVersionMin": 1,
- "iVersionMax": 2,
- "a_RequiredPermission": [
- 117
], - "bVersionDeprecated": false,
- "dtResponseDate": "2020-12-31 23:59:59"
}, - "objDebug": {
- "sMemoryUsage": "11,923MB",
- "sRunTime": "0.6084s",
- "iSQLSelects": 3,
- "iSQLQueries": 6,
- "a_objSQLQuery": [
- {
- "sQuery": "SELECT * FROM table",
- "fDuration": 0.0001
}, - {
- "sQuery": "SELECT * FROM table",
- "fDuration": 0.0001
}
]
}
}
pkiUserID required | integer (Field-pkiUserID) >= 0 Example: 70 The unique ID of the User |
{- "mPayload": {
- "a_objModulegroup": [
- {
- "pkiModulegroupID": 46,
- "sModulegroupNameX": "Management",
- "a_objModule": [
- {
- "pkiModuleID": 40,
- "fkiModulegroupID": 46,
- "eModuleInternalname": "Purchases",
- "sModuleNameX": "Purchase",
- "bModuleRegistered": true,
- "bModuleRegisteredapi": true,
- "a_objModulesection": [
- {
- "pkiModulesectionID": 53,
- "fkiModuleID": 40,
- "sModulesectionInternalname": "Access",
- "sModulesectionNameX": "Access",
- "a_objPermission": [
- {
- "pkiPermissionID": null,
- "fkiUserID": null,
- "fkiApikeyID": null,
- "fkiUsergroupID": null,
- "fkiCompanyID": null,
- "fkiModulesectionID": null,
- "sCompanyNameX": null
}
]
}
]
}
]
}
]
}, - "objDebugPayload": {
- "iVersionMin": 1,
- "iVersionMax": 2,
- "a_RequiredPermission": [
- 117
], - "bVersionDeprecated": false,
- "dtResponseDate": "2020-12-31 23:59:59"
}, - "objDebug": {
- "sMemoryUsage": "11,923MB",
- "sRunTime": "0.6084s",
- "iSQLSelects": 3,
- "iSQLQueries": 6,
- "a_objSQLQuery": [
- {
- "sQuery": "SELECT * FROM table",
- "fDuration": 0.0001
}, - {
- "sQuery": "SELECT * FROM table",
- "fDuration": 0.0001
}
]
}
}
pkiUserID required | integer (Field-pkiUserID) >= 0 Example: 70 The unique ID of the User |
{- "mPayload": {
- "a_objSubnet": [
- {
- "pkiSubnetID": 3,
- "fkiUserID": 70,
- "fkiApikeyID": 99,
- "objSubnetDescription": {
- "sSubnetDescription1": "Bureau chef",
- "sSubnetDescription2": "Head office"
}, - "iSubnetNetwork": 134744064,
- "iSubnetMask": 4294967040
}
]
}, - "objDebugPayload": {
- "iVersionMin": 1,
- "iVersionMax": 2,
- "a_RequiredPermission": [
- 117
], - "bVersionDeprecated": false,
- "dtResponseDate": "2020-12-31 23:59:59"
}, - "objDebug": {
- "sMemoryUsage": "11,923MB",
- "sRunTime": "0.6084s",
- "iSQLSelects": 3,
- "iSQLQueries": 6,
- "a_objSQLQuery": [
- {
- "sQuery": "SELECT * FROM table",
- "fDuration": 0.0001
}, - {
- "sQuery": "SELECT * FROM table",
- "fDuration": 0.0001
}
]
}
}
Enum values that can be filtered in query parameter sFilter:
Variable | Valid values |
---|---|
eUserType | AgentBroker Assistant Employee EzsignUser Normal |
eUserOrigin | BuiltIn External |
eUserEzsignaccess | No PaidByOffice PerDocument Prepaid |
eOrderBy | string Enum: "pkiUserID_ASC" "pkiUserID_DESC" "sUserFirstname_ASC" "sUserFirstname_DESC" "sUserLastname_ASC" … 15 more Specify how you want the results to be sorted |
iRowMax | integer (Field-iRowMax) [ 1 .. 10000 ] Example: iRowMax=100 The maximum numbers of results to be returned. When the content-type is application/json there is an implicit default of 10 000. When it's application/vnd.openxmlformats-officedocument.spreadsheetml.sheet the is no implicit default so if you do not specify iRowMax, all records will be returned. |
iRowOffset | integer (Field-iRowOffset) >= 0 Default: 0 Example: iRowOffset=0 The starting element from where to start retrieving the results. For example if you started at iRowOffset=0 and asked for iRowMax=100, to get the next 100 results, you could specify iRowOffset=100&iRowMax=100, |
sFilter | string (Field-sFilter) Example: sFilter=bField1 eq true and iField2 gte 0 and iField2 lte 1000 and sField3 eq 'Other' and eField4 eq 'Paid' and sField5 like '%needle%' and iField6 in '1,2,3' and dtField7 rg '=m,=3mm' The filter to apply to the request to limit results. |
Accept-Language | string (Header-Accept-Language) Enum: "*" "en" "fr" Example: en The language of the returned content.
|
{- "mPayload": {
- "a_objUser": [
- {
- "pkiUserID": 70,
- "sUserFirstname": "John",
- "sUserLastname": "Doe",
- "sUserLoginname": "JohnDoe",
- "bUserIsactive": true,
- "eUserType": "EzsignUser",
- "eUserOrigin": "BuiltIn",
- "eUserEzsignaccess": "PaidByOffice",
- "dtUserEzsignprepaidexpiration": "2020-12-31",
- "sEmailAddress": "email@example.com",
- "sUserJobtitle": "Sales Representative"
}
], - "iRowReturned": 100,
- "iRowFiltered": 533
}, - "objDebugPayload": {
- "iVersionMin": 1,
- "iVersionMax": 2,
- "a_RequiredPermission": [
- 117
], - "bVersionDeprecated": false,
- "dtResponseDate": "2020-12-31 23:59:59",
- "a_Filter": {
- "a_AutoType": {
- "property1": "string",
- "property2": "string"
}, - "a_AutoTypeHaving": {
- "property1": "string",
- "property2": "string"
}, - "a_Enum": {
- "property1": {
- "property1": "string",
- "property2": "string"
}, - "property2": {
- "property1": "string",
- "property2": "string"
}
}
}, - "a_OrderBy": {
- "property1": "string",
- "property2": "string"
}, - "iRowMax": 100,
- "iRowOffset": 0
}, - "objDebug": {
- "sMemoryUsage": "11,923MB",
- "sRunTime": "0.6084s",
- "iSQLSelects": 3,
- "iSQLQueries": 6,
- "a_objSQLQuery": [
- {
- "sQuery": "SELECT * FROM table",
- "fDuration": 0.0001
}, - {
- "sQuery": "SELECT * FROM table",
- "fDuration": 0.0001
}
]
}
}
Get the list of User to be used in a dropdown or autocomplete control.
sSelector required | string Enum: "AgentBrokerEmployeeEzsignUserNormal" "AgentBrokerEmployeeNormalBuiltIn" "AgentBrokerEzsignuserNormal" "ClonableUsers" "EzsignuserBuiltIn" … 2 more The type of Users to return |
eFilterActive | string Default: "Active" Enum: "All" "Active" "Inactive" Specify which results we want to display. |
sQuery | string Allow to filter the returned results |
Accept-Language | string (Header-Accept-Language) Enum: "*" "en" "fr" Example: en The language of the returned content.
|
{- "mPayload": {
- "a_objUser": [
- {
- "eUserType": "EzsignUser",
- "sUserName": "Default",
- "pkiUserID": 70,
- "bUserIsactive": true
}
]
}, - "objDebugPayload": {
- "iVersionMin": 1,
- "iVersionMax": 2,
- "a_RequiredPermission": [
- 117
], - "bVersionDeprecated": false,
- "dtResponseDate": "2020-12-31 23:59:59"
}, - "objDebug": {
- "sMemoryUsage": "11,923MB",
- "sRunTime": "0.6084s",
- "iSQLSelects": 3,
- "iSQLQueries": 6,
- "a_objSQLQuery": [
- {
- "sQuery": "SELECT * FROM table",
- "fDuration": 0.0001
}, - {
- "sQuery": "SELECT * FROM table",
- "fDuration": 0.0001
}
]
}
}
Send the password reset email
pkiUserID required | integer (Field-pkiUserID) >= 0 Example: 70 The unique ID of the User |
Request for POST /1/object/user/{pkiUserID}/sendPasswordReset
Intentionally empty for future-proofing
{ }
{- "objDebugPayload": {
- "iVersionMin": 1,
- "iVersionMax": 2,
- "a_RequiredPermission": [
- 117
], - "bVersionDeprecated": false,
- "dtResponseDate": "2020-12-31 23:59:59"
}, - "objDebug": {
- "sMemoryUsage": "11,923MB",
- "sRunTime": "0.6084s",
- "iSQLSelects": 3,
- "iSQLQueries": 6,
- "a_objSQLQuery": [
- {
- "sQuery": "SELECT * FROM table",
- "fDuration": 0.0001
}, - {
- "sQuery": "SELECT * FROM table",
- "fDuration": 0.0001
}
]
}
}
This Webhook will be called when a user is created in the system.
required | object (user-ResponseCompound) A User Object and children to create a complete structure |
required | object (Custom-Webhook-Response) A custom Webhook object |
required | Array of objects (attempt-ResponseCompound) An array containing details of previous attempts that were made to deliver the message. The array is empty if it's the first attempt. |
{- "objUser": {
- "pkiUserID": 70,
- "fkiAgentID": 1,
- "fkiBrokerID": 26,
- "fkiAssistantID": 1,
- "fkiEmployeeID": 31,
- "fkiCompanyIDDefault": 1,
- "sCompanyNameX": "Acme inc.",
- "fkiDepartmentIDDefault": 21,
- "sDepartmentNameX": "Head Office",
- "fkiTimezoneID": 247,
- "sTimezoneName": "Default",
- "fkiLanguageID": 2,
- "sLanguageNameX": "English",
- "objEmail": {
- "pkiEmailID": 22,
- "fkiEmailtypeID": 1,
- "sEmailAddress": "email@example.com"
}, - "fkiBillingentityinternalID": 1,
- "sBillingentityinternalDescriptionX": "Default",
- "objPhoneHome": {
- "pkiPhoneID": 1,
- "fkiPhonetypeID": 1,
- "ePhoneType": "Local",
- "sPhoneE164": "+15149901516",
- "sPhoneExtension": "123",
- "bPhoneInternational": true
}, - "objPhoneSMS": {
- "pkiPhoneID": 1,
- "fkiPhonetypeID": 1,
- "ePhoneType": "Local",
- "sPhoneE164": "+15149901516",
- "sPhoneExtension": "123",
- "bPhoneInternational": true
}, - "fkiSecretquestionID": 7,
- "fkiModuleIDForm": 40,
- "sModuleNameX": "Purchase",
- "eUserOrigin": "BuiltIn",
- "eUserType": "EzsignUser",
- "eUserLogintype": "Password",
- "sUserFirstname": "John",
- "sUserLastname": "Doe",
- "sUserLoginname": "JohnDoe",
- "sUserJobtitle": "Sales Representative",
- "eUserEzsignaccess": "PaidByOffice",
- "dtUserLastlogondate": "2020-12-31 23:59:59",
- "dtUserPasswordchanged": "2020-12-31 23:59:59",
- "dtUserEzsignprepaidexpiration": "2020-12-31",
- "bUserIsactive": true,
- "bUserValidatebyadministration": false,
- "bUserValidatebydirector": false,
- "bUserAttachmentautoverified": true,
- "bUserChangepassword": true,
- "objAudit": {
- "objAuditdetailCreated": {
- "fkiUserID": 70,
- "fkiApikeyID": 99,
- "sUserLoginname": "JohnDoe",
- "sUserLastname": "Doe",
- "sUserFirstname": "John",
- "sApikeyDescriptionX": "Project X",
- "dtAuditdetailDate": "2020-12-31 23:59:59"
}, - "objAuditdetailModified": {
- "fkiUserID": 70,
- "fkiApikeyID": 99,
- "sUserLoginname": "JohnDoe",
- "sUserLastname": "Doe",
- "sUserFirstname": "John",
- "sApikeyDescriptionX": "Project X",
- "dtAuditdetailDate": "2020-12-31 23:59:59"
}
}
}, - "objWebhook": {
- "pksCustomerCode": "demo",
- "bWebhookTest": true,
- "pkiWebhookID": 77,
- "sWebhookDescription": "Import into our system",
- "fkiEzsignfoldertypeID": 5,
- "sEzsignfoldertypeNameX": "Default",
- "eWebhookModule": "Ezsign",
- "eWebhookEzsignevent": "FolderCompleted",
- "eWebhookManagementevent": "UserCreated",
- "sWebhookEmailfailed": "email@example.com",
- "sWebhookApikey": "string",
- "sWebhookSecret": "string",
- "bWebhookIsactive": true,
- "bWebhookIssigned": true,
- "bWebhookSkipsslvalidation": false,
- "objAudit": {
- "objAuditdetailCreated": {
- "fkiUserID": 70,
- "fkiApikeyID": 99,
- "sUserLoginname": "JohnDoe",
- "sUserLastname": "Doe",
- "sUserFirstname": "John",
- "sApikeyDescriptionX": "Project X",
- "dtAuditdetailDate": "2020-12-31 23:59:59"
}, - "objAuditdetailModified": {
- "fkiUserID": 70,
- "fkiApikeyID": 99,
- "sUserLoginname": "JohnDoe",
- "sUserLastname": "Doe",
- "sUserFirstname": "John",
- "sApikeyDescriptionX": "Project X",
- "dtAuditdetailDate": "2020-12-31 23:59:59"
}
}, - "sWebhookEvent": "Ezsign-DocumentCompleted",
- "a_objWebhookheader": [
- {
- "pkiWebhookheaderID": 77,
- "fkiWebhookID": 77,
- "sWebhookheaderName": "Authorization",
- "sWebhookheaderValue": "d75fca0e12b6c671e7f6d4df0cf59e4e"
}
]
}, - "a_objAttempt": [
- {
- "dtAttemptStart": "2020-12-31 23:59:59",
- "sAttemptResult": "Success",
- "iAttemptDuration": 1
}
]
}
The endpoint allows to create one or many elements at once.
required | Array of objects (usergroup-RequestCompound) non-empty |
{- "a_objUsergroup": [
- {
- "pkiUsergroupID": 2,
- "objUsergroupName": {
- "sUsergroupName1": "Direction",
- "sUsergroupName2": "Management"
}
}
]
}
{- "mPayload": {
- "a_pkiUsergroupID": [
- 2
]
}, - "objDebugPayload": {
- "iVersionMin": 1,
- "iVersionMax": 2,
- "a_RequiredPermission": [
- 117
], - "bVersionDeprecated": false,
- "dtResponseDate": "2020-12-31 23:59:59"
}, - "objDebug": {
- "sMemoryUsage": "11,923MB",
- "sRunTime": "0.6084s",
- "iSQLSelects": 3,
- "iSQLQueries": 6,
- "a_objSQLQuery": [
- {
- "sQuery": "SELECT * FROM table",
- "fDuration": 0.0001
}, - {
- "sQuery": "SELECT * FROM table",
- "fDuration": 0.0001
}
]
}
}
pkiUsergroupID required | integer (Field-pkiUsergroupID) [ 0 .. 255 ] Example: 2 The unique ID of the Usergroup |
required | object (usergroup-RequestCompound) A Usergroup Object and children |
{- "objUsergroup": {
- "pkiUsergroupID": 2,
- "objUsergroupName": {
- "sUsergroupName1": "Direction",
- "sUsergroupName2": "Management"
}
}
}
{- "objDebugPayload": {
- "iVersionMin": 1,
- "iVersionMax": 2,
- "a_RequiredPermission": [
- 117
], - "bVersionDeprecated": false,
- "dtResponseDate": "2020-12-31 23:59:59"
}, - "objDebug": {
- "sMemoryUsage": "11,923MB",
- "sRunTime": "0.6084s",
- "iSQLSelects": 3,
- "iSQLQueries": 6,
- "a_objSQLQuery": [
- {
- "sQuery": "SELECT * FROM table",
- "fDuration": 0.0001
}, - {
- "sQuery": "SELECT * FROM table",
- "fDuration": 0.0001
}
]
}
}
Using this endpoint, you can edit multiple Permissions at the same time.
pkiUsergroupID required | integer (Field-pkiUsergroupID) [ 0 .. 255 ] Example: 2 The unique ID of the Usergroup |
required | Array of objects (permission-RequestCompound) |
{- "a_objPermission": [
- {
- "pkiPermissionID": 31,
- "fkiUserID": 70,
- "fkiApikeyID": 99,
- "fkiUsergroupID": 2,
- "fkiCompanyID": 1,
- "fkiModulesectionID": 53
}
]
}
{- "mPayload": {
- "a_pkiPermissionID": [
- 31
]
}, - "objDebugPayload": {
- "iVersionMin": 1,
- "iVersionMax": 2,
- "a_RequiredPermission": [
- 117
], - "bVersionDeprecated": false,
- "dtResponseDate": "2020-12-31 23:59:59"
}, - "objDebug": {
- "sMemoryUsage": "11,923MB",
- "sRunTime": "0.6084s",
- "iSQLSelects": 3,
- "iSQLQueries": 6,
- "a_objSQLQuery": [
- {
- "sQuery": "SELECT * FROM table",
- "fDuration": 0.0001
}, - {
- "sQuery": "SELECT * FROM table",
- "fDuration": 0.0001
}
]
}
}
Edit multiple Usergroupdelegations
pkiUsergroupID required | integer (Field-pkiUsergroupID) [ 0 .. 255 ] Example: 2 The unique ID of the Usergroup |
required | Array of objects (usergroupdelegation-RequestCompound) |
{- "a_objUsergroupdelegation": [
- {
- "pkiUsergroupdelegationID": 141,
- "fkiUsergroupID": 2,
- "fkiUserID": 70
}
]
}
{- "mPayload": {
- "a_pkiUsergroupdelegationID": [
- 141
]
}, - "objDebugPayload": {
- "iVersionMin": 1,
- "iVersionMax": 2,
- "a_RequiredPermission": [
- 117
], - "bVersionDeprecated": false,
- "dtResponseDate": "2020-12-31 23:59:59"
}, - "objDebug": {
- "sMemoryUsage": "11,923MB",
- "sRunTime": "0.6084s",
- "iSQLSelects": 3,
- "iSQLQueries": 6,
- "a_objSQLQuery": [
- {
- "sQuery": "SELECT * FROM table",
- "fDuration": 0.0001
}, - {
- "sQuery": "SELECT * FROM table",
- "fDuration": 0.0001
}
]
}
}
Using this endpoint, you can edit multiple Usergroupmemberships at the same time.
pkiUsergroupID required | integer (Field-pkiUsergroupID) [ 0 .. 255 ] Example: 2 The unique ID of the Usergroup |
required | Array of objects (usergroupmembership-RequestCompound) |
{- "a_objUsergroupmembership": [
- {
- "pkiUsergroupmembershipID": 21,
- "fkiUsergroupID": 2,
- "fkiUserID": 70,
- "fkiUsergroupexternalID": 16
}
]
}
{- "mPayload": {
- "a_pkiUsergroupmembershipID": [
- 21
]
}, - "objDebugPayload": {
- "iVersionMin": 1,
- "iVersionMax": 2,
- "a_RequiredPermission": [
- 117
], - "bVersionDeprecated": false,
- "dtResponseDate": "2020-12-31 23:59:59"
}, - "objDebug": {
- "sMemoryUsage": "11,923MB",
- "sRunTime": "0.6084s",
- "iSQLSelects": 3,
- "iSQLQueries": 6,
- "a_objSQLQuery": [
- {
- "sQuery": "SELECT * FROM table",
- "fDuration": 0.0001
}, - {
- "sQuery": "SELECT * FROM table",
- "fDuration": 0.0001
}
]
}
}
pkiUsergroupID required | integer (Field-pkiUsergroupID) [ 0 .. 255 ] Example: 2 The unique ID of the Usergroup |
{- "mPayload": {
- "objUsergroup": {
- "pkiUsergroupID": 2,
- "objUsergroupName": {
- "sUsergroupName1": "Direction",
- "sUsergroupName2": "Management"
}, - "sUsergroupNameX": "Administration"
}
}, - "objDebugPayload": {
- "iVersionMin": 1,
- "iVersionMax": 2,
- "a_RequiredPermission": [
- 117
], - "bVersionDeprecated": false,
- "dtResponseDate": "2020-12-31 23:59:59"
}, - "objDebug": {
- "sMemoryUsage": "11,923MB",
- "sRunTime": "0.6084s",
- "iSQLSelects": 3,
- "iSQLQueries": 6,
- "a_objSQLQuery": [
- {
- "sQuery": "SELECT * FROM table",
- "fDuration": 0.0001
}, - {
- "sQuery": "SELECT * FROM table",
- "fDuration": 0.0001
}
]
}
}
pkiUsergroupID required | integer (Field-pkiUsergroupID) [ 0 .. 255 ] Example: 2 The unique ID of the Usergroup |
{- "mPayload": {
- "a_objModulegroup": [
- {
- "pkiModulegroupID": 46,
- "sModulegroupNameX": "Management",
- "a_objModule": [
- {
- "pkiModuleID": 40,
- "fkiModulegroupID": 46,
- "eModuleInternalname": "Purchases",
- "sModuleNameX": "Purchase",
- "bModuleRegistered": true,
- "bModuleRegisteredapi": true,
- "a_objModulesection": [
- {
- "pkiModulesectionID": 53,
- "fkiModuleID": 40,
- "sModulesectionInternalname": "Access",
- "sModulesectionNameX": "Access",
- "a_objPermission": [
- {
- "pkiPermissionID": null,
- "fkiUserID": null,
- "fkiApikeyID": null,
- "fkiUsergroupID": null,
- "fkiCompanyID": null,
- "fkiModulesectionID": null,
- "sCompanyNameX": null
}
]
}
]
}
]
}
]
}, - "objDebugPayload": {
- "iVersionMin": 1,
- "iVersionMax": 2,
- "a_RequiredPermission": [
- 117
], - "bVersionDeprecated": false,
- "dtResponseDate": "2020-12-31 23:59:59"
}, - "objDebug": {
- "sMemoryUsage": "11,923MB",
- "sRunTime": "0.6084s",
- "iSQLSelects": 3,
- "iSQLQueries": 6,
- "a_objSQLQuery": [
- {
- "sQuery": "SELECT * FROM table",
- "fDuration": 0.0001
}, - {
- "sQuery": "SELECT * FROM table",
- "fDuration": 0.0001
}
]
}
}
pkiUsergroupID required | integer (Field-pkiUsergroupID) [ 0 .. 255 ] Example: 2 The unique ID of the Usergroup |
{- "mPayload": {
- "a_objUsergroupdelegation": [
- {
- "pkiUsergroupdelegationID": 141,
- "fkiUsergroupID": 2,
- "fkiUserID": 70,
- "sUserFirstname": "John",
- "sUserLastname": "Doe",
- "sUserLoginname": "JohnDoe",
- "sEmailAddress": "email@example.com",
- "sUsergroupNameX": "Administration"
}
]
}, - "objDebugPayload": {
- "iVersionMin": 1,
- "iVersionMax": 2,
- "a_RequiredPermission": [
- 117
], - "bVersionDeprecated": false,
- "dtResponseDate": "2020-12-31 23:59:59"
}, - "objDebug": {
- "sMemoryUsage": "11,923MB",
- "sRunTime": "0.6084s",
- "iSQLSelects": 3,
- "iSQLQueries": 6,
- "a_objSQLQuery": [
- {
- "sQuery": "SELECT * FROM table",
- "fDuration": 0.0001
}, - {
- "sQuery": "SELECT * FROM table",
- "fDuration": 0.0001
}
]
}
}
pkiUsergroupID required | integer (Field-pkiUsergroupID) [ 0 .. 255 ] Example: 2 The unique ID of the Usergroup |
{- "mPayload": {
- "a_objUsergroupmembership": [
- {
- "pkiUsergroupmembershipID": 21,
- "fkiUsergroupID": 2,
- "fkiUserID": 70,
- "fkiUsergroupexternalID": 16,
- "sUserFirstname": "John",
- "sUserLastname": "Doe",
- "sUserLoginname": "JohnDoe",
- "sEmailAddress": "email@example.com",
- "sUsergroupNameX": "Administration",
- "sUsergroupexternalName": "Administrators"
}
]
}, - "objDebugPayload": {
- "iVersionMin": 1,
- "iVersionMax": 2,
- "a_RequiredPermission": [
- 117
], - "bVersionDeprecated": false,
- "dtResponseDate": "2020-12-31 23:59:59"
}, - "objDebug": {
- "sMemoryUsage": "11,923MB",
- "sRunTime": "0.6084s",
- "iSQLSelects": 3,
- "iSQLQueries": 6,
- "a_objSQLQuery": [
- {
- "sQuery": "SELECT * FROM table",
- "fDuration": 0.0001
}, - {
- "sQuery": "SELECT * FROM table",
- "fDuration": 0.0001
}
]
}
}
eOrderBy | string Enum: "pkiUsergroupID_ASC" "pkiUsergroupID_DESC" "sUsergroupNameX_ASC" "sUsergroupNameX_DESC" "iCountUser_ASC" … 1 more Specify how you want the results to be sorted |
iRowMax | integer (Field-iRowMax) [ 1 .. 10000 ] Example: iRowMax=100 The maximum numbers of results to be returned. When the content-type is application/json there is an implicit default of 10 000. When it's application/vnd.openxmlformats-officedocument.spreadsheetml.sheet the is no implicit default so if you do not specify iRowMax, all records will be returned. |
iRowOffset | integer (Field-iRowOffset) >= 0 Default: 0 Example: iRowOffset=0 The starting element from where to start retrieving the results. For example if you started at iRowOffset=0 and asked for iRowMax=100, to get the next 100 results, you could specify iRowOffset=100&iRowMax=100, |
sFilter | string (Field-sFilter) Example: sFilter=bField1 eq true and iField2 gte 0 and iField2 lte 1000 and sField3 eq 'Other' and eField4 eq 'Paid' and sField5 like '%needle%' and iField6 in '1,2,3' and dtField7 rg '=m,=3mm' The filter to apply to the request to limit results. |
Accept-Language | string (Header-Accept-Language) Enum: "*" "en" "fr" Example: en The language of the returned content.
|
{- "mPayload": {
- "a_objUsergroup": [
- {
- "pkiUsergroupID": 2,
- "sUsergroupNameX": "Administration",
- "iCountUser": 15
}
], - "iRowReturned": 100,
- "iRowFiltered": 533
}, - "objDebugPayload": {
- "iVersionMin": 1,
- "iVersionMax": 2,
- "a_RequiredPermission": [
- 117
], - "bVersionDeprecated": false,
- "dtResponseDate": "2020-12-31 23:59:59",
- "a_Filter": {
- "a_AutoType": {
- "property1": "string",
- "property2": "string"
}, - "a_AutoTypeHaving": {
- "property1": "string",
- "property2": "string"
}, - "a_Enum": {
- "property1": {
- "property1": "string",
- "property2": "string"
}, - "property2": {
- "property1": "string",
- "property2": "string"
}
}
}, - "a_OrderBy": {
- "property1": "string",
- "property2": "string"
}, - "iRowMax": 100,
- "iRowOffset": 0
}, - "objDebug": {
- "sMemoryUsage": "11,923MB",
- "sRunTime": "0.6084s",
- "iSQLSelects": 3,
- "iSQLQueries": 6,
- "a_objSQLQuery": [
- {
- "sQuery": "SELECT * FROM table",
- "fDuration": 0.0001
}, - {
- "sQuery": "SELECT * FROM table",
- "fDuration": 0.0001
}
]
}
}
Get the list of Usergroup to be used in a dropdown or autocomplete control.
sSelector required | string Enum: "All" "AllButEveryone" The type of Usergroups to return |
eFilterActive | string Default: "Active" Enum: "All" "Active" "Inactive" Specify which results we want to display. |
sQuery | string Allow to filter the returned results |
Accept-Language | string (Header-Accept-Language) Enum: "*" "en" "fr" Example: en The language of the returned content.
|
{- "mPayload": {
- "a_objUsergroup": [
- {
- "sUsergroupNameX": "Administration",
- "pkiUsergroupID": 2,
- "bUsergroupIsactive": true
}
]
}, - "objDebugPayload": {
- "iVersionMin": 1,
- "iVersionMax": 2,
- "a_RequiredPermission": [
- 117
], - "bVersionDeprecated": false,
- "dtResponseDate": "2020-12-31 23:59:59"
}, - "objDebug": {
- "sMemoryUsage": "11,923MB",
- "sRunTime": "0.6084s",
- "iSQLSelects": 3,
- "iSQLQueries": 6,
- "a_objSQLQuery": [
- {
- "sQuery": "SELECT * FROM table",
- "fDuration": 0.0001
}, - {
- "sQuery": "SELECT * FROM table",
- "fDuration": 0.0001
}
]
}
}
The endpoint allows to create one or many elements at once.
required | Array of objects (usergroupdelegation-RequestCompound) non-empty |
{- "a_objUsergroupdelegation": [
- {
- "pkiUsergroupdelegationID": 141,
- "fkiUsergroupID": 2,
- "fkiUserID": 70
}
]
}
{- "mPayload": {
- "a_pkiUsergroupdelegationID": [
- 141
]
}, - "objDebugPayload": {
- "iVersionMin": 1,
- "iVersionMax": 2,
- "a_RequiredPermission": [
- 117
], - "bVersionDeprecated": false,
- "dtResponseDate": "2020-12-31 23:59:59"
}, - "objDebug": {
- "sMemoryUsage": "11,923MB",
- "sRunTime": "0.6084s",
- "iSQLSelects": 3,
- "iSQLQueries": 6,
- "a_objSQLQuery": [
- {
- "sQuery": "SELECT * FROM table",
- "fDuration": 0.0001
}, - {
- "sQuery": "SELECT * FROM table",
- "fDuration": 0.0001
}
]
}
}
pkiUsergroupdelegationID required | integer (Field-pkiUsergroupdelegationID) [ 0 .. 65535 ] Example: 141 The unique ID of the Usergroupdelegation |
{- "objDebugPayload": {
- "iVersionMin": 1,
- "iVersionMax": 2,
- "a_RequiredPermission": [
- 117
], - "bVersionDeprecated": false,
- "dtResponseDate": "2020-12-31 23:59:59"
}, - "objDebug": {
- "sMemoryUsage": "11,923MB",
- "sRunTime": "0.6084s",
- "iSQLSelects": 3,
- "iSQLQueries": 6,
- "a_objSQLQuery": [
- {
- "sQuery": "SELECT * FROM table",
- "fDuration": 0.0001
}, - {
- "sQuery": "SELECT * FROM table",
- "fDuration": 0.0001
}
]
}
}
pkiUsergroupdelegationID required | integer (Field-pkiUsergroupdelegationID) [ 0 .. 65535 ] Example: 141 The unique ID of the Usergroupdelegation |
required | object (usergroupdelegation-RequestCompound) A Usergroupdelegation Object and children |
{- "objUsergroupdelegation": {
- "pkiUsergroupdelegationID": 141,
- "fkiUsergroupID": 2,
- "fkiUserID": 70
}
}
{- "objDebugPayload": {
- "iVersionMin": 1,
- "iVersionMax": 2,
- "a_RequiredPermission": [
- 117
], - "bVersionDeprecated": false,
- "dtResponseDate": "2020-12-31 23:59:59"
}, - "objDebug": {
- "sMemoryUsage": "11,923MB",
- "sRunTime": "0.6084s",
- "iSQLSelects": 3,
- "iSQLQueries": 6,
- "a_objSQLQuery": [
- {
- "sQuery": "SELECT * FROM table",
- "fDuration": 0.0001
}, - {
- "sQuery": "SELECT * FROM table",
- "fDuration": 0.0001
}
]
}
}
pkiUsergroupdelegationID required | integer (Field-pkiUsergroupdelegationID) [ 0 .. 65535 ] Example: 141 The unique ID of the Usergroupdelegation |
{- "mPayload": {
- "objUsergroupdelegation": {
- "pkiUsergroupdelegationID": 141,
- "fkiUsergroupID": 2,
- "fkiUserID": 70,
- "sUserFirstname": "John",
- "sUserLastname": "Doe",
- "sUserLoginname": "JohnDoe",
- "sEmailAddress": "email@example.com",
- "sUsergroupNameX": "Administration"
}
}, - "objDebugPayload": {
- "iVersionMin": 1,
- "iVersionMax": 2,
- "a_RequiredPermission": [
- 117
], - "bVersionDeprecated": false,
- "dtResponseDate": "2020-12-31 23:59:59"
}, - "objDebug": {
- "sMemoryUsage": "11,923MB",
- "sRunTime": "0.6084s",
- "iSQLSelects": 3,
- "iSQLQueries": 6,
- "a_objSQLQuery": [
- {
- "sQuery": "SELECT * FROM table",
- "fDuration": 0.0001
}, - {
- "sQuery": "SELECT * FROM table",
- "fDuration": 0.0001
}
]
}
}
The endpoint allows to create one or many elements at once.
required | Array of objects (usergroupexternal-RequestCompound) non-empty |
{- "a_objUsergroupexternal": [
- {
- "pkiUsergroupexternalID": 16,
- "sUsergroupexternalName": "Administrators",
- "sUsergroupexternalID": "5140-1542"
}
]
}
{- "mPayload": {
- "a_pkiUsergroupexternalID": [
- 16
]
}, - "objDebugPayload": {
- "iVersionMin": 1,
- "iVersionMax": 2,
- "a_RequiredPermission": [
- 117
], - "bVersionDeprecated": false,
- "dtResponseDate": "2020-12-31 23:59:59"
}, - "objDebug": {
- "sMemoryUsage": "11,923MB",
- "sRunTime": "0.6084s",
- "iSQLSelects": 3,
- "iSQLQueries": 6,
- "a_objSQLQuery": [
- {
- "sQuery": "SELECT * FROM table",
- "fDuration": 0.0001
}, - {
- "sQuery": "SELECT * FROM table",
- "fDuration": 0.0001
}
]
}
}
pkiUsergroupexternalID required | integer (Field-pkiUsergroupexternalID) [ 0 .. 255 ] Example: 16 The unique ID of the Usergroupexternal |
{- "objDebugPayload": {
- "iVersionMin": 1,
- "iVersionMax": 2,
- "a_RequiredPermission": [
- 117
], - "bVersionDeprecated": false,
- "dtResponseDate": "2020-12-31 23:59:59"
}, - "objDebug": {
- "sMemoryUsage": "11,923MB",
- "sRunTime": "0.6084s",
- "iSQLSelects": 3,
- "iSQLQueries": 6,
- "a_objSQLQuery": [
- {
- "sQuery": "SELECT * FROM table",
- "fDuration": 0.0001
}, - {
- "sQuery": "SELECT * FROM table",
- "fDuration": 0.0001
}
]
}
}
pkiUsergroupexternalID required | integer (Field-pkiUsergroupexternalID) [ 0 .. 255 ] Example: 16 The unique ID of the Usergroupexternal |
required | object (usergroupexternal-RequestCompound) A Usergroupexternal Object and children |
{- "objUsergroupexternal": {
- "pkiUsergroupexternalID": 16,
- "sUsergroupexternalName": "Administrators",
- "sUsergroupexternalID": "5140-1542"
}
}
{- "objDebugPayload": {
- "iVersionMin": 1,
- "iVersionMax": 2,
- "a_RequiredPermission": [
- 117
], - "bVersionDeprecated": false,
- "dtResponseDate": "2020-12-31 23:59:59"
}, - "objDebug": {
- "sMemoryUsage": "11,923MB",
- "sRunTime": "0.6084s",
- "iSQLSelects": 3,
- "iSQLQueries": 6,
- "a_objSQLQuery": [
- {
- "sQuery": "SELECT * FROM table",
- "fDuration": 0.0001
}, - {
- "sQuery": "SELECT * FROM table",
- "fDuration": 0.0001
}
]
}
}
pkiUsergroupexternalID required | integer (Field-pkiUsergroupexternalID) [ 0 .. 255 ] Example: 16 The unique ID of the Usergroupexternal |
{- "mPayload": {
- "a_objUsergroup": [
- {
- "pkiUsergroupID": 2,
- "objUsergroupName": {
- "sUsergroupName1": "Direction",
- "sUsergroupName2": "Management"
}, - "sUsergroupNameX": "Administration"
}
]
}, - "objDebugPayload": {
- "iVersionMin": 1,
- "iVersionMax": 2,
- "a_RequiredPermission": [
- 117
], - "bVersionDeprecated": false,
- "dtResponseDate": "2020-12-31 23:59:59"
}, - "objDebug": {
- "sMemoryUsage": "11,923MB",
- "sRunTime": "0.6084s",
- "iSQLSelects": 3,
- "iSQLQueries": 6,
- "a_objSQLQuery": [
- {
- "sQuery": "SELECT * FROM table",
- "fDuration": 0.0001
}, - {
- "sQuery": "SELECT * FROM table",
- "fDuration": 0.0001
}
]
}
}
pkiUsergroupexternalID required | integer (Field-pkiUsergroupexternalID) [ 0 .. 255 ] Example: 16 The unique ID of the Usergroupexternal |
{- "mPayload": {
- "objUsergroupexternal": {
- "pkiUsergroupexternalID": 16,
- "sUsergroupexternalName": "Administrators",
- "sUsergroupexternalID": "5140-1542"
}
}, - "objDebugPayload": {
- "iVersionMin": 1,
- "iVersionMax": 2,
- "a_RequiredPermission": [
- 117
], - "bVersionDeprecated": false,
- "dtResponseDate": "2020-12-31 23:59:59"
}, - "objDebug": {
- "sMemoryUsage": "11,923MB",
- "sRunTime": "0.6084s",
- "iSQLSelects": 3,
- "iSQLQueries": 6,
- "a_objSQLQuery": [
- {
- "sQuery": "SELECT * FROM table",
- "fDuration": 0.0001
}, - {
- "sQuery": "SELECT * FROM table",
- "fDuration": 0.0001
}
]
}
}
pkiUsergroupexternalID required | integer (Field-pkiUsergroupexternalID) [ 0 .. 255 ] Example: 16 The unique ID of the Usergroupexternal |
{- "mPayload": {
- "a_objUsergroupexternalmembership": [
- {
- "pkiUsergroupexternalmembershipID": 21,
- "fkiUsergroupexternalID": 16,
- "fkiUserID": 70,
- "sUserFirstname": "John",
- "sUserLastname": "Doe",
- "sUserLoginname": "JohnDoe",
- "sEmailAddress": "email@example.com",
- "sUsergroupexternalName": "Administrators"
}
]
}, - "objDebugPayload": {
- "iVersionMin": 1,
- "iVersionMax": 2,
- "a_RequiredPermission": [
- 117
], - "bVersionDeprecated": false,
- "dtResponseDate": "2020-12-31 23:59:59"
}, - "objDebug": {
- "sMemoryUsage": "11,923MB",
- "sRunTime": "0.6084s",
- "iSQLSelects": 3,
- "iSQLQueries": 6,
- "a_objSQLQuery": [
- {
- "sQuery": "SELECT * FROM table",
- "fDuration": 0.0001
}, - {
- "sQuery": "SELECT * FROM table",
- "fDuration": 0.0001
}
]
}
}
eOrderBy | string Enum: "pkiUsergroupexternalID_ASC" "pkiUsergroupexternalID_DESC" "sUsergroupexternalName_ASC" "sUsergroupexternalName_DESC" "sUsergroupexternalID_ASC" … 1 more Specify how you want the results to be sorted |
iRowMax | integer (Field-iRowMax) [ 1 .. 10000 ] Example: iRowMax=100 The maximum numbers of results to be returned. When the content-type is application/json there is an implicit default of 10 000. When it's application/vnd.openxmlformats-officedocument.spreadsheetml.sheet the is no implicit default so if you do not specify iRowMax, all records will be returned. |
iRowOffset | integer (Field-iRowOffset) >= 0 Default: 0 Example: iRowOffset=0 The starting element from where to start retrieving the results. For example if you started at iRowOffset=0 and asked for iRowMax=100, to get the next 100 results, you could specify iRowOffset=100&iRowMax=100, |
sFilter | string (Field-sFilter) Example: sFilter=bField1 eq true and iField2 gte 0 and iField2 lte 1000 and sField3 eq 'Other' and eField4 eq 'Paid' and sField5 like '%needle%' and iField6 in '1,2,3' and dtField7 rg '=m,=3mm' The filter to apply to the request to limit results. |
Accept-Language | string (Header-Accept-Language) Enum: "*" "en" "fr" Example: en The language of the returned content.
|
{- "mPayload": {
- "a_objUsergroupexternal": [
- {
- "pkiUsergroupexternalID": 16,
- "sUsergroupexternalName": "Administrators",
- "sUsergroupexternalID": "5140-1542"
}
], - "iRowReturned": 100,
- "iRowFiltered": 533
}, - "objDebugPayload": {
- "iVersionMin": 1,
- "iVersionMax": 2,
- "a_RequiredPermission": [
- 117
], - "bVersionDeprecated": false,
- "dtResponseDate": "2020-12-31 23:59:59",
- "a_Filter": {
- "a_AutoType": {
- "property1": "string",
- "property2": "string"
}, - "a_AutoTypeHaving": {
- "property1": "string",
- "property2": "string"
}, - "a_Enum": {
- "property1": {
- "property1": "string",
- "property2": "string"
}, - "property2": {
- "property1": "string",
- "property2": "string"
}
}
}, - "a_OrderBy": {
- "property1": "string",
- "property2": "string"
}, - "iRowMax": 100,
- "iRowOffset": 0
}, - "objDebug": {
- "sMemoryUsage": "11,923MB",
- "sRunTime": "0.6084s",
- "iSQLSelects": 3,
- "iSQLQueries": 6,
- "a_objSQLQuery": [
- {
- "sQuery": "SELECT * FROM table",
- "fDuration": 0.0001
}, - {
- "sQuery": "SELECT * FROM table",
- "fDuration": 0.0001
}
]
}
}
Get the list of Usergroupexternal to be used in a dropdown or autocomplete control.
sSelector required | string Value: "All" The type of Usergroupexternals to return |
eFilterActive | string Default: "Active" Enum: "All" "Active" "Inactive" Specify which results we want to display. |
sQuery | string Allow to filter the returned results |
Accept-Language | string (Header-Accept-Language) Enum: "*" "en" "fr" Example: en The language of the returned content.
|
{- "mPayload": {
- "a_objUsergroupexternal": [
- {
- "pkiUsergroupexternalID": 16,
- "sUsergroupexternalName": "Administrators",
- "bUsergroupexternalIsactive": true
}
]
}, - "objDebugPayload": {
- "iVersionMin": 1,
- "iVersionMax": 2,
- "a_RequiredPermission": [
- 117
], - "bVersionDeprecated": false,
- "dtResponseDate": "2020-12-31 23:59:59"
}, - "objDebug": {
- "sMemoryUsage": "11,923MB",
- "sRunTime": "0.6084s",
- "iSQLSelects": 3,
- "iSQLQueries": 6,
- "a_objSQLQuery": [
- {
- "sQuery": "SELECT * FROM table",
- "fDuration": 0.0001
}, - {
- "sQuery": "SELECT * FROM table",
- "fDuration": 0.0001
}
]
}
}
The endpoint allows to create one or many elements at once.
required | Array of objects (usergroupmembership-RequestCompound) non-empty |
{- "a_objUsergroupmembership": [
- {
- "pkiUsergroupmembershipID": 21,
- "fkiUsergroupID": 2,
- "fkiUserID": 70,
- "fkiUsergroupexternalID": 16
}
]
}
{- "mPayload": {
- "a_pkiUsergroupmembershipID": [
- 21
]
}, - "objDebugPayload": {
- "iVersionMin": 1,
- "iVersionMax": 2,
- "a_RequiredPermission": [
- 117
], - "bVersionDeprecated": false,
- "dtResponseDate": "2020-12-31 23:59:59"
}, - "objDebug": {
- "sMemoryUsage": "11,923MB",
- "sRunTime": "0.6084s",
- "iSQLSelects": 3,
- "iSQLQueries": 6,
- "a_objSQLQuery": [
- {
- "sQuery": "SELECT * FROM table",
- "fDuration": 0.0001
}, - {
- "sQuery": "SELECT * FROM table",
- "fDuration": 0.0001
}
]
}
}
pkiUsergroupmembershipID required | integer (Field-pkiUsergroupmembershipID) [ 0 .. 65535 ] Example: 21 The unique ID of the Usergroupmembership |
{- "objDebugPayload": {
- "iVersionMin": 1,
- "iVersionMax": 2,
- "a_RequiredPermission": [
- 117
], - "bVersionDeprecated": false,
- "dtResponseDate": "2020-12-31 23:59:59"
}, - "objDebug": {
- "sMemoryUsage": "11,923MB",
- "sRunTime": "0.6084s",
- "iSQLSelects": 3,
- "iSQLQueries": 6,
- "a_objSQLQuery": [
- {
- "sQuery": "SELECT * FROM table",
- "fDuration": 0.0001
}, - {
- "sQuery": "SELECT * FROM table",
- "fDuration": 0.0001
}
]
}
}
pkiUsergroupmembershipID required | integer (Field-pkiUsergroupmembershipID) [ 0 .. 65535 ] Example: 21 The unique ID of the Usergroupmembership |
required | object (usergroupmembership-RequestCompound) A Usergroupmembership Object and children |
{- "objUsergroupmembership": {
- "pkiUsergroupmembershipID": 21,
- "fkiUsergroupID": 2,
- "fkiUserID": 70,
- "fkiUsergroupexternalID": 16
}
}
{- "objDebugPayload": {
- "iVersionMin": 1,
- "iVersionMax": 2,
- "a_RequiredPermission": [
- 117
], - "bVersionDeprecated": false,
- "dtResponseDate": "2020-12-31 23:59:59"
}, - "objDebug": {
- "sMemoryUsage": "11,923MB",
- "sRunTime": "0.6084s",
- "iSQLSelects": 3,
- "iSQLQueries": 6,
- "a_objSQLQuery": [
- {
- "sQuery": "SELECT * FROM table",
- "fDuration": 0.0001
}, - {
- "sQuery": "SELECT * FROM table",
- "fDuration": 0.0001
}
]
}
}
pkiUsergroupmembershipID required | integer (Field-pkiUsergroupmembershipID) [ 0 .. 65535 ] Example: 21 The unique ID of the Usergroupmembership |
{- "mPayload": {
- "objUsergroupmembership": {
- "pkiUsergroupmembershipID": 21,
- "fkiUsergroupID": 2,
- "fkiUserID": 70,
- "fkiUsergroupexternalID": 16,
- "sUserFirstname": "John",
- "sUserLastname": "Doe",
- "sUserLoginname": "JohnDoe",
- "sEmailAddress": "email@example.com",
- "sUsergroupNameX": "Administration",
- "sUsergroupexternalName": "Administrators"
}
}, - "objDebugPayload": {
- "iVersionMin": 1,
- "iVersionMax": 2,
- "a_RequiredPermission": [
- 117
], - "bVersionDeprecated": false,
- "dtResponseDate": "2020-12-31 23:59:59"
}, - "objDebug": {
- "sMemoryUsage": "11,923MB",
- "sRunTime": "0.6084s",
- "iSQLSelects": 3,
- "iSQLQueries": 6,
- "a_objSQLQuery": [
- {
- "sQuery": "SELECT * FROM table",
- "fDuration": 0.0001
}, - {
- "sQuery": "SELECT * FROM table",
- "fDuration": 0.0001
}
]
}
}
Get the list of Userlogintype to be used in a dropdown or autocomplete control.
sSelector required | string Enum: "All" "Ezsignfoldertype" The type of Userlogintypes to return |
fkiEzsignfoldertypeID | integer (Field-pkiEzsignfoldertypeID) [ 0 .. 65535 ] Example: fkiEzsignfoldertypeID=5 The unique ID of the Ezsignfoldertype. |
eFilterActive | string Default: "Active" Enum: "All" "Active" "Inactive" Specify which results we want to display. |
sQuery | string Allow to filter the returned results |
Accept-Language | string (Header-Accept-Language) Enum: "*" "en" "fr" Example: en The language of the returned content.
|
{- "mPayload": {
- "a_objUserlogintype": [
- {
- "pkiUserlogintypeID": 2,
- "sUserlogintypeDescriptionX": "Email and phone or SMS",
- "bUserlogintypeIsactive": true
}
]
}, - "objDebugPayload": {
- "iVersionMin": 1,
- "iVersionMax": 2,
- "a_RequiredPermission": [
- 117
], - "bVersionDeprecated": false,
- "dtResponseDate": "2020-12-31 23:59:59"
}, - "objDebug": {
- "sMemoryUsage": "11,923MB",
- "sRunTime": "0.6084s",
- "iSQLSelects": 3,
- "iSQLQueries": 6,
- "a_objSQLQuery": [
- {
- "sQuery": "SELECT * FROM table",
- "fDuration": 0.0001
}, - {
- "sQuery": "SELECT * FROM table",
- "fDuration": 0.0001
}
]
}
}
Default values will be used while creating the User. If you need to change those values, you should use the route to edit a User.
pkiUserstagedID required | integer (Field-pkiUserstagedID) [ 1 .. 65535 ] Example: 90 The unique ID of the Userstaged |
Request for POST /1/object/userstaged/{pkiUserstagedID}/createUser
{ }
{- "mPayload": {
- "pkiUserID": 70
}, - "objDebugPayload": {
- "iVersionMin": 1,
- "iVersionMax": 2,
- "a_RequiredPermission": [
- 117
], - "bVersionDeprecated": false,
- "dtResponseDate": "2020-12-31 23:59:59"
}, - "objDebug": {
- "sMemoryUsage": "11,923MB",
- "sRunTime": "0.6084s",
- "iSQLSelects": 3,
- "iSQLQueries": 6,
- "a_objSQLQuery": [
- {
- "sQuery": "SELECT * FROM table",
- "fDuration": 0.0001
}, - {
- "sQuery": "SELECT * FROM table",
- "fDuration": 0.0001
}
]
}
}
pkiUserstagedID required | integer (Field-pkiUserstagedID) [ 1 .. 65535 ] Example: 90 The unique ID of the Userstaged |
{- "objDebugPayload": {
- "iVersionMin": 1,
- "iVersionMax": 2,
- "a_RequiredPermission": [
- 117
], - "bVersionDeprecated": false,
- "dtResponseDate": "2020-12-31 23:59:59"
}, - "objDebug": {
- "sMemoryUsage": "11,923MB",
- "sRunTime": "0.6084s",
- "iSQLSelects": 3,
- "iSQLQueries": 6,
- "a_objSQLQuery": [
- {
- "sQuery": "SELECT * FROM table",
- "fDuration": 0.0001
}, - {
- "sQuery": "SELECT * FROM table",
- "fDuration": 0.0001
}
]
}
}
pkiUserstagedID required | integer (Field-pkiUserstagedID) [ 1 .. 65535 ] Example: 90 The unique ID of the Userstaged |
fkiUserID required | integer (Field-pkiUserID) >= 0 The unique ID of the User |
{- "fkiUserID": 70
}
{- "objDebugPayload": {
- "iVersionMin": 1,
- "iVersionMax": 2,
- "a_RequiredPermission": [
- 117
], - "bVersionDeprecated": false,
- "dtResponseDate": "2020-12-31 23:59:59"
}, - "objDebug": {
- "sMemoryUsage": "11,923MB",
- "sRunTime": "0.6084s",
- "iSQLSelects": 3,
- "iSQLQueries": 6,
- "a_objSQLQuery": [
- {
- "sQuery": "SELECT * FROM table",
- "fDuration": 0.0001
}, - {
- "sQuery": "SELECT * FROM table",
- "fDuration": 0.0001
}
]
}
}
pkiUserstagedID required | integer (Field-pkiUserstagedID) [ 1 .. 65535 ] Example: 90 The unique ID of the Userstaged |
{- "mPayload": {
- "objUserstaged": {
- "pkiUserstagedID": 90,
- "fkiEmailID": 22,
- "sEmailAddress": "email@example.com",
- "sUserstagedFirstname": "Jane",
- "sUserstagedLastname": "Doe",
- "sUserstagedExternalid": "azuread_6b303ca8-9e34-4c21-9a53-0856342dec5e"
}
}, - "objDebugPayload": {
- "iVersionMin": 1,
- "iVersionMax": 2,
- "a_RequiredPermission": [
- 117
], - "bVersionDeprecated": false,
- "dtResponseDate": "2020-12-31 23:59:59"
}, - "objDebug": {
- "sMemoryUsage": "11,923MB",
- "sRunTime": "0.6084s",
- "iSQLSelects": 3,
- "iSQLQueries": 6,
- "a_objSQLQuery": [
- {
- "sQuery": "SELECT * FROM table",
- "fDuration": 0.0001
}, - {
- "sQuery": "SELECT * FROM table",
- "fDuration": 0.0001
}
]
}
}
eOrderBy | string Enum: "pkiUserstagedID_ASC" "pkiUserstagedID_DESC" "sEmailAddress_ASC" "sEmailAddress_DESC" "sUserstagedFirstname_ASC" … 5 more Specify how you want the results to be sorted |
iRowMax | integer (Field-iRowMax) [ 1 .. 10000 ] Example: iRowMax=100 The maximum numbers of results to be returned. When the content-type is application/json there is an implicit default of 10 000. When it's application/vnd.openxmlformats-officedocument.spreadsheetml.sheet the is no implicit default so if you do not specify iRowMax, all records will be returned. |
iRowOffset | integer (Field-iRowOffset) >= 0 Default: 0 Example: iRowOffset=0 The starting element from where to start retrieving the results. For example if you started at iRowOffset=0 and asked for iRowMax=100, to get the next 100 results, you could specify iRowOffset=100&iRowMax=100, |
sFilter | string (Field-sFilter) Example: sFilter=bField1 eq true and iField2 gte 0 and iField2 lte 1000 and sField3 eq 'Other' and eField4 eq 'Paid' and sField5 like '%needle%' and iField6 in '1,2,3' and dtField7 rg '=m,=3mm' The filter to apply to the request to limit results. |
Accept-Language | string (Header-Accept-Language) Enum: "*" "en" "fr" Example: en The language of the returned content.
|
{- "mPayload": {
- "a_objUserstaged": [
- {
- "pkiUserstagedID": 90,
- "sEmailAddress": "email@example.com",
- "sUserstagedFirstname": "Jane",
- "sUserstagedLastname": "Doe",
- "sUserstagedExternalid": "azuread_6b303ca8-9e34-4c21-9a53-0856342dec5e"
}
], - "iRowReturned": 100,
- "iRowFiltered": 533
}, - "objDebugPayload": {
- "iVersionMin": 1,
- "iVersionMax": 2,
- "a_RequiredPermission": [
- 117
], - "bVersionDeprecated": false,
- "dtResponseDate": "2020-12-31 23:59:59",
- "a_Filter": {
- "a_AutoType": {
- "property1": "string",
- "property2": "string"
}, - "a_AutoTypeHaving": {
- "property1": "string",
- "property2": "string"
}, - "a_Enum": {
- "property1": {
- "property1": "string",
- "property2": "string"
}, - "property2": {
- "property1": "string",
- "property2": "string"
}
}
}, - "a_OrderBy": {
- "property1": "string",
- "property2": "string"
}, - "iRowMax": 100,
- "iRowOffset": 0
}, - "objDebug": {
- "sMemoryUsage": "11,923MB",
- "sRunTime": "0.6084s",
- "iSQLSelects": 3,
- "iSQLQueries": 6,
- "a_objSQLQuery": [
- {
- "sQuery": "SELECT * FROM table",
- "fDuration": 0.0001
}, - {
- "sQuery": "SELECT * FROM table",
- "fDuration": 0.0001
}
]
}
}
This Webhook will be called when a Userstaged is created in the system.
required | object (userstaged-ResponseCompound) A Userstaged Object |
required | object (Custom-Webhook-Response) A custom Webhook object |
required | Array of objects (attempt-ResponseCompound) An array containing details of previous attempts that were made to deliver the message. The array is empty if it's the first attempt. |
{- "objUserstaged": {
- "pkiUserstagedID": 90,
- "fkiEmailID": 22,
- "sEmailAddress": "email@example.com",
- "sUserstagedFirstname": "Jane",
- "sUserstagedLastname": "Doe",
- "sUserstagedExternalid": "azuread_6b303ca8-9e34-4c21-9a53-0856342dec5e"
}, - "objWebhook": {
- "pksCustomerCode": "demo",
- "bWebhookTest": true,
- "pkiWebhookID": 77,
- "sWebhookDescription": "Import into our system",
- "fkiEzsignfoldertypeID": 5,
- "sEzsignfoldertypeNameX": "Default",
- "eWebhookModule": "Ezsign",
- "eWebhookEzsignevent": "FolderCompleted",
- "eWebhookManagementevent": "UserCreated",
- "sWebhookEmailfailed": "email@example.com",
- "sWebhookApikey": "string",
- "sWebhookSecret": "string",
- "bWebhookIsactive": true,
- "bWebhookIssigned": true,
- "bWebhookSkipsslvalidation": false,
- "objAudit": {
- "objAuditdetailCreated": {
- "fkiUserID": 70,
- "fkiApikeyID": 99,
- "sUserLoginname": "JohnDoe",
- "sUserLastname": "Doe",
- "sUserFirstname": "John",
- "sApikeyDescriptionX": "Project X",
- "dtAuditdetailDate": "2020-12-31 23:59:59"
}, - "objAuditdetailModified": {
- "fkiUserID": 70,
- "fkiApikeyID": 99,
- "sUserLoginname": "JohnDoe",
- "sUserLastname": "Doe",
- "sUserFirstname": "John",
- "sApikeyDescriptionX": "Project X",
- "dtAuditdetailDate": "2020-12-31 23:59:59"
}
}, - "sWebhookEvent": "Ezsign-DocumentCompleted",
- "a_objWebhookheader": [
- {
- "pkiWebhookheaderID": 77,
- "fkiWebhookID": 77,
- "sWebhookheaderName": "Authorization",
- "sWebhookheaderValue": "d75fca0e12b6c671e7f6d4df0cf59e4e"
}
]
}, - "a_objAttempt": [
- {
- "dtAttemptStart": "2020-12-31 23:59:59",
- "sAttemptResult": "Success",
- "iAttemptDuration": 1
}
]
}
The endpoint allows to create one or many elements at once.
required | Array of objects (variableexpense-RequestCompound) non-empty |
{- "a_objVariableexpense": [
- {
- "pkiVariableexpenseID": 2,
- "sVariableexpenseCode": "EQBUR",
- "objVariableexpenseDescription": {
- "sVariableexpenseDescription1": "Équipements de bureau",
- "sVariableexpenseDescription2": "Office equipment"
}, - "eVariableexpenseTaxable": "Yes",
- "bVariableexpenseIsactive": true
}
]
}
{- "mPayload": {
- "a_pkiVariableexpenseID": [
- 2
]
}, - "objDebugPayload": {
- "iVersionMin": 1,
- "iVersionMax": 2,
- "a_RequiredPermission": [
- 117
], - "bVersionDeprecated": false,
- "dtResponseDate": "2020-12-31 23:59:59"
}, - "objDebug": {
- "sMemoryUsage": "11,923MB",
- "sRunTime": "0.6084s",
- "iSQLSelects": 3,
- "iSQLQueries": 6,
- "a_objSQLQuery": [
- {
- "sQuery": "SELECT * FROM table",
- "fDuration": 0.0001
}, - {
- "sQuery": "SELECT * FROM table",
- "fDuration": 0.0001
}
]
}
}
pkiVariableexpenseID required | integer (Field-pkiVariableexpenseID) [ 1 .. 255 ] Example: 2 The unique ID of the Variableexpense |
required | object (variableexpense-RequestCompound) A Variableexpense Object and children |
{- "objVariableexpense": {
- "pkiVariableexpenseID": 2,
- "sVariableexpenseCode": "EQBUR",
- "objVariableexpenseDescription": {
- "sVariableexpenseDescription1": "Équipements de bureau",
- "sVariableexpenseDescription2": "Office equipment"
}, - "eVariableexpenseTaxable": "Yes",
- "bVariableexpenseIsactive": true
}
}
{- "objDebugPayload": {
- "iVersionMin": 1,
- "iVersionMax": 2,
- "a_RequiredPermission": [
- 117
], - "bVersionDeprecated": false,
- "dtResponseDate": "2020-12-31 23:59:59"
}, - "objDebug": {
- "sMemoryUsage": "11,923MB",
- "sRunTime": "0.6084s",
- "iSQLSelects": 3,
- "iSQLQueries": 6,
- "a_objSQLQuery": [
- {
- "sQuery": "SELECT * FROM table",
- "fDuration": 0.0001
}, - {
- "sQuery": "SELECT * FROM table",
- "fDuration": 0.0001
}
]
}
}
pkiVariableexpenseID required | integer (Field-pkiVariableexpenseID) [ 1 .. 255 ] Example: 2 The unique ID of the Variableexpense |
{- "mPayload": {
- "objVariableexpense": {
- "pkiVariableexpenseID": 2,
- "sVariableexpenseCode": "EQBUR",
- "objVariableexpenseDescription": {
- "sVariableexpenseDescription1": "Équipements de bureau",
- "sVariableexpenseDescription2": "Office equipment"
}, - "eVariableexpenseTaxable": "Yes",
- "bVariableexpenseIsactive": true
}
}, - "objDebugPayload": {
- "iVersionMin": 1,
- "iVersionMax": 2,
- "a_RequiredPermission": [
- 117
], - "bVersionDeprecated": false,
- "dtResponseDate": "2020-12-31 23:59:59"
}, - "objDebug": {
- "sMemoryUsage": "11,923MB",
- "sRunTime": "0.6084s",
- "iSQLSelects": 3,
- "iSQLQueries": 6,
- "a_objSQLQuery": [
- {
- "sQuery": "SELECT * FROM table",
- "fDuration": 0.0001
}, - {
- "sQuery": "SELECT * FROM table",
- "fDuration": 0.0001
}
]
}
}
Enum values that can be filtered in query parameter sFilter:
Variable | Valid values |
---|---|
eVariableexpenseTaxable | Yes No Included |
eOrderBy | string Enum: "pkiVariableexpenseID_ASC" "pkiVariableexpenseID_DESC" "sVariableexpenseCode_ASC" "sVariableexpenseCode_DESC" "sVariableexpenseDescriptionX_ASC" … 5 more Specify how you want the results to be sorted |
iRowMax | integer (Field-iRowMax) [ 1 .. 10000 ] Example: iRowMax=100 The maximum numbers of results to be returned. When the content-type is application/json there is an implicit default of 10 000. When it's application/vnd.openxmlformats-officedocument.spreadsheetml.sheet the is no implicit default so if you do not specify iRowMax, all records will be returned. |
iRowOffset | integer (Field-iRowOffset) >= 0 Default: 0 Example: iRowOffset=0 The starting element from where to start retrieving the results. For example if you started at iRowOffset=0 and asked for iRowMax=100, to get the next 100 results, you could specify iRowOffset=100&iRowMax=100, |
sFilter | string (Field-sFilter) Example: sFilter=bField1 eq true and iField2 gte 0 and iField2 lte 1000 and sField3 eq 'Other' and eField4 eq 'Paid' and sField5 like '%needle%' and iField6 in '1,2,3' and dtField7 rg '=m,=3mm' The filter to apply to the request to limit results. |
Accept-Language | string (Header-Accept-Language) Enum: "*" "en" "fr" Example: en The language of the returned content.
|
{- "mPayload": {
- "a_objVariableexpense": [
- {
- "pkiVariableexpenseID": 2,
- "sVariableexpenseCode": "EQBUR",
- "sVariableexpenseDescriptionX": "Équipements de bureau",
- "eVariableexpenseTaxable": "Yes",
- "bVariableexpenseIsactive": true
}
], - "iRowReturned": 100,
- "iRowFiltered": 533
}, - "objDebugPayload": {
- "iVersionMin": 1,
- "iVersionMax": 2,
- "a_RequiredPermission": [
- 117
], - "bVersionDeprecated": false,
- "dtResponseDate": "2020-12-31 23:59:59",
- "a_Filter": {
- "a_AutoType": {
- "property1": "string",
- "property2": "string"
}, - "a_AutoTypeHaving": {
- "property1": "string",
- "property2": "string"
}, - "a_Enum": {
- "property1": {
- "property1": "string",
- "property2": "string"
}, - "property2": {
- "property1": "string",
- "property2": "string"
}
}
}, - "a_OrderBy": {
- "property1": "string",
- "property2": "string"
}, - "iRowMax": 100,
- "iRowOffset": 0
}, - "objDebug": {
- "sMemoryUsage": "11,923MB",
- "sRunTime": "0.6084s",
- "iSQLSelects": 3,
- "iSQLQueries": 6,
- "a_objSQLQuery": [
- {
- "sQuery": "SELECT * FROM table",
- "fDuration": 0.0001
}, - {
- "sQuery": "SELECT * FROM table",
- "fDuration": 0.0001
}
]
}
}
Get the list of Variableexpense to be used in a dropdown or autocomplete control.
sSelector required | string Value: "All" The type of Variableexpenses to return |
eFilterActive | string Default: "Active" Enum: "All" "Active" "Inactive" Specify which results we want to display. |
sQuery | string Allow to filter the returned results |
Accept-Language | string (Header-Accept-Language) Enum: "*" "en" "fr" Example: en The language of the returned content.
|
{- "mPayload": {
- "a_objVariableexpense": [
- {
- "sVariableexpenseDescriptionX": "Équipements de bureau",
- "pkiVariableexpenseID": 2,
- "bVariableexpenseIsactive": true
}
]
}, - "objDebugPayload": {
- "iVersionMin": 1,
- "iVersionMax": 2,
- "a_RequiredPermission": [
- 117
], - "bVersionDeprecated": false,
- "dtResponseDate": "2020-12-31 23:59:59"
}, - "objDebug": {
- "sMemoryUsage": "11,923MB",
- "sRunTime": "0.6084s",
- "iSQLSelects": 3,
- "iSQLQueries": 6,
- "a_objSQLQuery": [
- {
- "sQuery": "SELECT * FROM table",
- "fDuration": 0.0001
}, - {
- "sQuery": "SELECT * FROM table",
- "fDuration": 0.0001
}
]
}
}
pkiVersionhistoryID required | integer (Field-pkiVersionhistoryID) >= 0 Example: 42 The unique ID of the Versionhistory |
{- "mPayload": {
- "objVersionhistory": {
- "pkiVersionhistoryID": 42,
- "fkiModuleID": 40,
- "fkiModulesectionID": 53,
- "sModuleNameX": "Purchase",
- "sModulesectionNameX": "Access",
- "eVersionhistoryUsertype": "Normal",
- "objVersionhistoryDetail": {
- "tVersionhistoryDetail1": "Message important",
- "tVersionhistoryDetail2": "Important message"
}, - "dtVersionhistoryDate": "2020-12-31",
- "dtVersionhistoryDateend": "2020-12-31",
- "eVersionhistoryType": "NewFeature",
- "bVersionhistoryDraft": true
}
}, - "objDebugPayload": {
- "iVersionMin": 1,
- "iVersionMax": 2,
- "a_RequiredPermission": [
- 117
], - "bVersionDeprecated": false,
- "dtResponseDate": "2020-12-31 23:59:59"
}, - "objDebug": {
- "sMemoryUsage": "11,923MB",
- "sRunTime": "0.6084s",
- "iSQLSelects": 3,
- "iSQLQueries": 6,
- "a_objSQLQuery": [
- {
- "sQuery": "SELECT * FROM table",
- "fDuration": 0.0001
}, - {
- "sQuery": "SELECT * FROM table",
- "fDuration": 0.0001
}
]
}
}
The endpoint allows to create one or many elements at once.
required | Array of objects (webhook-RequestCompound) non-empty |
{- "a_objWebhook": [
- {
- "pkiWebhookID": 77,
- "fkiEzsignfoldertypeID": 5,
- "sWebhookDescription": "Import into our system",
- "eWebhookModule": "Ezsign",
- "eWebhookEzsignevent": "FolderCompleted",
- "eWebhookManagementevent": "UserCreated",
- "sWebhookEmailfailed": "email@example.com",
- "bWebhookIsactive": true,
- "bWebhookIssigned": true,
- "bWebhookSkipsslvalidation": false,
- "a_objWebhookheader": [
- {
- "pkiWebhookheaderID": 77,
- "sWebhookheaderName": "Authorization",
- "sWebhookheaderValue": "d75fca0e12b6c671e7f6d4df0cf59e4e"
}
]
}
]
}
{- "mPayload": {
- "a_objWebhook": [
- {
- "pkiWebhookID": 77,
- "sWebhookDescription": "Import into our system",
- "fkiEzsignfoldertypeID": 5,
- "sEzsignfoldertypeNameX": "Default",
- "eWebhookModule": "Ezsign",
- "eWebhookEzsignevent": "FolderCompleted",
- "eWebhookManagementevent": "UserCreated",
- "sWebhookEmailfailed": "email@example.com",
- "sWebhookApikey": "string",
- "sWebhookSecret": "string",
- "bWebhookIsactive": true,
- "bWebhookIssigned": true,
- "bWebhookSkipsslvalidation": false,
- "objAudit": {
- "objAuditdetailCreated": {
- "fkiUserID": 70,
- "fkiApikeyID": 99,
- "sUserLoginname": "JohnDoe",
- "sUserLastname": "Doe",
- "sUserFirstname": "John",
- "sApikeyDescriptionX": "Project X",
- "dtAuditdetailDate": "2020-12-31 23:59:59"
}, - "objAuditdetailModified": {
- "fkiUserID": 70,
- "fkiApikeyID": 99,
- "sUserLoginname": "JohnDoe",
- "sUserLastname": "Doe",
- "sUserFirstname": "John",
- "sApikeyDescriptionX": "Project X",
- "dtAuditdetailDate": "2020-12-31 23:59:59"
}
}, - "sWebhookEvent": "Ezsign-DocumentCompleted",
- "a_objWebhookheader": [
- {
- "pkiWebhookheaderID": 77,
- "fkiWebhookID": 77,
- "sWebhookheaderName": "Authorization",
- "sWebhookheaderValue": "d75fca0e12b6c671e7f6d4df0cf59e4e"
}
]
}
]
}, - "objDebugPayload": {
- "iVersionMin": 1,
- "iVersionMax": 2,
- "a_RequiredPermission": [
- 117
], - "bVersionDeprecated": false,
- "dtResponseDate": "2020-12-31 23:59:59"
}, - "objDebug": {
- "sMemoryUsage": "11,923MB",
- "sRunTime": "0.6084s",
- "iSQLSelects": 3,
- "iSQLQueries": 6,
- "a_objSQLQuery": [
- {
- "sQuery": "SELECT * FROM table",
- "fDuration": 0.0001
}, - {
- "sQuery": "SELECT * FROM table",
- "fDuration": 0.0001
}
]
}
}
pkiWebhookID required | integer (Field-pkiWebhookID) Example: 77 The unique ID of the Webhook |
{- "objDebugPayload": {
- "iVersionMin": 1,
- "iVersionMax": 2,
- "a_RequiredPermission": [
- 117
], - "bVersionDeprecated": false,
- "dtResponseDate": "2020-12-31 23:59:59"
}, - "objDebug": {
- "sMemoryUsage": "11,923MB",
- "sRunTime": "0.6084s",
- "iSQLSelects": 3,
- "iSQLQueries": 6,
- "a_objSQLQuery": [
- {
- "sQuery": "SELECT * FROM table",
- "fDuration": 0.0001
}, - {
- "sQuery": "SELECT * FROM table",
- "fDuration": 0.0001
}
]
}
}
pkiWebhookID required | integer (Field-pkiWebhookID) Example: 77 The unique ID of the Webhook |
required | object (webhook-RequestCompound) A Webhook Object and children |
{- "objWebhook": {
- "pkiWebhookID": 77,
- "fkiEzsignfoldertypeID": 5,
- "sWebhookDescription": "Import into our system",
- "eWebhookModule": "Ezsign",
- "eWebhookEzsignevent": "FolderCompleted",
- "eWebhookManagementevent": "UserCreated",
- "sWebhookEmailfailed": "email@example.com",
- "bWebhookIsactive": true,
- "bWebhookIssigned": true,
- "bWebhookSkipsslvalidation": false,
- "a_objWebhookheader": [
- {
- "pkiWebhookheaderID": 77,
- "sWebhookheaderName": "Authorization",
- "sWebhookheaderValue": "d75fca0e12b6c671e7f6d4df0cf59e4e"
}
]
}
}
{- "objDebugPayload": {
- "iVersionMin": 1,
- "iVersionMax": 2,
- "a_RequiredPermission": [
- 117
], - "bVersionDeprecated": false,
- "dtResponseDate": "2020-12-31 23:59:59"
}, - "objDebug": {
- "sMemoryUsage": "11,923MB",
- "sRunTime": "0.6084s",
- "iSQLSelects": 3,
- "iSQLQueries": 6,
- "a_objSQLQuery": [
- {
- "sQuery": "SELECT * FROM table",
- "fDuration": 0.0001
}, - {
- "sQuery": "SELECT * FROM table",
- "fDuration": 0.0001
}
]
}
}
pkiWebhookID required | integer (Field-pkiWebhookID) Example: 77 The unique ID of the Webhook |
bWebhookIssigned | boolean (Field-bWebhookIssigned) Whether the requests will be signed or not |
{- "bWebhookIssigned": true
}
{- "mPayload": {
- "objWebhook": {
- "pkiWebhookID": 77,
- "sWebhookDescription": "Import into our system",
- "fkiEzsignfoldertypeID": 5,
- "sEzsignfoldertypeNameX": "Default",
- "eWebhookModule": "Ezsign",
- "eWebhookEzsignevent": "FolderCompleted",
- "eWebhookManagementevent": "UserCreated",
- "sWebhookEmailfailed": "email@example.com",
- "sWebhookApikey": "string",
- "sWebhookSecret": "string",
- "bWebhookIsactive": true,
- "bWebhookIssigned": true,
- "bWebhookSkipsslvalidation": false,
- "objAudit": {
- "objAuditdetailCreated": {
- "fkiUserID": 70,
- "fkiApikeyID": 99,
- "sUserLoginname": "JohnDoe",
- "sUserLastname": "Doe",
- "sUserFirstname": "John",
- "sApikeyDescriptionX": "Project X",
- "dtAuditdetailDate": "2020-12-31 23:59:59"
}, - "objAuditdetailModified": {
- "fkiUserID": 70,
- "fkiApikeyID": 99,
- "sUserLoginname": "JohnDoe",
- "sUserLastname": "Doe",
- "sUserFirstname": "John",
- "sApikeyDescriptionX": "Project X",
- "dtAuditdetailDate": "2020-12-31 23:59:59"
}
}, - "sWebhookEvent": "Ezsign-DocumentCompleted",
- "a_objWebhookheader": [
- {
- "pkiWebhookheaderID": 77,
- "fkiWebhookID": 77,
- "sWebhookheaderName": "Authorization",
- "sWebhookheaderValue": "d75fca0e12b6c671e7f6d4df0cf59e4e"
}
]
}
}, - "objDebugPayload": {
- "iVersionMin": 1,
- "iVersionMax": 2,
- "a_RequiredPermission": [
- 117
], - "bVersionDeprecated": false,
- "dtResponseDate": "2020-12-31 23:59:59"
}, - "objDebug": {
- "sMemoryUsage": "11,923MB",
- "sRunTime": "0.6084s",
- "iSQLSelects": 3,
- "iSQLQueries": 6,
- "a_objSQLQuery": [
- {
- "sQuery": "SELECT * FROM table",
- "fDuration": 0.0001
}, - {
- "sQuery": "SELECT * FROM table",
- "fDuration": 0.0001
}
]
}
}
pkiWebhookID required | integer (Field-pkiWebhookID) Example: 77 The unique ID of the Webhook |
{- "mPayload": {
- "objWebhook": {
- "pkiWebhookID": 77,
- "sWebhookDescription": "Import into our system",
- "fkiEzsignfoldertypeID": 5,
- "sEzsignfoldertypeNameX": "Default",
- "eWebhookModule": "Ezsign",
- "eWebhookEzsignevent": "FolderCompleted",
- "eWebhookManagementevent": "UserCreated",
- "sWebhookEmailfailed": "email@example.com",
- "sWebhookApikey": "string",
- "sWebhookSecret": "string",
- "bWebhookIsactive": true,
- "bWebhookIssigned": true,
- "bWebhookSkipsslvalidation": false,
- "objAudit": {
- "objAuditdetailCreated": {
- "fkiUserID": 70,
- "fkiApikeyID": 99,
- "sUserLoginname": "JohnDoe",
- "sUserLastname": "Doe",
- "sUserFirstname": "John",
- "sApikeyDescriptionX": "Project X",
- "dtAuditdetailDate": "2020-12-31 23:59:59"
}, - "objAuditdetailModified": {
- "fkiUserID": 70,
- "fkiApikeyID": 99,
- "sUserLoginname": "JohnDoe",
- "sUserLastname": "Doe",
- "sUserFirstname": "John",
- "sApikeyDescriptionX": "Project X",
- "dtAuditdetailDate": "2020-12-31 23:59:59"
}
}, - "sWebhookEvent": "Ezsign-DocumentCompleted",
- "a_objWebhookheader": [
- {
- "pkiWebhookheaderID": 77,
- "fkiWebhookID": 77,
- "sWebhookheaderName": "Authorization",
- "sWebhookheaderValue": "d75fca0e12b6c671e7f6d4df0cf59e4e"
}
]
}
}, - "objDebugPayload": {
- "iVersionMin": 1,
- "iVersionMax": 2,
- "a_RequiredPermission": [
- 117
], - "bVersionDeprecated": false,
- "dtResponseDate": "2020-12-31 23:59:59"
}, - "objDebug": {
- "sMemoryUsage": "11,923MB",
- "sRunTime": "0.6084s",
- "iSQLSelects": 3,
- "iSQLQueries": 6,
- "a_objSQLQuery": [
- {
- "sQuery": "SELECT * FROM table",
- "fDuration": 0.0001
}, - {
- "sQuery": "SELECT * FROM table",
- "fDuration": 0.0001
}
]
}
}
pkiWebhookID required | integer (Field-pkiWebhookID) Example: 77 The unique ID of the Webhook |
eWebhookHistoryinterval required | string Enum: "LastDay" "LastWeek" The number of days to return |
{- "mPayload": {
- "a_objWebhooklog": [
- {
- "dtWebhooklogDate": "2020-12-31 23:59:59",
- "tWebhooklogJson": "{}"
}
]
}, - "objDebugPayload": {
- "iVersionMin": 1,
- "iVersionMax": 2,
- "a_RequiredPermission": [
- 117
], - "bVersionDeprecated": false,
- "dtResponseDate": "2020-12-31 23:59:59"
}, - "objDebug": {
- "sMemoryUsage": "11,923MB",
- "sRunTime": "0.6084s",
- "iSQLSelects": 3,
- "iSQLQueries": 6,
- "a_objSQLQuery": [
- {
- "sQuery": "SELECT * FROM table",
- "fDuration": 0.0001
}, - {
- "sQuery": "SELECT * FROM table",
- "fDuration": 0.0001
}
]
}
}
Enum values that can be filtered in query parameter sFilter:
Variable | Valid values |
---|---|
eWebhookModule | Ezsign Management |
eWebhookEzsignevent | DocumentCompleted FolderCompleted |
eWebhookManagementevent | UserCreated |
eOrderBy | string Enum: "pkiWebhookID_ASC" "pkiWebhookID_DESC" "sWebhookDescription_ASC" "sWebhookDescription_DESC" "eWebhookEzsignevent_ASC" … 15 more Specify how you want the results to be sorted |
iRowMax | integer (Field-iRowMax) [ 1 .. 10000 ] Example: iRowMax=100 The maximum numbers of results to be returned. When the content-type is application/json there is an implicit default of 10 000. When it's application/vnd.openxmlformats-officedocument.spreadsheetml.sheet the is no implicit default so if you do not specify iRowMax, all records will be returned. |
iRowOffset | integer (Field-iRowOffset) >= 0 Default: 0 Example: iRowOffset=0 The starting element from where to start retrieving the results. For example if you started at iRowOffset=0 and asked for iRowMax=100, to get the next 100 results, you could specify iRowOffset=100&iRowMax=100, |
sFilter | string (Field-sFilter) Example: sFilter=bField1 eq true and iField2 gte 0 and iField2 lte 1000 and sField3 eq 'Other' and eField4 eq 'Paid' and sField5 like '%needle%' and iField6 in '1,2,3' and dtField7 rg '=m,=3mm' The filter to apply to the request to limit results. |
Accept-Language | string (Header-Accept-Language) Enum: "*" "en" "fr" Example: en The language of the returned content.
|
{- "mPayload": {
- "a_objWebhook": [
- {
- "pkiWebhookID": 77,
- "sWebhookDescription": "Import into our system",
- "sWebhookEvent": "Ezsign-DocumentCompleted",
- "sWebhookEmailfailed": "email@example.com",
- "eWebhookModule": "Ezsign",
- "eWebhookEzsignevent": "FolderCompleted",
- "eWebhookManagementevent": "UserCreated",
- "bWebhookIsactive": true,
- "bWebhookIssigned": true
}
], - "iRowReturned": 100,
- "iRowFiltered": 533
}, - "objDebugPayload": {
- "iVersionMin": 1,
- "iVersionMax": 2,
- "a_RequiredPermission": [
- 117
], - "bVersionDeprecated": false,
- "dtResponseDate": "2020-12-31 23:59:59",
- "a_Filter": {
- "a_AutoType": {
- "property1": "string",
- "property2": "string"
}, - "a_AutoTypeHaving": {
- "property1": "string",
- "property2": "string"
}, - "a_Enum": {
- "property1": {
- "property1": "string",
- "property2": "string"
}, - "property2": {
- "property1": "string",
- "property2": "string"
}
}
}, - "a_OrderBy": {
- "property1": "string",
- "property2": "string"
}, - "iRowMax": 100,
- "iRowOffset": 0
}, - "objDebug": {
- "sMemoryUsage": "11,923MB",
- "sRunTime": "0.6084s",
- "iSQLSelects": 3,
- "iSQLQueries": 6,
- "a_objSQLQuery": [
- {
- "sQuery": "SELECT * FROM table",
- "fDuration": 0.0001
}, - {
- "sQuery": "SELECT * FROM table",
- "fDuration": 0.0001
}
]
}
}
pkiWebhookID required | integer (Field-pkiWebhookID) Example: 77 The unique ID of the Webhook |
Request for POST /1/object/webhook/{pkiWebhookID}/test
Intentionally empty for future-proofing
{ }
{- "objDebugPayload": {
- "iVersionMin": 1,
- "iVersionMax": 2,
- "a_RequiredPermission": [
- 117
], - "bVersionDeprecated": false,
- "dtResponseDate": "2020-12-31 23:59:59"
}, - "objDebug": {
- "sMemoryUsage": "11,923MB",
- "sRunTime": "0.6084s",
- "iSQLSelects": 3,
- "iSQLQueries": 6,
- "a_objSQLQuery": [
- {
- "sQuery": "SELECT * FROM table",
- "fDuration": 0.0001
}, - {
- "sQuery": "SELECT * FROM table",
- "fDuration": 0.0001
}
]
}
}
id | string |
displayName required | string (Field-sUsergroupNameX) ^.{0,50}$ The Name of the Usergroup in the language of the requester |
Array of objects (Scim-GroupMember) |
{- "id": "string",
- "displayName": "Administration",
- "members": [
- {
- "value": "string",
- "display": "string",
- "type": "string",
- "$ref": "string"
}
]
}
{- "id": "string",
- "displayName": "Administration",
- "members": [
- {
- "value": "string",
- "display": "string",
- "type": "string",
- "$ref": "string"
}
]
}
groupId required | string |
id | string |
displayName required | string (Field-sUsergroupNameX) ^.{0,50}$ The Name of the Usergroup in the language of the requester |
Array of objects (Scim-GroupMember) |
{- "id": "string",
- "displayName": "Administration",
- "members": [
- {
- "value": "string",
- "display": "string",
- "type": "string",
- "$ref": "string"
}
]
}
{- "id": "string",
- "displayName": "Administration",
- "members": [
- {
- "value": "string",
- "display": "string",
- "type": "string",
- "$ref": "string"
}
]
}
groupId required | string |
{- "id": "string",
- "displayName": "Administration",
- "members": [
- {
- "value": "string",
- "display": "string",
- "type": "string",
- "$ref": "string"
}
]
}
filter | string Filter expression for searching groups |
{- "id": "string",
- "displayName": "Administration",
- "members": [
- {
- "value": "string",
- "display": "string",
- "type": "string",
- "$ref": "string"
}
]
}
{- "authenticationSchemes": [
- {
- "description": "Bearer token in the Authorization header",
- "name": "Bearer",
- "type": "oauthbearertoken"
}
], - "bulk": {
- "supported": false,
- "maxOperations": 0,
- "maxPayloadSize": 0
}, - "changePassword": {
- "supported": false
}, - "etag": {
- "supported": false
}, - "filter": {
- "supported": true,
- "maxResults": 10000
}, - "patch": {
- "supported": false
}, - "sort": {
- "supported": false
}
}
id | string |
userName required | string A service provider's unique identifier for the user, typically used by the user to directly authenticate to the service provider. Often displayed to the user as their unique identifier within the system (as opposed to "id" or "externalId", which are generally opaque and not user-friendly identifiers). Each User MUST include a non-empty userName value. This identifier MUST be unique across the service provider's entire set of Users. This attribute is REQUIRED and is case insensitive. |
displayName | string |
Array of objects (Scim-Email) |
{- "id": "string",
- "userName": "string",
- "displayName": "string",
- "emails": [
- {
- "value": "email@example.com",
- "primary": true
}
]
}
{- "id": "string",
- "userName": "string",
- "displayName": "string",
- "emails": [
- {
- "value": "email@example.com",
- "primary": true
}
]
}
userId required | string |
id | string |
userName required | string A service provider's unique identifier for the user, typically used by the user to directly authenticate to the service provider. Often displayed to the user as their unique identifier within the system (as opposed to "id" or "externalId", which are generally opaque and not user-friendly identifiers). Each User MUST include a non-empty userName value. This identifier MUST be unique across the service provider's entire set of Users. This attribute is REQUIRED and is case insensitive. |
displayName | string |
Array of objects (Scim-Email) |
{- "id": "string",
- "userName": "string",
- "displayName": "string",
- "emails": [
- {
- "value": "email@example.com",
- "primary": true
}
]
}
{- "id": "string",
- "userName": "string",
- "displayName": "string",
- "emails": [
- {
- "value": "email@example.com",
- "primary": true
}
]
}
userId required | string |
{- "id": "string",
- "userName": "string",
- "displayName": "string",
- "emails": [
- {
- "value": "email@example.com",
- "primary": true
}
]
}
filter | string Filter expression for searching users |
{- "totalResults": 0,
- "itemsPerPage": 0,
- "startIndex": 0,
- "schemas": [
- "string"
], - "Resources": [
- {
- "id": "string",
- "userName": "string",
- "displayName": "string",
- "emails": [
- {
- "value": "email@example.com",
- "primary": true
}
]
}
]
}
Websocket Request Server contains detail about commands that can be sent to the Websocket Server by clients
Request the Websocket ID of the current connection
eWebsocketMessagetype required | string Value: "RequestServer-GetWebsocketID-V1" The Type of message |
{- "eWebsocketMessagetype": "RequestServer-GetWebsocketID-V1"
}
Websocket Reponse contains detail about the responses that are transmitted over the websocket connection
A websocket error message
eWebsocketMessagetype required | string Value: "Response-Error-V1" The Type of message |
sWebsocketChannel required | string (Field-sWebsocketChannel) ^[a-zA-Z0-9_@.]{32}$ The Channel on which to route the websocket message |
required | object (Websocket-Response-Error-V1-mPayload) Payload for Websocket Error V1 |
{- "eWebsocketMessagetype": "Response-Error-V1",
- "sWebsocketChannel": "Ch@nnel_1.0",
- "mPayload": {
- "sErrorMessage": "Invalid Signature Headers",
- "eErrorCode": "BADREQUEST"
}
}
A websocket information message
eWebsocketMessagetype required | string Value: "Response-Information-V1" The Type of message |
sWebsocketChannel required | string (Field-sWebsocketChannel) ^[a-zA-Z0-9_@.]{32}$ The Channel on which to route the websocket message |
required | object (Websocket-Response-Information-V1-mPayload) Payload for Websocket Information V1 |
{- "eWebsocketMessagetype": "Response-Information-V1",
- "sWebsocketChannel": "Ch@nnel_1.0",
- "mPayload": {
- "sInformationMessage": "Rasterizing pages"
}
}
The Websocket ID of the current connection
eWebsocketMessagetype required | string Value: "Response-GetWebsocketID-V1" The Type of message |
required | object (Websocket-Response-GetWebsocketID-V1-mPayload) Payload for Websocket GetWebsocketID V1 |
{- "eWebsocketMessagetype": "Response-GetWebsocketID-V1",
- "mPayload": {
- "sWebsocketID": "G_omidyY4osCFEQ="
}
}