Skip to content

Latest commit

 

History

History
751 lines (532 loc) · 25.2 KB

ObjectEzsigntemplateApi.md

File metadata and controls

751 lines (532 loc) · 25.2 KB

EzmaxApi::ObjectEzsigntemplateApi

All URIs are relative to https://prod.api.appcluster01.ca-central-1.ezmax.com/rest

Method HTTP request Description
ezsigntemplate_copy_v1 POST /1/object/ezsigntemplate/{pkiEzsigntemplateID}/copy Copy the Ezsigntemplate
ezsigntemplate_create_object_v1 POST /1/object/ezsigntemplate Create a new Ezsigntemplate
ezsigntemplate_create_object_v2 POST /2/object/ezsigntemplate Create a new Ezsigntemplate
ezsigntemplate_delete_object_v1 DELETE /1/object/ezsigntemplate/{pkiEzsigntemplateID} Delete an existing Ezsigntemplate
ezsigntemplate_edit_object_v1 PUT /1/object/ezsigntemplate/{pkiEzsigntemplateID} Edit an existing Ezsigntemplate
ezsigntemplate_edit_object_v2 PUT /2/object/ezsigntemplate/{pkiEzsigntemplateID} Edit an existing Ezsigntemplate
ezsigntemplate_get_autocomplete_v2 GET /2/object/ezsigntemplate/getAutocomplete/{sSelector} Retrieve Ezsigntemplates and IDs
ezsigntemplate_get_list_v1 GET /1/object/ezsigntemplate/getList Retrieve Ezsigntemplate list
ezsigntemplate_get_object_v1 GET /1/object/ezsigntemplate/{pkiEzsigntemplateID} Retrieve an existing Ezsigntemplate
ezsigntemplate_get_object_v2 GET /2/object/ezsigntemplate/{pkiEzsigntemplateID} Retrieve an existing Ezsigntemplate

ezsigntemplate_copy_v1

ezsigntemplate_copy_v1(pki_ezsigntemplate_id, ezsigntemplate_copy_v1_request)

Copy the Ezsigntemplate

Examples

require 'time'
require 'Ezmaxapi'
# setup authorization
EzmaxApi.configure do |config|
  # Configure API key authorization: Authorization
  config.api_key['Authorization'] = 'YOUR API KEY'
  # Uncomment the following line to set a prefix for the API key, e.g. 'Bearer' (defaults to nil)
  # config.api_key_prefix['Authorization'] = 'Bearer'
end

api_instance = EzmaxApi::ObjectEzsigntemplateApi.new
pki_ezsigntemplate_id = 56 # Integer | 
ezsigntemplate_copy_v1_request = EzmaxApi::EzsigntemplateCopyV1Request.new({a_fki_ezsignfoldertype_id: [5]}) # EzsigntemplateCopyV1Request | 

begin
  # Copy the Ezsigntemplate
  result = api_instance.ezsigntemplate_copy_v1(pki_ezsigntemplate_id, ezsigntemplate_copy_v1_request)
  p result
rescue EzmaxApi::ApiError => e
  puts "Error when calling ObjectEzsigntemplateApi->ezsigntemplate_copy_v1: #{e}"
end

Using the ezsigntemplate_copy_v1_with_http_info variant

This returns an Array which contains the response data, status code and headers.

<Array(, Integer, Hash)> ezsigntemplate_copy_v1_with_http_info(pki_ezsigntemplate_id, ezsigntemplate_copy_v1_request)

begin
  # Copy the Ezsigntemplate
  data, status_code, headers = api_instance.ezsigntemplate_copy_v1_with_http_info(pki_ezsigntemplate_id, ezsigntemplate_copy_v1_request)
  p status_code # => 2xx
  p headers # => { ... }
  p data # => <EzsigntemplateCopyV1Response>
rescue EzmaxApi::ApiError => e
  puts "Error when calling ObjectEzsigntemplateApi->ezsigntemplate_copy_v1_with_http_info: #{e}"
end

Parameters

Name Type Description Notes
pki_ezsigntemplate_id Integer
ezsigntemplate_copy_v1_request EzsigntemplateCopyV1Request

Return type

EzsigntemplateCopyV1Response

Authorization

Authorization

HTTP request headers

  • Content-Type: application/json
  • Accept: application/json

ezsigntemplate_create_object_v1

