All URIs are relative to https://api.billit.be
Method | HTTP request | Description |
---|---|---|
financialTransactionGetBankTransactions | GET /v1/financialTransactions | |
financialTransactionPostImport | POST /v1/financialTransactions/commands/import | |
financialTransactionPostImportFile | POST /v1/financialTransactions/importFile |
financialTransactionGetBankTransactions($full_text_search)
<?php
require_once(__DIR__ . '/vendor/autoload.php');
$apiInstance = new Swagger\Client\Api\FinancialTransactionApi(
// 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()
);
$full_text_search = "full_text_search_example"; // string |
try {
$apiInstance->financialTransactionGetBankTransactions($full_text_search);
} catch (Exception $e) {
echo 'Exception when calling FinancialTransactionApi->financialTransactionGetBankTransactions: ', $e->getMessage(), PHP_EOL;
}
?>
Name | Type | Description | Notes |
---|---|---|---|
full_text_search | string | [optional] |
void (empty response body)
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]
financialTransactionPostImport($transactions)
<?php
require_once(__DIR__ . '/vendor/autoload.php');
$apiInstance = new Swagger\Client\Api\FinancialTransactionApi(
// 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()
);
$transactions = array(new \Swagger\Client\Model\Transaction()); // \Swagger\Client\Model\Transaction[] |
try {
$apiInstance->financialTransactionPostImport($transactions);
} catch (Exception $e) {
echo 'Exception when calling FinancialTransactionApi->financialTransactionPostImport: ', $e->getMessage(), PHP_EOL;
}
?>
Name | Type | Description | Notes |
---|---|---|---|
transactions | \Swagger\Client\Model\Transaction[] |
void (empty response body)
No authorization required
- Content-Type: application/json, text/json, application/xml, text/xml, application/x-www-form-urlencoded
- Accept: application/json, text/json, application/xml, text/xml
[Back to top] [Back to API list] [Back to Model list] [Back to README]
financialTransactionPostImportFile($import_file)
<?php
require_once(__DIR__ . '/vendor/autoload.php');
$apiInstance = new Swagger\Client\Api\FinancialTransactionApi(
// 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()
);
$import_file = new \Swagger\Client\Model\File(); // \Swagger\Client\Model\File |
try {
$apiInstance->financialTransactionPostImportFile($import_file);
} catch (Exception $e) {
echo 'Exception when calling FinancialTransactionApi->financialTransactionPostImportFile: ', $e->getMessage(), PHP_EOL;
}
?>
Name | Type | Description | Notes |
---|---|---|---|
import_file | \Swagger\Client\Model\File |
void (empty response body)
No authorization required
- Content-Type: application/json, text/json, application/xml, text/xml, application/x-www-form-urlencoded
- Accept: application/json, text/json, application/xml, text/xml
[Back to top] [Back to API list] [Back to Model list] [Back to README]