Skip to content

Latest commit

 

History

History
198 lines (131 loc) · 7.73 KB

File metadata and controls

198 lines (131 loc) · 7.73 KB

eZmaxAPI\ObjectEzsigntemplatepackagesignermembershipApi

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
ezsigntemplatepackagesignermembershipCreateObjectV1() POST /1/object/ezsigntemplatepackagesignermembership Create a new Ezsigntemplatepackagesignermembership
ezsigntemplatepackagesignermembershipDeleteObjectV1() DELETE /1/object/ezsigntemplatepackagesignermembership/{pkiEzsigntemplatepackagesignermembershipID} Delete an existing Ezsigntemplatepackagesignermembership
ezsigntemplatepackagesignermembershipGetObjectV2() GET /2/object/ezsigntemplatepackagesignermembership/{pkiEzsigntemplatepackagesignermembershipID} Retrieve an existing Ezsigntemplatepackagesignermembership

ezsigntemplatepackagesignermembershipCreateObjectV1()

ezsigntemplatepackagesignermembershipCreateObjectV1($ezsigntemplatepackagesignermembershipCreateObjectV1Request): \eZmaxAPI\Model\EzsigntemplatepackagesignermembershipCreateObjectV1Response

Create a new Ezsigntemplatepackagesignermembership

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

Example

<?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\ObjectEzsigntemplatepackagesignermembershipApi(
    // 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
);
$ezsigntemplatepackagesignermembershipCreateObjectV1Request = new \eZmaxAPI\Model\EzsigntemplatepackagesignermembershipCreateObjectV1Request(); // \eZmaxAPI\Model\EzsigntemplatepackagesignermembershipCreateObjectV1Request

try {
    $result = $apiInstance->ezsigntemplatepackagesignermembershipCreateObjectV1($ezsigntemplatepackagesignermembershipCreateObjectV1Request);
    print_r($result);
} catch (Exception $e) {
    echo 'Exception when calling ObjectEzsigntemplatepackagesignermembershipApi->ezsigntemplatepackagesignermembershipCreateObjectV1: ', $e->getMessage(), PHP_EOL;
}

Parameters

Name Type Description Notes
ezsigntemplatepackagesignermembershipCreateObjectV1Request \eZmaxAPI\Model\EzsigntemplatepackagesignermembershipCreateObjectV1Request

Return type

\eZmaxAPI\Model\EzsigntemplatepackagesignermembershipCreateObjectV1Response

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]

ezsigntemplatepackagesignermembershipDeleteObjectV1()

ezsigntemplatepackagesignermembershipDeleteObjectV1($pkiEzsigntemplatepackagesignermembershipID): \eZmaxAPI\Model\EzsigntemplatepackagesignermembershipDeleteObjectV1Response

Delete an existing Ezsigntemplatepackagesignermembership

Example

<?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\ObjectEzsigntemplatepackagesignermembershipApi(
    // 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
);
$pkiEzsigntemplatepackagesignermembershipID = 56; // int

try {
    $result = $apiInstance->ezsigntemplatepackagesignermembershipDeleteObjectV1($pkiEzsigntemplatepackagesignermembershipID);
    print_r($result);
} catch (Exception $e) {
    echo 'Exception when calling ObjectEzsigntemplatepackagesignermembershipApi->ezsigntemplatepackagesignermembershipDeleteObjectV1: ', $e->getMessage(), PHP_EOL;
}

Parameters

Name Type Description Notes
pkiEzsigntemplatepackagesignermembershipID int

Return type

\eZmaxAPI\Model\EzsigntemplatepackagesignermembershipDeleteObjectV1Response

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]

ezsigntemplatepackagesignermembershipGetObjectV2()

ezsigntemplatepackagesignermembershipGetObjectV2($pkiEzsigntemplatepackagesignermembershipID): \eZmaxAPI\Model\EzsigntemplatepackagesignermembershipGetObjectV2Response

Retrieve an existing Ezsigntemplatepackagesignermembership

Example

<?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\ObjectEzsigntemplatepackagesignermembershipApi(
    // 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
);
$pkiEzsigntemplatepackagesignermembershipID = 56; // int

try {
    $result = $apiInstance->ezsigntemplatepackagesignermembershipGetObjectV2($pkiEzsigntemplatepackagesignermembershipID);
    print_r($result);
} catch (Exception $e) {
    echo 'Exception when calling ObjectEzsigntemplatepackagesignermembershipApi->ezsigntemplatepackagesignermembershipGetObjectV2: ', $e->getMessage(), PHP_EOL;
}

Parameters

Name Type Description Notes
pkiEzsigntemplatepackagesignermembershipID int

Return type

\eZmaxAPI\Model\EzsigntemplatepackagesignermembershipGetObjectV2Response

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]