ezsigntemplate_create_object_v1(ezsigntemplate_create_object_v1_request)

Create a new Ezsigntemplate

The endpoint allows to create one or many elements at once.

Examples

require 'time'
require 'Ezmaxapi'
# setup authorization
EzmaxApi.configure do |config|
  # Configure API key authorization: Authorization
  config.api_key['Authorization'] = 'YOUR API KEY'
  # Uncomment the following line to set a prefix for the API key, e.g. 'Bearer' (defaults to nil)
  # config.api_key_prefix['Authorization'] = 'Bearer'
end

api_instance = EzmaxApi::ObjectEzsigntemplateApi.new
ezsigntemplate_create_object_v1_request = EzmaxApi::EzsigntemplateCreateObjectV1Request.new({a_obj_ezsigntemplate: [EzmaxApi::EzsigntemplateRequestCompound.new({fki_ezsignfoldertype_id: 5, fki_language_id: 2, s_ezsigntemplate_description: 'Standard Contract', b_ezsigntemplate_adminonly: false})]}) # EzsigntemplateCreateObjectV1Request | 

begin
  # Create a new Ezsigntemplate
  result = api_instance.ezsigntemplate_create_object_v1(ezsigntemplate_create_object_v1_request)
  p result
rescue EzmaxApi::ApiError => e
  puts "Error when calling ObjectEzsigntemplateApi->ezsigntemplate_create_object_v1: #{e}"
end

Using the ezsigntemplate_create_object_v1_with_http_info variant

This returns an Array which contains the response data, status code and headers.

<Array(, Integer, Hash)> ezsigntemplate_create_object_v1_with_http_info(ezsigntemplate_create_object_v1_request)

begin
  # Create a new Ezsigntemplate
  data, status_code, headers = api_instance.ezsigntemplate_create_object_v1_with_http_info(ezsigntemplate_create_object_v1_request)
  p status_code # => 2xx
  p headers # => { ... }
  p data # => <EzsigntemplateCreateObjectV1Response>
rescue EzmaxApi::ApiError => e
  puts "Error when calling ObjectEzsigntemplateApi->ezsigntemplate_create_object_v1_with_http_info: #{e}"
end

Parameters

Name Type Description Notes
ezsigntemplate_create_object_v1_request EzsigntemplateCreateObjectV1Request

Return type

EzsigntemplateCreateObjectV1Response

Authorization

Authorization

HTTP request headers

  • Content-Type: application/json
  • Accept: application/json

ezsigntemplate_create_object_v2

ezsigntemplate_create_object_v2(ezsigntemplate_create_object_v2_request)

Create a new Ezsigntemplate

The endpoint allows to create one or many elements at once.

Examples

require 'time'
require 'Ezmaxapi'
# setup authorization
EzmaxApi.configure do |config|
  # Configure API key authorization: Authorization
  config.api_key['Authorization'] = 'YOUR API KEY'
  # Uncomment the following line to set a prefix for the API key, e.g. 'Bearer' (defaults to nil)
  # config.api_key_prefix['Authorization'] = 'Bearer'
end

api_instance = EzmaxApi::ObjectEzsigntemplateApi.new
ezsigntemplate_create_object_v2_request = EzmaxApi::EzsigntemplateCreateObjectV2Request.new({a_obj_ezsigntemplate: [EzmaxApi::EzsigntemplateRequestCompoundV2.new({fki_language_id: 2, s_ezsigntemplate_description: 'Standard Contract', b_ezsigntemplate_adminonly: false, e_ezsigntemplate_type: EzmaxApi::FieldEEzsigntemplateType::USER})]}) # EzsigntemplateCreateObjectV2Request | 

begin
  # Create a new Ezsigntemplate
  result = api_instance.ezsigntemplate_create_object_v2(ezsigntemplate_create_object_v2_request)
  p result
rescue EzmaxApi::ApiError => e
  puts "Error when calling ObjectEzsigntemplateApi->ezsigntemplate_create_object_v2: #{e}"
end

Using the ezsigntemplate_create_object_v2_with_http_info variant

This returns an Array which contains the response data, status code and headers.

<Array(, Integer, Hash)> ezsigntemplate_create_object_v2_with_http_info(ezsigntemplate_create_object_v2_request)

