Skip to content

Latest commit

 

History

History
157 lines (105 loc) · 6.05 KB

ObjectEzsignbulksendsignermappingApi.md

File metadata and controls

157 lines (105 loc) · 6.05 KB

openapi.api.ObjectEzsignbulksendsignermappingApi

Load the API package

import 'package:openapi/api.dart';

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

Method HTTP request Description
ezsignbulksendsignermappingCreateObjectV1 POST /1/object/ezsignbulksendsignermapping Create a new Ezsignbulksendsignermapping
ezsignbulksendsignermappingDeleteObjectV1 DELETE /1/object/ezsignbulksendsignermapping/{pkiEzsignbulksendsignermappingID} Delete an existing Ezsignbulksendsignermapping
ezsignbulksendsignermappingGetObjectV2 GET /2/object/ezsignbulksendsignermapping/{pkiEzsignbulksendsignermappingID} Retrieve an existing Ezsignbulksendsignermapping

ezsignbulksendsignermappingCreateObjectV1

EzsignbulksendsignermappingCreateObjectV1Response ezsignbulksendsignermappingCreateObjectV1(ezsignbulksendsignermappingCreateObjectV1Request)

Create a new Ezsignbulksendsignermapping

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

Example

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 = ObjectEzsignbulksendsignermappingApi();
final ezsignbulksendsignermappingCreateObjectV1Request = EzsignbulksendsignermappingCreateObjectV1Request(); // EzsignbulksendsignermappingCreateObjectV1Request | 

try {
    final result = api_instance.ezsignbulksendsignermappingCreateObjectV1(ezsignbulksendsignermappingCreateObjectV1Request);
    print(result);
} catch (e) {
    print('Exception when calling ObjectEzsignbulksendsignermappingApi->ezsignbulksendsignermappingCreateObjectV1: $e\n');
}

Parameters

Name Type Description Notes
ezsignbulksendsignermappingCreateObjectV1Request EzsignbulksendsignermappingCreateObjectV1Request

Return type

EzsignbulksendsignermappingCreateObjectV1Response

Authorization

Authorization

HTTP request headers

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

[Back to top] [Back to API list] [Back to Model list] [Back to README]

ezsignbulksendsignermappingDeleteObjectV1

EzsignbulksendsignermappingDeleteObjectV1Response ezsignbulksendsignermappingDeleteObjectV1(pkiEzsignbulksendsignermappingID)

Delete an existing Ezsignbulksendsignermapping

Example

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 = ObjectEzsignbulksendsignermappingApi();
final pkiEzsignbulksendsignermappingID = 56; // int | 

try {
    final result = api_instance.ezsignbulksendsignermappingDeleteObjectV1(pkiEzsignbulksendsignermappingID);
    print(result);
} catch (e) {
    print('Exception when calling ObjectEzsignbulksendsignermappingApi->ezsignbulksendsignermappingDeleteObjectV1: $e\n');
}

Parameters

Name Type Description Notes
pkiEzsignbulksendsignermappingID int

Return type

EzsignbulksendsignermappingDeleteObjectV1Response

Authorization

Authorization

HTTP request headers

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

[Back to top] [Back to API list] [Back to Model list] [Back to README]

ezsignbulksendsignermappingGetObjectV2

EzsignbulksendsignermappingGetObjectV2Response ezsignbulksendsignermappingGetObjectV2(pkiEzsignbulksendsignermappingID)

Retrieve an existing Ezsignbulksendsignermapping

Example

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 = ObjectEzsignbulksendsignermappingApi();
final pkiEzsignbulksendsignermappingID = 56; // int | 

try {
    final result = api_instance.ezsignbulksendsignermappingGetObjectV2(pkiEzsignbulksendsignermappingID);
    print(result);
} catch (e) {
    print('Exception when calling ObjectEzsignbulksendsignermappingApi->ezsignbulksendsignermappingGetObjectV2: $e\n');
}

Parameters

Name Type Description Notes
pkiEzsignbulksendsignermappingID int

Return type

EzsignbulksendsignermappingGetObjectV2Response

Authorization

Authorization

HTTP request headers

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

[Back to top] [Back to API list] [Back to Model list] [Back to README]