All URIs are relative to https://my.sevdesk.de/api/v1
Method | HTTP request | Description |
---|---|---|
reportContact | GET /Report/contactlist | Export contact list |
reportInvoice | GET /Report/invoicelist | Export invoice list |
reportOrder | GET /Report/orderlist | Export order list |
reportVoucher | GET /Report/voucherlist | Export voucher list |
object reportContact($sev_query, $download)
Export contact list
Export contact list
<?php
require_once(__DIR__ . '/vendor/autoload.php');
// Configure API key authorization: api_key
$config = Swagger\Client\Configuration::getDefaultConfiguration()->setApiKey('Authorization', 'YOUR_API_KEY');
// Uncomment below to setup prefix (e.g. Bearer) for API key, if needed
// $config = Swagger\Client\Configuration::getDefaultConfiguration()->setApiKeyPrefix('Authorization', 'Bearer');
$apiInstance = new Swagger\Client\Api\ReportApi(
// 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(),
$config
);
$sev_query = new \Swagger\Client\Model\SevQuery7(); // \Swagger\Client\Model\SevQuery7 |
$download = true; // bool |
try {
$result = $apiInstance->reportContact($sev_query, $download);
print_r($result);
} catch (Exception $e) {
echo 'Exception when calling ReportApi->reportContact: ', $e->getMessage(), PHP_EOL;
}
?>
Name | Type | Description | Notes |
---|---|---|---|
sev_query | \Swagger\Client\Model\SevQuery7 | ||
download | bool | [optional] |
object
- Content-Type: Not defined
- Accept: application/json
[Back to top] [Back to API list] [Back to Model list] [Back to README]
object reportInvoice($sev_query, $download)
Export invoice list
Export invoice list
<?php
require_once(__DIR__ . '/vendor/autoload.php');
// Configure API key authorization: api_key
$config = Swagger\Client\Configuration::getDefaultConfiguration()->setApiKey('Authorization', 'YOUR_API_KEY');
// Uncomment below to setup prefix (e.g. Bearer) for API key, if needed
// $config = Swagger\Client\Configuration::getDefaultConfiguration()->setApiKeyPrefix('Authorization', 'Bearer');
$apiInstance = new Swagger\Client\Api\ReportApi(
// 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(),
$config
);
$sev_query = new \Swagger\Client\Model\SevQuery2(); // \Swagger\Client\Model\SevQuery2 |
$download = true; // bool |
try {
$result = $apiInstance->reportInvoice($sev_query, $download);
print_r($result);
} catch (Exception $e) {
echo 'Exception when calling ReportApi->reportInvoice: ', $e->getMessage(), PHP_EOL;
}
?>
Name | Type | Description | Notes |
---|---|---|---|
sev_query | \Swagger\Client\Model\SevQuery2 | ||
download | bool | [optional] |
object
- Content-Type: Not defined
- Accept: application/json
[Back to top] [Back to API list] [Back to Model list] [Back to README]
object reportOrder($sev_query, $download)
Export order list
Export order list
<?php
require_once(__DIR__ . '/vendor/autoload.php');
// Configure API key authorization: api_key
$config = Swagger\Client\Configuration::getDefaultConfiguration()->setApiKey('Authorization', 'YOUR_API_KEY');
// Uncomment below to setup prefix (e.g. Bearer) for API key, if needed
// $config = Swagger\Client\Configuration::getDefaultConfiguration()->setApiKeyPrefix('Authorization', 'Bearer');
$apiInstance = new Swagger\Client\Api\ReportApi(
// 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(),
$config
);
$sev_query = new \Swagger\Client\Model\SevQuery3(); // \Swagger\Client\Model\SevQuery3 |
$download = true; // bool |
try {
$result = $apiInstance->reportOrder($sev_query, $download);
print_r($result);
} catch (Exception $e) {
echo 'Exception when calling ReportApi->reportOrder: ', $e->getMessage(), PHP_EOL;
}
?>
Name | Type | Description | Notes |
---|---|---|---|
sev_query | \Swagger\Client\Model\SevQuery3 | ||
download | bool | [optional] |
object
- Content-Type: Not defined
- Accept: application/json
[Back to top] [Back to API list] [Back to Model list] [Back to README]
object reportVoucher($sev_query, $download)
Export voucher list
Export voucher list
<?php
require_once(__DIR__ . '/vendor/autoload.php');
// Configure API key authorization: api_key
$config = Swagger\Client\Configuration::getDefaultConfiguration()->setApiKey('Authorization', 'YOUR_API_KEY');
// Uncomment below to setup prefix (e.g. Bearer) for API key, if needed
// $config = Swagger\Client\Configuration::getDefaultConfiguration()->setApiKeyPrefix('Authorization', 'Bearer');
$apiInstance = new Swagger\Client\Api\ReportApi(
// 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(),
$config
);
$sev_query = new \Swagger\Client\Model\SevQuery5(); // \Swagger\Client\Model\SevQuery5 |
$download = true; // bool |
try {
$result = $apiInstance->reportVoucher($sev_query, $download);
print_r($result);
} catch (Exception $e) {
echo 'Exception when calling ReportApi->reportVoucher: ', $e->getMessage(), PHP_EOL;
}
?>
Name | Type | Description | Notes |
---|---|---|---|
sev_query | \Swagger\Client\Model\SevQuery5 | ||
download | bool | [optional] |
object
- Content-Type: Not defined
- Accept: application/json
[Back to top] [Back to API list] [Back to Model list] [Back to README]