Skip to content

Latest commit

 

History

History
56 lines (37 loc) · 1.45 KB

FileApi.md

File metadata and controls

56 lines (37 loc) · 1.45 KB

Swagger\Client\FileApi

All URIs are relative to https://api.billit.be

Method HTTP request Description
fileGetOrders GET /v1/files/{fileID}

fileGetOrders

\Swagger\Client\Model\File fileGetOrders($file_id)

Example

<?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;
}
?>

Parameters

Name Type Description Notes
file_id string

Return type

\Swagger\Client\Model\File

Authorization

No authorization required

HTTP request headers

  • 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]