Skip to content

Latest commit

 

History

History
70 lines (48 loc) · 2.14 KB

ObjectEzsignpageApi.md

File metadata and controls

70 lines (48 loc) · 2.14 KB

eZmaxAPI\ObjectEzsignpageApi

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
ezsignpageConsultV1() POST /1/object/ezsignpage/{pkiEzsignpageID}/consult Consult an Ezsignpage

ezsignpageConsultV1()

ezsignpageConsultV1($pkiEzsignpageID, $body): \eZmaxAPI\Model\EzsignpageConsultV1Response

Consult an Ezsignpage

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\ObjectEzsignpageApi(
    // 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
);
$pkiEzsignpageID = 56; // int
$body = array('key' => new \stdClass); // object

try {
    $result = $apiInstance->ezsignpageConsultV1($pkiEzsignpageID, $body);
    print_r($result);
} catch (Exception $e) {
    echo 'Exception when calling ObjectEzsignpageApi->ezsignpageConsultV1: ', $e->getMessage(), PHP_EOL;
}

Parameters

Name Type Description Notes
pkiEzsignpageID int
body object

Return type

\eZmaxAPI\Model\EzsignpageConsultV1Response

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]