begin
  # Create a new Ezsigntemplate
  data, status_code, headers = api_instance.ezsigntemplate_create_object_v2_with_http_info(ezsigntemplate_create_object_v2_request)
  p status_code # => 2xx
  p headers # => { ... }
  p data # => <EzsigntemplateCreateObjectV2Response>
rescue EzmaxApi::ApiError => e
  puts "Error when calling ObjectEzsigntemplateApi->ezsigntemplate_create_object_v2_with_http_info: #{e}"
end

Parameters

Name Type Description Notes
ezsigntemplate_create_object_v2_request EzsigntemplateCreateObjectV2Request

Return type

EzsigntemplateCreateObjectV2Response

Authorization

Authorization

HTTP request headers

  • Content-Type: application/json
  • Accept: application/json

ezsigntemplate_delete_object_v1

ezsigntemplate_delete_object_v1(pki_ezsigntemplate_id)

Delete an existing Ezsigntemplate

Examples

require 'time'
require 'Ezmaxapi'
# setup authorization
EzmaxApi.configure do |config|
  # Configure API key authorization: Authorization
  config.api_key['Authorization'] = 'YOUR API KEY'
  # Uncomment the following line to set a prefix for the API key, e.g. 'Bearer' (defaults to nil)
  # config.api_key_prefix['Authorization'] = 'Bearer'
end

api_instance = EzmaxApi::ObjectEzsigntemplateApi.new
pki_ezsigntemplate_id = 56 # Integer | 

begin
  # Delete an existing Ezsigntemplate
  result = api_instance.ezsigntemplate_delete_object_v1(pki_ezsigntemplate_id)
  p result
rescue EzmaxApi::ApiError => e
  puts "Error when calling ObjectEzsigntemplateApi->ezsigntemplate_delete_object_v1: #{e}"
end

Using the ezsigntemplate_delete_object_v1_with_http_info variant

This returns an Array which contains the response data, status code and headers.

<Array(, Integer, Hash)> ezsigntemplate_delete_object_v1_with_http_info(pki_ezsigntemplate_id)

begin
  # Delete an existing Ezsigntemplate
  data, status_code, headers = api_instance.ezsigntemplate_delete_object_v1_with_http_info(pki_ezsigntemplate_id)
  p status_code # => 2xx
  p headers # => { ... }
  p data # => <EzsigntemplateDeleteObjectV1Response>
rescue EzmaxApi::ApiError => e
  puts "Error when calling ObjectEzsigntemplateApi->ezsigntemplate_delete_object_v1_with_http_info: #{e}"
end

Parameters

Name Type Description Notes
pki_ezsigntemplate_id Integer

Return type

EzsigntemplateDeleteObjectV1Response

Authorization

Authorization

HTTP request headers

  • Content-Type: Not defined
  • Accept: application/json

ezsigntemplate_edit_object_v1

ezsigntemplate_edit_object_v1(pki_ezsigntemplate_id, ezsigntemplate_edit_object_v1_request)

Edit an existing Ezsigntemplate

Examples

require 'time'
require 'Ezmaxapi'
# setup authorization
EzmaxApi.configure do |config|
  # Configure API key authorization: Authorization
  config.api_key['Authorization'] = 'YOUR API KEY'
  # Uncomment the following line to set a prefix for the API key, e.g. 'Bearer' (defaults to nil)
  # config.api_key_prefix['Authorization'] = 'Bearer'
end

api_instance = EzmaxApi::ObjectEzsigntemplateApi.new
pki_ezsigntemplate_id = 56 # Integer | 
ezsigntemplate_edit_object_v1_request = EzmaxApi::EzsigntemplateEditObjectV1Request.new({obj_ezsigntemplate: EzmaxApi::EzsigntemplateRequestCompound.new({fki_ezsignfoldertype_id: 5, fki_language_id: 2, s_ezsigntemplate_description: 'Standard Contract', b_ezsigntemplate_adminonly: false})}) # EzsigntemplateEditObjectV1Request | 

begin
  # Edit an existing Ezsigntemplate
  result = api_instance.ezsigntemplate_edit_object_v1(pki_ezsigntemplate_id, ezsigntemplate_edit_object_v1_request)
  p result
rescue EzmaxApi::ApiError => e
  puts "Error when calling ObjectEzsigntemplateApi->ezsigntemplate_edit_object_v1: #{e}"
end

Using the ezsigntemplate_edit_object_v1_with_http_info variant

This returns an Array which contains the response data, status code and headers.

