All URIs are relative to https://prod.api.appcluster01.ca-central-1.ezmax.com/rest, except if the operation defines another base path.
| Method | HTTP request | Description |
|---|---|---|
| ezsignbulksendCreateEzsignbulksendtransmissionV2() | POST /2/object/ezsignbulksend/{pkiEzsignbulksendID}/createEzsignbulksendtransmission | Create a new Ezsignbulksendtransmission in the Ezsignbulksend |
| ezsignbulksendCreateObjectV1() | POST /1/object/ezsignbulksend | Create a new Ezsignbulksend |
| ezsignbulksendCreateObjectV2() | POST /2/object/ezsignbulksend | Create a new Ezsignbulksend |
| ezsignbulksendDeleteObjectV1() | DELETE /1/object/ezsignbulksend/{pkiEzsignbulksendID} | Delete an existing Ezsignbulksend |
| ezsignbulksendEditObjectV2() | PUT /2/object/ezsignbulksend/{pkiEzsignbulksendID} | Edit an existing Ezsignbulksend |
| ezsignbulksendGetBatchFileV1() | GET /1/object/ezsignbulksend/{pkiEzsignbulksendID}/getBatchFile | Retrieve file to download documents in batch |
| ezsignbulksendGetCsvTemplateV1() | GET /1/object/ezsignbulksend/{pkiEzsignbulksendID}/getCsvTemplate | Retrieve an existing Ezsignbulksend's empty Csv template |
| ezsignbulksendGetEzsignbulksendtransmissionsV1() | GET /1/object/ezsignbulksend/{pkiEzsignbulksendID}/getEzsignbulksendtransmissions | Retrieve an existing Ezsignbulksend's Ezsignbulksendtransmissions |
| ezsignbulksendGetEzsignsignaturesAutomaticV1() | GET /1/object/ezsignbulksend/{pkiEzsignbulksendID}/getEzsignsignaturesAutomatic | Retrieve an existing Ezsignbulksend's automatic Ezsignsignatures |
| ezsignbulksendGetFormsDataV1() | GET /1/object/ezsignbulksend/{pkiEzsignbulksendID}/getFormsData | Retrieve an existing Ezsignbulksend's forms data |
| ezsignbulksendGetListV1() | GET /1/object/ezsignbulksend/getList | Retrieve Ezsignbulksend list |
| ezsignbulksendGetObjectV2() | GET /2/object/ezsignbulksend/{pkiEzsignbulksendID} | Retrieve an existing Ezsignbulksend |
| ezsignbulksendGetObjectV3() | GET /3/object/ezsignbulksend/{pkiEzsignbulksendID} | Retrieve an existing Ezsignbulksend |
| ezsignbulksendReorderV1() | POST /1/object/ezsignbulksend/{pkiEzsignbulksendID}/reorder | Reorder Ezsignbulksenddocumentmappings in the Ezsignbulksend |
ezsignbulksendCreateEzsignbulksendtransmissionV2($pkiEzsignbulksendID, $ezsignbulksendCreateEzsignbulksendtransmissionV2Request): \eZmaxAPI\Model\EzsignbulksendCreateEzsignbulksendtransmissionV2ResponseCreate a new Ezsignbulksendtransmission in the Ezsignbulksend
<?php
require_once(__DIR__ . '/vendor/autoload.php');
// Configure API key authorization: Authorization
$config = eZmaxAPI\Configuration::getDefaultConfiguration()->setApiKey('Authorization', 'YOUR_API_KEY');
// Uncomment below to setup prefix (e.g. Bearer) for API key, if needed
// $config = eZmaxAPI\Configuration::getDefaultConfiguration()->setApiKeyPrefix('Authorization', 'Bearer');
$apiInstance = new eZmaxAPI\Api\ObjectEzsignbulksendApi(
// If you want use custom http client, pass your client which implements `GuzzleHttp\ClientInterface`.
// This is optional, `GuzzleHttp\Client` will be used as default.
new GuzzleHttp\Client(),
$config
);
$pkiEzsignbulksendID = 56; // int
$ezsignbulksendCreateEzsignbulksendtransmissionV2Request = new \eZmaxAPI\Model\EzsignbulksendCreateEzsignbulksendtransmissionV2Request(); // \eZmaxAPI\Model\EzsignbulksendCreateEzsignbulksendtransmissionV2Request
try {
$result = $apiInstance->ezsignbulksendCreateEzsignbulksendtransmissionV2($pkiEzsignbulksendID, $ezsignbulksendCreateEzsignbulksendtransmissionV2Request);
print_r($result);
} catch (Exception $e) {
echo 'Exception when calling ObjectEzsignbulksendApi->ezsignbulksendCreateEzsignbulksendtransmissionV2: ', $e->getMessage(), PHP_EOL;
}| Name | Type | Description | Notes |
|---|---|---|---|
| pkiEzsignbulksendID | int | ||
| ezsignbulksendCreateEzsignbulksendtransmissionV2Request | \eZmaxAPI\Model\EzsignbulksendCreateEzsignbulksendtransmissionV2Request |
\eZmaxAPI\Model\EzsignbulksendCreateEzsignbulksendtransmissionV2Response
- Content-Type:
application/json - Accept:
application/json
[Back to top] [Back to API list] [Back to Model list] [Back to README]
ezsignbulksendCreateObjectV1($ezsignbulksendCreateObjectV1Request): \eZmaxAPI\Model\EzsignbulksendCreateObjectV1ResponseCreate a new Ezsignbulksend
The endpoint allows to create one or many elements at once.
<?php
require_once(__DIR__ . '/vendor/autoload.php');
// Configure API key authorization: Authorization
$config = eZmaxAPI\Configuration::getDefaultConfiguration()->setApiKey('Authorization', 'YOUR_API_KEY');
// Uncomment below to setup prefix (e.g. Bearer) for API key, if needed
// $config = eZmaxAPI\Configuration::getDefaultConfiguration()->setApiKeyPrefix('Authorization', 'Bearer');
$apiInstance = new eZmaxAPI\Api\ObjectEzsignbulksendApi(
// If you want use custom http client, pass your client which implements `GuzzleHttp\ClientInterface`.
// This is optional, `GuzzleHttp\Client` will be used as default.
new GuzzleHttp\Client(),
$config
);
$ezsignbulksendCreateObjectV1Request = new \eZmaxAPI\Model\EzsignbulksendCreateObjectV1Request(); // \eZmaxAPI\Model\EzsignbulksendCreateObjectV1Request
try {
$result = $apiInstance->ezsignbulksendCreateObjectV1($ezsignbulksendCreateObjectV1Request);
print_r($result);
} catch (Exception $e) {
echo 'Exception when calling ObjectEzsignbulksendApi->ezsignbulksendCreateObjectV1: ', $e->getMessage(), PHP_EOL;
}| Name | Type | Description | Notes |
|---|---|---|---|
| ezsignbulksendCreateObjectV1Request | \eZmaxAPI\Model\EzsignbulksendCreateObjectV1Request |
\eZmaxAPI\Model\EzsignbulksendCreateObjectV1Response
- Content-Type:
application/json - Accept:
application/json
[Back to top] [Back to API list] [Back to Model list] [Back to README]
ezsignbulksendCreateObjectV2($ezsignbulksendCreateObjectV2Request): \eZmaxAPI\Model\EzsignbulksendCreateObjectV2ResponseCreate a new Ezsignbulksend
The endpoint allows to create one or many elements at once.
<?php
require_once(__DIR__ . '/vendor/autoload.php');
// Configure API key authorization: Authorization
$config = eZmaxAPI\Configuration::getDefaultConfiguration()->setApiKey('Authorization', 'YOUR_API_KEY');
// Uncomment below to setup prefix (e.g. Bearer) for API key, if needed
// $config = eZmaxAPI\Configuration::getDefaultConfiguration()->setApiKeyPrefix('Authorization', 'Bearer');
$apiInstance = new eZmaxAPI\Api\ObjectEzsignbulksendApi(
// If you want use custom http client, pass your client which implements `GuzzleHttp\ClientInterface`.
// This is optional, `GuzzleHttp\Client` will be used as default.
new GuzzleHttp\Client(),
$config
);
$ezsignbulksendCreateObjectV2Request = new \eZmaxAPI\Model\EzsignbulksendCreateObjectV2Request(); // \eZmaxAPI\Model\EzsignbulksendCreateObjectV2Request
try {
$result = $apiInstance->ezsignbulksendCreateObjectV2($ezsignbulksendCreateObjectV2Request);
print_r($result);
} catch (Exception $e) {
echo 'Exception when calling ObjectEzsignbulksendApi->ezsignbulksendCreateObjectV2: ', $e->getMessage(), PHP_EOL;
}| Name | Type | Description | Notes |
|---|---|---|---|
| ezsignbulksendCreateObjectV2Request | \eZmaxAPI\Model\EzsignbulksendCreateObjectV2Request |
\eZmaxAPI\Model\EzsignbulksendCreateObjectV2Response
- Content-Type:
application/json - Accept:
application/json
[Back to top] [Back to API list] [Back to Model list] [Back to README]
ezsignbulksendDeleteObjectV1($pkiEzsignbulksendID): \eZmaxAPI\Model\EzsignbulksendDeleteObjectV1ResponseDelete an existing Ezsignbulksend
<?php
require_once(__DIR__ . '/vendor/autoload.php');
// Configure API key authorization: Authorization
$config = eZmaxAPI\Configuration::getDefaultConfiguration()->setApiKey('Authorization', 'YOUR_API_KEY');
// Uncomment below to setup prefix (e.g. Bearer) for API key, if needed
// $config = eZmaxAPI\Configuration::getDefaultConfiguration()->setApiKeyPrefix('Authorization', 'Bearer');
$apiInstance = new eZmaxAPI\Api\ObjectEzsignbulksendApi(
// If you want use custom http client, pass your client which implements `GuzzleHttp\ClientInterface`.
// This is optional, `GuzzleHttp\Client` will be used as default.
new GuzzleHttp\Client(),
$config
);
$pkiEzsignbulksendID = 56; // int
try {
$result = $apiInstance->ezsignbulksendDeleteObjectV1($pkiEzsignbulksendID);
print_r($result);
} catch (Exception $e) {
echo 'Exception when calling ObjectEzsignbulksendApi->ezsignbulksendDeleteObjectV1: ', $e->getMessage(), PHP_EOL;
}| Name | Type | Description | Notes |
|---|---|---|---|
| pkiEzsignbulksendID | int |
\eZmaxAPI\Model\EzsignbulksendDeleteObjectV1Response
- Content-Type: Not defined
- Accept:
application/json
[Back to top] [Back to API list] [Back to Model list] [Back to README]
ezsignbulksendEditObjectV2($pkiEzsignbulksendID, $ezsignbulksendEditObjectV2Request): \eZmaxAPI\Model\EzsignbulksendEditObjectV2ResponseEdit an existing Ezsignbulksend
<?php
require_once(__DIR__ . '/vendor/autoload.php');
// Configure API key authorization: Authorization
$config = eZmaxAPI\Configuration::getDefaultConfiguration()->setApiKey('Authorization', 'YOUR_API_KEY');
// Uncomment below to setup prefix (e.g. Bearer) for API key, if needed
// $config = eZmaxAPI\Configuration::getDefaultConfiguration()->setApiKeyPrefix('Authorization', 'Bearer');
$apiInstance = new eZmaxAPI\Api\ObjectEzsignbulksendApi(
// If you want use custom http client, pass your client which implements `GuzzleHttp\ClientInterface`.
// This is optional, `GuzzleHttp\Client` will be used as default.
new GuzzleHttp\Client(),
$config
);
$pkiEzsignbulksendID = 56; // int
$ezsignbulksendEditObjectV2Request = new \eZmaxAPI\Model\EzsignbulksendEditObjectV2Request(); // \eZmaxAPI\Model\EzsignbulksendEditObjectV2Request
try {
$result = $apiInstance->ezsignbulksendEditObjectV2($pkiEzsignbulksendID, $ezsignbulksendEditObjectV2Request);
print_r($result);
} catch (Exception $e) {
echo 'Exception when calling ObjectEzsignbulksendApi->ezsignbulksendEditObjectV2: ', $e->getMessage(), PHP_EOL;
}| Name | Type | Description | Notes |
|---|---|---|---|
| pkiEzsignbulksendID | int | ||
| ezsignbulksendEditObjectV2Request | \eZmaxAPI\Model\EzsignbulksendEditObjectV2Request |
\eZmaxAPI\Model\EzsignbulksendEditObjectV2Response
- Content-Type:
application/json - Accept:
application/json
[Back to top] [Back to API list] [Back to Model list] [Back to README]
ezsignbulksendGetBatchFileV1($pkiEzsignbulksendID, $bIncludeSigned, $bIncludeAttachment, $bIncludeProofdocument, $bIncludeProof): \SplFileObjectRetrieve file to download documents in batch
<?php
require_once(__DIR__ . '/vendor/autoload.php');
// Configure API key authorization: Authorization
$config = eZmaxAPI\Configuration::getDefaultConfiguration()->setApiKey('Authorization', 'YOUR_API_KEY');
// Uncomment below to setup prefix (e.g. Bearer) for API key, if needed
// $config = eZmaxAPI\Configuration::getDefaultConfiguration()->setApiKeyPrefix('Authorization', 'Bearer');
$apiInstance = new eZmaxAPI\Api\ObjectEzsignbulksendApi(
// If you want use custom http client, pass your client which implements `GuzzleHttp\ClientInterface`.
// This is optional, `GuzzleHttp\Client` will be used as default.
new GuzzleHttp\Client(),
$config
);
$pkiEzsignbulksendID = 56; // int
$bIncludeSigned = True; // bool | Include final document once all signatures were applied
$bIncludeAttachment = True; // bool | Include attached files in signatures
$bIncludeProofdocument = True; // bool | Include the evidence report
$bIncludeProof = True; // bool | include the complete evidence archive including all of the above and more
try {
$result = $apiInstance->ezsignbulksendGetBatchFileV1($pkiEzsignbulksendID, $bIncludeSigned, $bIncludeAttachment, $bIncludeProofdocument, $bIncludeProof);
print_r($result);
} catch (Exception $e) {
echo 'Exception when calling ObjectEzsignbulksendApi->ezsignbulksendGetBatchFileV1: ', $e->getMessage(), PHP_EOL;
}| Name | Type | Description | Notes |
|---|---|---|---|
| pkiEzsignbulksendID | int | ||
| bIncludeSigned | bool | Include final document once all signatures were applied | [optional] |
| bIncludeAttachment | bool | Include attached files in signatures | [optional] |
| bIncludeProofdocument | bool | Include the evidence report | [optional] |
| bIncludeProof | bool | include the complete evidence archive including all of the above and more | [optional] |
\SplFileObject
- Content-Type: Not defined
- Accept:
text/xml,application/json
[Back to top] [Back to API list] [Back to Model list] [Back to README]
ezsignbulksendGetCsvTemplateV1($pkiEzsignbulksendID, $eCsvSeparator): stringRetrieve an existing Ezsignbulksend's empty Csv template
<?php
require_once(__DIR__ . '/vendor/autoload.php');
// Configure API key authorization: Authorization
$config = eZmaxAPI\Configuration::getDefaultConfiguration()->setApiKey('Authorization', 'YOUR_API_KEY');
// Uncomment below to setup prefix (e.g. Bearer) for API key, if needed
// $config = eZmaxAPI\Configuration::getDefaultConfiguration()->setApiKeyPrefix('Authorization', 'Bearer');
$apiInstance = new eZmaxAPI\Api\ObjectEzsignbulksendApi(
// If you want use custom http client, pass your client which implements `GuzzleHttp\ClientInterface`.
// This is optional, `GuzzleHttp\Client` will be used as default.
new GuzzleHttp\Client(),
$config
);
$pkiEzsignbulksendID = 56; // int
$eCsvSeparator = 'eCsvSeparator_example'; // string | Separator that will be used to separate fields
try {
$result = $apiInstance->ezsignbulksendGetCsvTemplateV1($pkiEzsignbulksendID, $eCsvSeparator);
print_r($result);
} catch (Exception $e) {
echo 'Exception when calling ObjectEzsignbulksendApi->ezsignbulksendGetCsvTemplateV1: ', $e->getMessage(), PHP_EOL;
}| Name | Type | Description | Notes |
|---|---|---|---|
| pkiEzsignbulksendID | int | ||
| eCsvSeparator | string | Separator that will be used to separate fields |
string
- Content-Type: Not defined
- Accept:
text/csv,application/json
[Back to top] [Back to API list] [Back to Model list] [Back to README]
ezsignbulksendGetEzsignbulksendtransmissionsV1($pkiEzsignbulksendID): \eZmaxAPI\Model\EzsignbulksendGetEzsignbulksendtransmissionsV1ResponseRetrieve an existing Ezsignbulksend's Ezsignbulksendtransmissions
<?php
require_once(__DIR__ . '/vendor/autoload.php');
// Configure API key authorization: Authorization
$config = eZmaxAPI\Configuration::getDefaultConfiguration()->setApiKey('Authorization', 'YOUR_API_KEY');
// Uncomment below to setup prefix (e.g. Bearer) for API key, if needed
// $config = eZmaxAPI\Configuration::getDefaultConfiguration()->setApiKeyPrefix('Authorization', 'Bearer');
$apiInstance = new eZmaxAPI\Api\ObjectEzsignbulksendApi(
// If you want use custom http client, pass your client which implements `GuzzleHttp\ClientInterface`.
// This is optional, `GuzzleHttp\Client` will be used as default.
new GuzzleHttp\Client(),
$config
);
$pkiEzsignbulksendID = 56; // int
try {
$result = $apiInstance->ezsignbulksendGetEzsignbulksendtransmissionsV1($pkiEzsignbulksendID);
print_r($result);
} catch (Exception $e) {
echo 'Exception when calling ObjectEzsignbulksendApi->ezsignbulksendGetEzsignbulksendtransmissionsV1: ', $e->getMessage(), PHP_EOL;
}| Name | Type | Description | Notes |
|---|---|---|---|
| pkiEzsignbulksendID | int |
\eZmaxAPI\Model\EzsignbulksendGetEzsignbulksendtransmissionsV1Response
- Content-Type: Not defined
- Accept:
application/json
[Back to top] [Back to API list] [Back to Model list] [Back to README]
ezsignbulksendGetEzsignsignaturesAutomaticV1($pkiEzsignbulksendID): \eZmaxAPI\Model\EzsignbulksendGetEzsignsignaturesAutomaticV1ResponseRetrieve an existing Ezsignbulksend's automatic Ezsignsignatures
Return the Ezsignsignatures that can be signed by the current user at the current step in the process
<?php
require_once(__DIR__ . '/vendor/autoload.php');
// Configure API key authorization: Authorization
$config = eZmaxAPI\Configuration::getDefaultConfiguration()->setApiKey('Authorization', 'YOUR_API_KEY');
// Uncomment below to setup prefix (e.g. Bearer) for API key, if needed
// $config = eZmaxAPI\Configuration::getDefaultConfiguration()->setApiKeyPrefix('Authorization', 'Bearer');
$apiInstance = new eZmaxAPI\Api\ObjectEzsignbulksendApi(
// If you want use custom http client, pass your client which implements `GuzzleHttp\ClientInterface`.
// This is optional, `GuzzleHttp\Client` will be used as default.
new GuzzleHttp\Client(),
$config
);
$pkiEzsignbulksendID = 56; // int
try {
$result = $apiInstance->ezsignbulksendGetEzsignsignaturesAutomaticV1($pkiEzsignbulksendID);
print_r($result);
} catch (Exception $e) {
echo 'Exception when calling ObjectEzsignbulksendApi->ezsignbulksendGetEzsignsignaturesAutomaticV1: ', $e->getMessage(), PHP_EOL;
}| Name | Type | Description | Notes |
|---|---|---|---|
| pkiEzsignbulksendID | int |
\eZmaxAPI\Model\EzsignbulksendGetEzsignsignaturesAutomaticV1Response
- Content-Type: Not defined
- Accept:
application/json
[Back to top] [Back to API list] [Back to Model list] [Back to README]
ezsignbulksendGetFormsDataV1($pkiEzsignbulksendID): \eZmaxAPI\Model\EzsignbulksendGetFormsDataV1ResponseRetrieve an existing Ezsignbulksend's forms data
<?php
require_once(__DIR__ . '/vendor/autoload.php');
// Configure API key authorization: Authorization
$config = eZmaxAPI\Configuration::getDefaultConfiguration()->setApiKey('Authorization', 'YOUR_API_KEY');
// Uncomment below to setup prefix (e.g. Bearer) for API key, if needed
// $config = eZmaxAPI\Configuration::getDefaultConfiguration()->setApiKeyPrefix('Authorization', 'Bearer');
$apiInstance = new eZmaxAPI\Api\ObjectEzsignbulksendApi(
// If you want use custom http client, pass your client which implements `GuzzleHttp\ClientInterface`.
// This is optional, `GuzzleHttp\Client` will be used as default.
new GuzzleHttp\Client(),
$config
);
$pkiEzsignbulksendID = 56; // int
try {
$result = $apiInstance->ezsignbulksendGetFormsDataV1($pkiEzsignbulksendID);
print_r($result);
} catch (Exception $e) {
echo 'Exception when calling ObjectEzsignbulksendApi->ezsignbulksendGetFormsDataV1: ', $e->getMessage(), PHP_EOL;
}| Name | Type | Description | Notes |
|---|---|---|---|
| pkiEzsignbulksendID | int |
\eZmaxAPI\Model\EzsignbulksendGetFormsDataV1Response
- Content-Type: Not defined
- Accept:
application/json,application/zip
[Back to top] [Back to API list] [Back to Model list] [Back to README]
ezsignbulksendGetListV1($eOrderBy, $iRowMax, $iRowOffset, $acceptLanguage, $sFilter): \eZmaxAPI\Model\EzsignbulksendGetListV1ResponseRetrieve Ezsignbulksend list
Enum values that can be filtered in query parameter sFilter: | Variable | Valid values | |---|---| | eEzsignfoldertypePrivacylevel | User
Usergroup |
<?php
require_once(__DIR__ . '/vendor/autoload.php');
// Configure API key authorization: Authorization
$config = eZmaxAPI\Configuration::getDefaultConfiguration()->setApiKey('Authorization', 'YOUR_API_KEY');
// Uncomment below to setup prefix (e.g. Bearer) for API key, if needed
// $config = eZmaxAPI\Configuration::getDefaultConfiguration()->setApiKeyPrefix('Authorization', 'Bearer');
$apiInstance = new eZmaxAPI\Api\ObjectEzsignbulksendApi(
// If you want use custom http client, pass your client which implements `GuzzleHttp\ClientInterface`.
// This is optional, `GuzzleHttp\Client` will be used as default.
new GuzzleHttp\Client(),
$config
);
$eOrderBy = 'eOrderBy_example'; // string | Specify how you want the results to be sorted
$iRowMax = 56; // int
$iRowOffset = 0; // int
$acceptLanguage = new \eZmaxAPI\Model\\eZmaxAPI\Model\HeaderAcceptLanguage(); // \eZmaxAPI\Model\HeaderAcceptLanguage
$sFilter = 'sFilter_example'; // string
try {
$result = $apiInstance->ezsignbulksendGetListV1($eOrderBy, $iRowMax, $iRowOffset, $acceptLanguage, $sFilter);
print_r($result);
} catch (Exception $e) {
echo 'Exception when calling ObjectEzsignbulksendApi->ezsignbulksendGetListV1: ', $e->getMessage(), PHP_EOL;
}| 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 | \eZmaxAPI\Model\HeaderAcceptLanguage | [optional] | |
| sFilter | string | [optional] |
\eZmaxAPI\Model\EzsignbulksendGetListV1Response
- 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]
ezsignbulksendGetObjectV2($pkiEzsignbulksendID): \eZmaxAPI\Model\EzsignbulksendGetObjectV2ResponseRetrieve an existing Ezsignbulksend
<?php
require_once(__DIR__ . '/vendor/autoload.php');
// Configure API key authorization: Authorization
$config = eZmaxAPI\Configuration::getDefaultConfiguration()->setApiKey('Authorization', 'YOUR_API_KEY');
// Uncomment below to setup prefix (e.g. Bearer) for API key, if needed
// $config = eZmaxAPI\Configuration::getDefaultConfiguration()->setApiKeyPrefix('Authorization', 'Bearer');
$apiInstance = new eZmaxAPI\Api\ObjectEzsignbulksendApi(
// If you want use custom http client, pass your client which implements `GuzzleHttp\ClientInterface`.
// This is optional, `GuzzleHttp\Client` will be used as default.
new GuzzleHttp\Client(),
$config
);
$pkiEzsignbulksendID = 56; // int
try {
$result = $apiInstance->ezsignbulksendGetObjectV2($pkiEzsignbulksendID);
print_r($result);
} catch (Exception $e) {
echo 'Exception when calling ObjectEzsignbulksendApi->ezsignbulksendGetObjectV2: ', $e->getMessage(), PHP_EOL;
}| Name | Type | Description | Notes |
|---|---|---|---|
| pkiEzsignbulksendID | int |
\eZmaxAPI\Model\EzsignbulksendGetObjectV2Response
- Content-Type: Not defined
- Accept:
application/json
[Back to top] [Back to API list] [Back to Model list] [Back to README]
ezsignbulksendGetObjectV3($pkiEzsignbulksendID): \eZmaxAPI\Model\EzsignbulksendGetObjectV3ResponseRetrieve an existing Ezsignbulksend
<?php
require_once(__DIR__ . '/vendor/autoload.php');
// Configure API key authorization: Authorization
$config = eZmaxAPI\Configuration::getDefaultConfiguration()->setApiKey('Authorization', 'YOUR_API_KEY');
// Uncomment below to setup prefix (e.g. Bearer) for API key, if needed
// $config = eZmaxAPI\Configuration::getDefaultConfiguration()->setApiKeyPrefix('Authorization', 'Bearer');
$apiInstance = new eZmaxAPI\Api\ObjectEzsignbulksendApi(
// If you want use custom http client, pass your client which implements `GuzzleHttp\ClientInterface`.
// This is optional, `GuzzleHttp\Client` will be used as default.
new GuzzleHttp\Client(),
$config
);
$pkiEzsignbulksendID = 56; // int
try {
$result = $apiInstance->ezsignbulksendGetObjectV3($pkiEzsignbulksendID);
print_r($result);
} catch (Exception $e) {
echo 'Exception when calling ObjectEzsignbulksendApi->ezsignbulksendGetObjectV3: ', $e->getMessage(), PHP_EOL;
}| Name | Type | Description | Notes |
|---|---|---|---|
| pkiEzsignbulksendID | int |
\eZmaxAPI\Model\EzsignbulksendGetObjectV3Response
- Content-Type: Not defined
- Accept:
application/json
[Back to top] [Back to API list] [Back to Model list] [Back to README]
ezsignbulksendReorderV1($pkiEzsignbulksendID, $ezsignbulksendReorderV1Request): \eZmaxAPI\Model\EzsignbulksendReorderV1ResponseReorder Ezsignbulksenddocumentmappings in the Ezsignbulksend
<?php
require_once(__DIR__ . '/vendor/autoload.php');
// Configure API key authorization: Authorization
$config = eZmaxAPI\Configuration::getDefaultConfiguration()->setApiKey('Authorization', 'YOUR_API_KEY');
// Uncomment below to setup prefix (e.g. Bearer) for API key, if needed
// $config = eZmaxAPI\Configuration::getDefaultConfiguration()->setApiKeyPrefix('Authorization', 'Bearer');
$apiInstance = new eZmaxAPI\Api\ObjectEzsignbulksendApi(
// If you want use custom http client, pass your client which implements `GuzzleHttp\ClientInterface`.
// This is optional, `GuzzleHttp\Client` will be used as default.
new GuzzleHttp\Client(),
$config
);
$pkiEzsignbulksendID = 56; // int
$ezsignbulksendReorderV1Request = new \eZmaxAPI\Model\EzsignbulksendReorderV1Request(); // \eZmaxAPI\Model\EzsignbulksendReorderV1Request
try {
$result = $apiInstance->ezsignbulksendReorderV1($pkiEzsignbulksendID, $ezsignbulksendReorderV1Request);
print_r($result);
} catch (Exception $e) {
echo 'Exception when calling ObjectEzsignbulksendApi->ezsignbulksendReorderV1: ', $e->getMessage(), PHP_EOL;
}| Name | Type | Description | Notes |
|---|---|---|---|
| pkiEzsignbulksendID | int | ||
| ezsignbulksendReorderV1Request | \eZmaxAPI\Model\EzsignbulksendReorderV1Request |
\eZmaxAPI\Model\EzsignbulksendReorderV1Response
- Content-Type:
application/json - Accept:
application/json
[Back to top] [Back to API list] [Back to Model list] [Back to README]