Skip to content

Latest commit

 

History

History
62 lines (41 loc) · 1.61 KB

DocumentBatchApi.md

File metadata and controls

62 lines (41 loc) · 1.61 KB

SynergiTech\Iplicit\DocumentBatchApi

All URIs are relative to https://api.iplicit.com, except if the operation defines another base path.

Method HTTP request Description
unpostDocumentBatch() POST /api/DocumentBatch/{idOrBatchNo}/unpost Unpost a document

unpostDocumentBatch()

unpostDocumentBatch($idOrBatchNo): string

Unpost a document

Example

<?php
require_once(__DIR__ . '/vendor/autoload.php');



$apiInstance = new SynergiTech\Iplicit\Api\DocumentBatchApi(
    // If you want use custom http client, pass your client which implements `GuzzleHttp\ClientInterface`.
    // This is optional, `GuzzleHttp\Client` will be used as default.
    config: $config
);
$idOrBatchNo = 'idOrBatchNo_example'; // string | Batch id or Batch number.

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

Parameters

Name Type Description Notes
idOrBatchNo string Batch id or Batch number.

Return type

string

Authorization

No authorization required

HTTP request headers

  • Content-Type: Not defined
  • Accept: text/plain, application/json, text/json

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