<Array(, Integer, Hash)> ezsigntemplate_edit_object_v1_with_http_info(pki_ezsigntemplate_id, ezsigntemplate_edit_object_v1_request)

begin
  # Edit an existing Ezsigntemplate
  data, status_code, headers = api_instance.ezsigntemplate_edit_object_v1_with_http_info(pki_ezsigntemplate_id, ezsigntemplate_edit_object_v1_request)
  p status_code # => 2xx
  p headers # => { ... }
  p data # => <EzsigntemplateEditObjectV1Response>
rescue EzmaxApi::ApiError => e
  puts "Error when calling ObjectEzsigntemplateApi->ezsigntemplate_edit_object_v1_with_http_info: #{e}"
end

Parameters

Name Type Description Notes
pki_ezsigntemplate_id Integer
ezsigntemplate_edit_object_v1_request EzsigntemplateEditObjectV1Request

Return type

EzsigntemplateEditObjectV1Response

Authorization

Authorization

HTTP request headers

  • Content-Type: application/json
  • Accept: application/json

ezsigntemplate_edit_object_v2

ezsigntemplate_edit_object_v2(pki_ezsigntemplate_id, ezsigntemplate_edit_object_v2_request)

Edit an existing Ezsigntemplate

Examples

require 'time'
require 'Ezmaxapi'
# setup authorization
EzmaxApi.configure do |config|
  # Configure API key authorization: Authorization
  config.api_key['Authorization'] = 'YOUR API KEY'
  # Uncomment the following line to set a prefix for the API key, e.g. 'Bearer' (defaults to nil)
  # config.api_key_prefix['Authorization'] = 'Bearer'
end

api_instance = EzmaxApi::ObjectEzsigntemplateApi.new
pki_ezsigntemplate_id = 56 # Integer | 
ezsigntemplate_edit_object_v2_request = EzmaxApi::EzsigntemplateEditObjectV2Request.new({obj_ezsigntemplate: EzmaxApi::EzsigntemplateRequestCompoundV2.new({fki_language_id: 2, s_ezsigntemplate_description: 'Standard Contract', b_ezsigntemplate_adminonly: false, e_ezsigntemplate_type: EzmaxApi::FieldEEzsigntemplateType::USER})}) # EzsigntemplateEditObjectV2Request | 

begin
  # Edit an existing Ezsigntemplate
  result = api_instance.ezsigntemplate_edit_object_v2(pki_ezsigntemplate_id, ezsigntemplate_edit_object_v2_request)
  p result
rescue EzmaxApi::ApiError => e
  puts "Error when calling ObjectEzsigntemplateApi->ezsigntemplate_edit_object_v2: #{e}"
end

Using the ezsigntemplate_edit_object_v2_with_http_info variant

This returns an Array which contains the response data, status code and headers.

<Array(, Integer, Hash)> ezsigntemplate_edit_object_v2_with_http_info(pki_ezsigntemplate_id, ezsigntemplate_edit_object_v2_request)

begin
  # Edit an existing Ezsigntemplate
  data, status_code, headers = api_instance.ezsigntemplate_edit_object_v2_with_http_info(pki_ezsigntemplate_id, ezsigntemplate_edit_object_v2_request)
  p status_code # => 2xx
  p headers # => { ... }
  p data # => <EzsigntemplateEditObjectV2Response>
rescue EzmaxApi::ApiError => e
  puts "Error when calling ObjectEzsigntemplateApi->ezsigntemplate_edit_object_v2_with_http_info: #{e}"
end

Parameters

Name Type Description Notes
pki_ezsigntemplate_id Integer
ezsigntemplate_edit_object_v2_request EzsigntemplateEditObjectV2Request

Return type

EzsigntemplateEditObjectV2Response

Authorization

Authorization

HTTP request headers

  • Content-Type: application/json
  • Accept: application/json

ezsigntemplate_get_autocomplete_v2

ezsigntemplate_get_autocomplete_v2(s_selector, opts)

Retrieve Ezsigntemplates and IDs

Get the list of Ezsigntemplate to be used in a dropdown or autocomplete control.

Examples

require 'time'
require 'Ezmaxapi'
# setup authorization
EzmaxApi.configure do |config|
  # Configure API key authorization: Authorization
  config.api_key['Authorization'] = 'YOUR API KEY'
  # Uncomment the following line to set a prefix for the API key, e.g. 'Bearer' (defaults to nil)
  # config.api_key_prefix['Authorization'] = 'Bearer'
