import 'package:openapi/api.dart';
All URIs are relative to https://prod.api.appcluster01.ca-central-1.ezmax.com/rest
Method | HTTP request | Description |
---|---|---|
ezsigntemplateCopyV1 | POST /1/object/ezsigntemplate/{pkiEzsigntemplateID}/copy | Copy the Ezsigntemplate |
ezsigntemplateCreateObjectV1 | POST /1/object/ezsigntemplate | Create a new Ezsigntemplate |
ezsigntemplateCreateObjectV2 | POST /2/object/ezsigntemplate | Create a new Ezsigntemplate |
ezsigntemplateDeleteObjectV1 | DELETE /1/object/ezsigntemplate/{pkiEzsigntemplateID} | Delete an existing Ezsigntemplate |
ezsigntemplateEditObjectV1 | PUT /1/object/ezsigntemplate/{pkiEzsigntemplateID} | Edit an existing Ezsigntemplate |
ezsigntemplateEditObjectV2 | PUT /2/object/ezsigntemplate/{pkiEzsigntemplateID} | Edit an existing Ezsigntemplate |
ezsigntemplateGetAutocompleteV2 | GET /2/object/ezsigntemplate/getAutocomplete/{sSelector} | Retrieve Ezsigntemplates and IDs |
ezsigntemplateGetListV1 | GET /1/object/ezsigntemplate/getList | Retrieve Ezsigntemplate list |
ezsigntemplateGetObjectV1 | GET /1/object/ezsigntemplate/{pkiEzsigntemplateID} | Retrieve an existing Ezsigntemplate |
ezsigntemplateGetObjectV2 | GET /2/object/ezsigntemplate/{pkiEzsigntemplateID} | Retrieve an existing Ezsigntemplate |
EzsigntemplateCopyV1Response ezsigntemplateCopyV1(pkiEzsigntemplateID, ezsigntemplateCopyV1Request)
Copy the Ezsigntemplate
import 'package:openapi/api.dart';
// TODO Configure API key authorization: Authorization
//defaultApiClient.getAuthentication<ApiKeyAuth>('Authorization').apiKey = 'YOUR_API_KEY';
// uncomment below to setup prefix (e.g. Bearer) for API key, if needed
//defaultApiClient.getAuthentication<ApiKeyAuth>('Authorization').apiKeyPrefix = 'Bearer';
final api_instance = ObjectEzsigntemplateApi();
final pkiEzsigntemplateID = 56; // int |
final ezsigntemplateCopyV1Request = EzsigntemplateCopyV1Request(); // EzsigntemplateCopyV1Request |
try {
final result = api_instance.ezsigntemplateCopyV1(pkiEzsigntemplateID, ezsigntemplateCopyV1Request);
print(result);
} catch (e) {
print('Exception when calling ObjectEzsigntemplateApi->ezsigntemplateCopyV1: $e\n');
}
Name | Type | Description | Notes |
---|---|---|---|
pkiEzsigntemplateID | int | ||
ezsigntemplateCopyV1Request | EzsigntemplateCopyV1Request |
- Content-Type: application/json
- Accept: application/json
[Back to top] [Back to API list] [Back to Model list] [Back to README]
EzsigntemplateCreateObjectV1Response ezsigntemplateCreateObjectV1(ezsigntemplateCreateObjectV1Request)
Create a new Ezsigntemplate
The endpoint allows to create one or many elements at once.
import 'package:openapi/api.dart';
// TODO Configure API key authorization: Authorization
//defaultApiClient.getAuthentication<ApiKeyAuth>('Authorization').apiKey = 'YOUR_API_KEY';
// uncomment below to setup prefix (e.g. Bearer) for API key, if needed
//defaultApiClient.getAuthentication<ApiKeyAuth>('Authorization').apiKeyPrefix = 'Bearer';
final api_instance = ObjectEzsigntemplateApi();
final ezsigntemplateCreateObjectV1Request = EzsigntemplateCreateObjectV1Request(); // EzsigntemplateCreateObjectV1Request |
try {
final result = api_instance.ezsigntemplateCreateObjectV1(ezsigntemplateCreateObjectV1Request);
print(result);
} catch (e) {
print('Exception when calling ObjectEzsigntemplateApi->ezsigntemplateCreateObjectV1: $e\n');
}
Name | Type | Description | Notes |
---|---|---|---|
ezsigntemplateCreateObjectV1Request | EzsigntemplateCreateObjectV1Request |
EzsigntemplateCreateObjectV1Response
- Content-Type: application/json
- Accept: application/json
[Back to top] [Back to API list] [Back to Model list] [Back to README]
EzsigntemplateCreateObjectV2Response ezsigntemplateCreateObjectV2(ezsigntemplateCreateObjectV2Request)
Create a new Ezsigntemplate
The endpoint allows to create one or many elements at once.
import 'package:openapi/api.dart';
// TODO Configure API key authorization: Authorization
//defaultApiClient.getAuthentication<ApiKeyAuth>('Authorization').apiKey = 'YOUR_API_KEY';
// uncomment below to setup prefix (e.g. Bearer) for API key, if needed
//defaultApiClient.getAuthentication<ApiKeyAuth>('Authorization').apiKeyPrefix = 'Bearer';
final api_instance = ObjectEzsigntemplateApi();
final ezsigntemplateCreateObjectV2Request = EzsigntemplateCreateObjectV2Request(); // EzsigntemplateCreateObjectV2Request |
try {
final result = api_instance.ezsigntemplateCreateObjectV2(ezsigntemplateCreateObjectV2Request);
print(result);
} catch (e) {
print('Exception when calling ObjectEzsigntemplateApi->ezsigntemplateCreateObjectV2: $e\n');
}
Name | Type | Description | Notes |
---|---|---|---|
ezsigntemplateCreateObjectV2Request | EzsigntemplateCreateObjectV2Request |
EzsigntemplateCreateObjectV2Response
- Content-Type: application/json
- Accept: application/json
[Back to top] [Back to API list] [Back to Model list] [Back to README]
EzsigntemplateDeleteObjectV1Response ezsigntemplateDeleteObjectV1(pkiEzsigntemplateID)
Delete an existing Ezsigntemplate
import 'package:openapi/api.dart';
// TODO Configure API key authorization: Authorization
//defaultApiClient.getAuthentication<ApiKeyAuth>('Authorization').apiKey = 'YOUR_API_KEY';
// uncomment below to setup prefix (e.g. Bearer) for API key, if needed
//defaultApiClient.getAuthentication<ApiKeyAuth>('Authorization').apiKeyPrefix = 'Bearer';
final api_instance = ObjectEzsigntemplateApi();
final pkiEzsigntemplateID = 56; // int |
try {
final result = api_instance.ezsigntemplateDeleteObjectV1(pkiEzsigntemplateID);
print(result);
} catch (e) {
print('Exception when calling ObjectEzsigntemplateApi->ezsigntemplateDeleteObjectV1: $e\n');
}
Name | Type | Description | Notes |
---|---|---|---|
pkiEzsigntemplateID | int |
EzsigntemplateDeleteObjectV1Response
- Content-Type: Not defined
- Accept: application/json
[Back to top] [Back to API list] [Back to Model list] [Back to README]
EzsigntemplateEditObjectV1Response ezsigntemplateEditObjectV1(pkiEzsigntemplateID, ezsigntemplateEditObjectV1Request)
Edit an existing Ezsigntemplate
import 'package:openapi/api.dart';
// TODO Configure API key authorization: Authorization
//defaultApiClient.getAuthentication<ApiKeyAuth>('Authorization').apiKey = 'YOUR_API_KEY';
// uncomment below to setup prefix (e.g. Bearer) for API key, if needed
//defaultApiClient.getAuthentication<ApiKeyAuth>('Authorization').apiKeyPrefix = 'Bearer';
final api_instance = ObjectEzsigntemplateApi();
final pkiEzsigntemplateID = 56; // int |
final ezsigntemplateEditObjectV1Request = EzsigntemplateEditObjectV1Request(); // EzsigntemplateEditObjectV1Request |
try {
final result = api_instance.ezsigntemplateEditObjectV1(pkiEzsigntemplateID, ezsigntemplateEditObjectV1Request);
print(result);
} catch (e) {
print('Exception when calling ObjectEzsigntemplateApi->ezsigntemplateEditObjectV1: $e\n');
}
Name | Type | Description | Notes |
---|---|---|---|
pkiEzsigntemplateID | int | ||
ezsigntemplateEditObjectV1Request | EzsigntemplateEditObjectV1Request |
EzsigntemplateEditObjectV1Response
- Content-Type: application/json
- Accept: application/json
[Back to top] [Back to API list] [Back to Model list] [Back to README]
EzsigntemplateEditObjectV2Response ezsigntemplateEditObjectV2(pkiEzsigntemplateID, ezsigntemplateEditObjectV2Request)
Edit an existing Ezsigntemplate
import 'package:openapi/api.dart';
// TODO Configure API key authorization: Authorization
//defaultApiClient.getAuthentication<ApiKeyAuth>('Authorization').apiKey = 'YOUR_API_KEY';
// uncomment below to setup prefix (e.g. Bearer) for API key, if needed
//defaultApiClient.getAuthentication<ApiKeyAuth>('Authorization').apiKeyPrefix = 'Bearer';
final api_instance = ObjectEzsigntemplateApi();
final pkiEzsigntemplateID = 56; // int |
final ezsigntemplateEditObjectV2Request = EzsigntemplateEditObjectV2Request(); // EzsigntemplateEditObjectV2Request |
try {
final result = api_instance.ezsigntemplateEditObjectV2(pkiEzsigntemplateID, ezsigntemplateEditObjectV2Request);
print(result);
} catch (e) {
print('Exception when calling ObjectEzsigntemplateApi->ezsigntemplateEditObjectV2: $e\n');
}
Name | Type | Description | Notes |
---|---|---|---|
pkiEzsigntemplateID | int | ||
ezsigntemplateEditObjectV2Request | EzsigntemplateEditObjectV2Request |
EzsigntemplateEditObjectV2Response
- Content-Type: application/json
- Accept: application/json
[Back to top] [Back to API list] [Back to Model list] [Back to README]
EzsigntemplateGetAutocompleteV2Response ezsigntemplateGetAutocompleteV2(sSelector, eFilterActive, sQuery, acceptLanguage)
Retrieve Ezsigntemplates and IDs
Get the list of Ezsigntemplate to be used in a dropdown or autocomplete control.
import 'package:openapi/api.dart';
// TODO Configure API key authorization: Authorization
//defaultApiClient.getAuthentication<ApiKeyAuth>('Authorization').apiKey = 'YOUR_API_KEY';
// uncomment below to setup prefix (e.g. Bearer) for API key, if needed
//defaultApiClient.getAuthentication<ApiKeyAuth>('Authorization').apiKeyPrefix = 'Bearer';
final api_instance = ObjectEzsigntemplateApi();
final sSelector = sSelector_example; // String | The type of Ezsigntemplates to return
final eFilterActive = eFilterActive_example; // String | Specify which results we want to display.
final sQuery = sQuery_example; // String | Allow to filter the returned results
final acceptLanguage = ; // HeaderAcceptLanguage |
try {
final result = api_instance.ezsigntemplateGetAutocompleteV2(sSelector, eFilterActive, sQuery, acceptLanguage);
print(result);
} catch (e) {
print('Exception when calling ObjectEzsigntemplateApi->ezsigntemplateGetAutocompleteV2: $e\n');
}
Name | Type | Description | Notes |
---|---|---|---|
sSelector | String | The type of Ezsigntemplates to return | |
eFilterActive | String | Specify which results we want to display. | [optional] [default to 'Active'] |
sQuery | String | Allow to filter the returned results | [optional] |
acceptLanguage | HeaderAcceptLanguage | [optional] |
EzsigntemplateGetAutocompleteV2Response
- Content-Type: Not defined
- Accept: application/json
[Back to top] [Back to API list] [Back to Model list] [Back to README]
EzsigntemplateGetListV1Response ezsigntemplateGetListV1(eOrderBy, iRowMax, iRowOffset, acceptLanguage, sFilter)
Retrieve Ezsigntemplate list
Enum values that can be filtered in query parameter sFilter: | Variable | Valid values | |---|---| | eEzsigntemplateType | Company
Team
User
Usergroup |
import 'package:openapi/api.dart';
// TODO Configure API key authorization: Authorization
//defaultApiClient.getAuthentication<ApiKeyAuth>('Authorization').apiKey = 'YOUR_API_KEY';
// uncomment below to setup prefix (e.g. Bearer) for API key, if needed
//defaultApiClient.getAuthentication<ApiKeyAuth>('Authorization').apiKeyPrefix = 'Bearer';
final api_instance = ObjectEzsigntemplateApi();
final eOrderBy = eOrderBy_example; // String | Specify how you want the results to be sorted
final iRowMax = 56; // int |
final iRowOffset = 56; // int |
final acceptLanguage = ; // HeaderAcceptLanguage |
final sFilter = sFilter_example; // String |
try {
final result = api_instance.ezsigntemplateGetListV1(eOrderBy, iRowMax, iRowOffset, acceptLanguage, sFilter);
print(result);
} catch (e) {
print('Exception when calling ObjectEzsigntemplateApi->ezsigntemplateGetListV1: $e\n');
}
Name | Type | Description | Notes |
---|---|---|---|
eOrderBy | String | Specify how you want the results to be sorted | [optional] |
iRowMax | int | [optional] | |
iRowOffset | int | [optional] [default to 0] | |
acceptLanguage | HeaderAcceptLanguage | [optional] | |
sFilter | String | [optional] |
EzsigntemplateGetListV1Response
- Content-Type: Not defined
- Accept: application/json, application/vnd.openxmlformats-officedocument.spreadsheetml.sheet
[Back to top] [Back to API list] [Back to Model list] [Back to README]
EzsigntemplateGetObjectV1Response ezsigntemplateGetObjectV1(pkiEzsigntemplateID)
Retrieve an existing Ezsigntemplate
import 'package:openapi/api.dart';
// TODO Configure API key authorization: Authorization
//defaultApiClient.getAuthentication<ApiKeyAuth>('Authorization').apiKey = 'YOUR_API_KEY';
// uncomment below to setup prefix (e.g. Bearer) for API key, if needed
//defaultApiClient.getAuthentication<ApiKeyAuth>('Authorization').apiKeyPrefix = 'Bearer';
final api_instance = ObjectEzsigntemplateApi();
final pkiEzsigntemplateID = 56; // int |
try {
final result = api_instance.ezsigntemplateGetObjectV1(pkiEzsigntemplateID);
print(result);
} catch (e) {
print('Exception when calling ObjectEzsigntemplateApi->ezsigntemplateGetObjectV1: $e\n');
}
Name | Type | Description | Notes |
---|---|---|---|
pkiEzsigntemplateID | int |
EzsigntemplateGetObjectV1Response
- Content-Type: Not defined
- Accept: application/json
[Back to top] [Back to API list] [Back to Model list] [Back to README]
EzsigntemplateGetObjectV2Response ezsigntemplateGetObjectV2(pkiEzsigntemplateID)
Retrieve an existing Ezsigntemplate
import 'package:openapi/api.dart';
// TODO Configure API key authorization: Authorization
//defaultApiClient.getAuthentication<ApiKeyAuth>('Authorization').apiKey = 'YOUR_API_KEY';
// uncomment below to setup prefix (e.g. Bearer) for API key, if needed
//defaultApiClient.getAuthentication<ApiKeyAuth>('Authorization').apiKeyPrefix = 'Bearer';
final api_instance = ObjectEzsigntemplateApi();
final pkiEzsigntemplateID = 56; // int |
try {
final result = api_instance.ezsigntemplateGetObjectV2(pkiEzsigntemplateID);
print(result);
} catch (e) {
print('Exception when calling ObjectEzsigntemplateApi->ezsigntemplateGetObjectV2: $e\n');
}
Name | Type | Description | Notes |
---|---|---|---|
pkiEzsigntemplateID | int |
EzsigntemplateGetObjectV2Response
- Content-Type: Not defined
- Accept: application/json
[Back to top] [Back to API list] [Back to Model list] [Back to README]