All URIs are relative to https://api.billit.be
Method | HTTP request | Description |
---|---|---|
fileGetOrders | GET /v1/files/{fileID} |
\Swagger\Client\Model\File fileGetOrders($file_id)
<?php
require_once(__DIR__ . '/vendor/autoload.php');
$apiInstance = new Swagger\Client\Api\FileApi(
// 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()
);
$file_id = "file_id_example"; // string |
try {
$result = $apiInstance->fileGetOrders($file_id);
print_r($result);
} catch (Exception $e) {
echo 'Exception when calling FileApi->fileGetOrders: ', $e->getMessage(), PHP_EOL;
}
?>
Name | Type | Description | Notes |
---|---|---|---|
file_id | string |
No authorization required
- Content-Type: Not defined
- Accept: application/json, text/json, application/xml, text/xml
[Back to top] [Back to API list] [Back to Model list] [Back to README]