end

api_instance = EzmaxApi::ObjectEzsigntemplateApi.new
s_selector = 'All' # String | The type of Ezsigntemplates to return
opts = {
  e_filter_active: 'All', # String | Specify which results we want to display.
  s_query: 's_query_example', # String | Allow to filter the returned results
  accept_language: EzmaxApi::HeaderAcceptLanguage:: # HeaderAcceptLanguage | 
}

begin
  # Retrieve Ezsigntemplates and IDs
  result = api_instance.ezsigntemplate_get_autocomplete_v2(s_selector, opts)
  p result
rescue EzmaxApi::ApiError => e
  puts "Error when calling ObjectEzsigntemplateApi->ezsigntemplate_get_autocomplete_v2: #{e}"
end

Using the ezsigntemplate_get_autocomplete_v2_with_http_info variant

This returns an Array which contains the response data, status code and headers.

<Array(, Integer, Hash)> ezsigntemplate_get_autocomplete_v2_with_http_info(s_selector, opts)

begin
  # Retrieve Ezsigntemplates and IDs
  data, status_code, headers = api_instance.ezsigntemplate_get_autocomplete_v2_with_http_info(s_selector, opts)
  p status_code # => 2xx
  p headers # => { ... }
  p data # => <EzsigntemplateGetAutocompleteV2Response>
rescue EzmaxApi::ApiError => e
  puts "Error when calling ObjectEzsigntemplateApi->ezsigntemplate_get_autocomplete_v2_with_http_info: #{e}"
end

Parameters

Name Type Description Notes
s_selector String The type of Ezsigntemplates to return
e_filter_active String Specify which results we want to display. [optional][default to 'Active']
s_query String Allow to filter the returned results [optional]
accept_language HeaderAcceptLanguage [optional]

Return type

EzsigntemplateGetAutocompleteV2Response

Authorization

Authorization

HTTP request headers

  • Content-Type: Not defined
  • Accept: application/json

ezsigntemplate_get_list_v1

ezsigntemplate_get_list_v1(opts)

Retrieve Ezsigntemplate list

Enum values that can be filtered in query parameter sFilter: | Variable | Valid values | |---|---| | eEzsigntemplateType | Company
Team
User
Usergroup |

Examples

require 'time'
require 'Ezmaxapi'
# setup authorization
EzmaxApi.configure do |config|
  # Configure API key authorization: Authorization
  config.api_key['Authorization'] = 'YOUR API KEY'
  # Uncomment the following line to set a prefix for the API key, e.g. 'Bearer' (defaults to nil)
  # config.api_key_prefix['Authorization'] = 'Bearer'
end

api_instance = EzmaxApi::ObjectEzsigntemplateApi.new
opts = {
  e_order_by: 'pkiEzsigntemplateID_ASC', # String | Specify how you want the results to be sorted
  i_row_max: 56, # Integer | 
  i_row_offset: 56, # Integer | 
  accept_language: EzmaxApi::HeaderAcceptLanguage::, # HeaderAcceptLanguage | 
  s_filter: 's_filter_example' # String | 
}

begin
  # Retrieve Ezsigntemplate list
  result = api_instance.ezsigntemplate_get_list_v1(opts)
  p result
rescue EzmaxApi::ApiError => e
  puts "Error when calling ObjectEzsigntemplateApi->ezsigntemplate_get_list_v1: #{e}"
end

Using the ezsigntemplate_get_list_v1_with_http_info variant

This returns an Array which contains the response data, status code and headers.

<Array(, Integer, Hash)> ezsigntemplate_get_list_v1_with_http_info(opts)

begin
  # Retrieve Ezsigntemplate list
  data, status_code, headers = api_instance.ezsigntemplate_get_list_v1_with_http_info(opts)
  p status_code # => 2xx
  p headers # => { ... }
  p data # => <EzsigntemplateGetListV1Response>
rescue EzmaxApi::ApiError => e
  puts "Error when calling ObjectEzsigntemplateApi->ezsigntemplate_get_list_v1_with_http_info: #{e}"
end

Parameters

Name Type Description Notes
e_order_by String Specify how you want the results to be sorted [optional]
i_row_max Integer [optional]
i_row_offset Integer [optional][default to 0]
accept_language HeaderAcceptLanguage [optional]
s_filter String [optional]

