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($idOrBatchNo): string
Unpost a document
<?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;
}
Name | Type | Description | Notes |
---|---|---|---|
idOrBatchNo | string | Batch id or Batch number. |
string
No authorization required
- 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]