Return type

EzsigntemplateGetListV1Response

Authorization

Authorization

HTTP request headers

  • Content-Type: Not defined
  • Accept: application/json, application/vnd.openxmlformats-officedocument.spreadsheetml.sheet

ezsigntemplate_get_object_v1

ezsigntemplate_get_object_v1(pki_ezsigntemplate_id)

Retrieve an existing Ezsigntemplate

Examples

require 'time'
require 'Ezmaxapi'
# setup authorization
EzmaxApi.configure do |config|
  # Configure API key authorization: Authorization
  config.api_key['Authorization'] = 'YOUR API KEY'
  # Uncomment the following line to set a prefix for the API key, e.g. 'Bearer' (defaults to nil)
  # config.api_key_prefix['Authorization'] = 'Bearer'
end

api_instance = EzmaxApi::ObjectEzsigntemplateApi.new
pki_ezsigntemplate_id = 56 # Integer | 

begin
  # Retrieve an existing Ezsigntemplate
  result = api_instance.ezsigntemplate_get_object_v1(pki_ezsigntemplate_id)
  p result
rescue EzmaxApi::ApiError => e
  puts "Error when calling ObjectEzsigntemplateApi->ezsigntemplate_get_object_v1: #{e}"
end

Using the ezsigntemplate_get_object_v1_with_http_info variant

This returns an Array which contains the response data, status code and headers.

<Array(, Integer, Hash)> ezsigntemplate_get_object_v1_with_http_info(pki_ezsigntemplate_id)

begin
  # Retrieve an existing Ezsigntemplate
  data, status_code, headers = api_instance.ezsigntemplate_get_object_v1_with_http_info(pki_ezsigntemplate_id)
  p status_code # => 2xx
  p headers # => { ... }
  p data # => <EzsigntemplateGetObjectV1Response>
rescue EzmaxApi::ApiError => e
  puts "Error when calling ObjectEzsigntemplateApi->ezsigntemplate_get_object_v1_with_http_info: #{e}"
end

Parameters

Name Type Description Notes
pki_ezsigntemplate_id Integer

Return type

EzsigntemplateGetObjectV1Response

Authorization

Authorization

HTTP request headers

  • Content-Type: Not defined
  • Accept: application/json

ezsigntemplate_get_object_v2

ezsigntemplate_get_object_v2(pki_ezsigntemplate_id)

Retrieve an existing Ezsigntemplate

Examples

require 'time'
require 'Ezmaxapi'
# setup authorization
EzmaxApi.configure do |config|
  # Configure API key authorization: Authorization
  config.api_key['Authorization'] = 'YOUR API KEY'
  # Uncomment the following line to set a prefix for the API key, e.g. 'Bearer' (defaults to nil)
  # config.api_key_prefix['Authorization'] = 'Bearer'
end

api_instance = EzmaxApi::ObjectEzsigntemplateApi.new
pki_ezsigntemplate_id = 56 # Integer | 

begin
  # Retrieve an existing Ezsigntemplate
  result = api_instance.ezsigntemplate_get_object_v2(pki_ezsigntemplate_id)
  p result
rescue EzmaxApi::ApiError => e
  puts "Error when calling ObjectEzsigntemplateApi->ezsigntemplate_get_object_v2: #{e}"
end

Using the ezsigntemplate_get_object_v2_with_http_info variant

This returns an Array which contains the response data, status code and headers.

<Array(, Integer, Hash)> ezsigntemplate_get_object_v2_with_http_info(pki_ezsigntemplate_id)

begin
  # Retrieve an existing Ezsigntemplate
  data, status_code, headers = api_instance.ezsigntemplate_get_object_v2_with_http_info(pki_ezsigntemplate_id)
  p status_code # => 2xx
  p headers # => { ... }
  p data # => <EzsigntemplateGetObjectV2Response>
rescue EzmaxApi::ApiError => e
  puts "Error when calling ObjectEzsigntemplateApi->ezsigntemplate_get_object_v2_with_http_info: #{e}"
end

Parameters

Name Type Description Notes
pki_ezsigntemplate_id Integer

Return type

EzsigntemplateGetObjectV2Response

Authorization

Authorization

HTTP request headers

  • Content-Type: Not defined
  • Accept: application/json