All URIs are relative to https://my.sevdesk.de/api/v1, except if the operation defines another base path.
| 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 |
reportContact($sev_query, $download): \Itsmind\Sevdesk\Model\ReportContact200ResponseExport contact list
Export contact list
<?php
require_once(__DIR__ . '/vendor/autoload.php');
// Configure API key authorization: api_key
$config = Itsmind\Sevdesk\Configuration::getDefaultConfiguration()->setApiKey('Authorization', 'YOUR_API_KEY');
// Uncomment below to setup prefix (e.g. Bearer) for API key, if needed
// $config = Itsmind\Sevdesk\Configuration::getDefaultConfiguration()->setApiKeyPrefix('Authorization', 'Bearer');
$apiInstance = new Itsmind\Sevdesk\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 \Itsmind\Sevdesk\Model\ReportContactSevQueryParameter(); // ReportContactSevQueryParameter
$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 | ReportContactSevQueryParameter | ||
| download | bool | [optional] |
\Itsmind\Sevdesk\Model\ReportContact200Response
- Content-Type: Not defined
- Accept:
application/json
[Back to top] [Back to API list] [Back to Model list] [Back to README]
reportInvoice($view, $sev_query, $download): \Itsmind\Sevdesk\Model\ReportInvoice200ResponseExport invoice list
Export invoice list
<?php
require_once(__DIR__ . '/vendor/autoload.php');
// Configure API key authorization: api_key
$config = Itsmind\Sevdesk\Configuration::getDefaultConfiguration()->setApiKey('Authorization', 'YOUR_API_KEY');
// Uncomment below to setup prefix (e.g. Bearer) for API key, if needed
// $config = Itsmind\Sevdesk\Configuration::getDefaultConfiguration()->setApiKeyPrefix('Authorization', 'Bearer');
$apiInstance = new Itsmind\Sevdesk\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
);
$view = all; // string
$sev_query = new \Itsmind\Sevdesk\Model\ReportInvoiceSevQueryParameter(); // ReportInvoiceSevQueryParameter
$download = True; // bool
try {
$result = $apiInstance->reportInvoice($view, $sev_query, $download);
print_r($result);
} catch (Exception $e) {
echo 'Exception when calling ReportApi->reportInvoice: ', $e->getMessage(), PHP_EOL;
}| Name | Type | Description | Notes |
|---|---|---|---|
| view | string | ||
| sev_query | ReportInvoiceSevQueryParameter | ||
| download | bool | [optional] |
\Itsmind\Sevdesk\Model\ReportInvoice200Response
- Content-Type: Not defined
- Accept:
application/json
[Back to top] [Back to API list] [Back to Model list] [Back to README]
reportOrder($view, $sev_query, $download): \Itsmind\Sevdesk\Model\ReportOrder200ResponseExport order list
Export order list
<?php
require_once(__DIR__ . '/vendor/autoload.php');
// Configure API key authorization: api_key
$config = Itsmind\Sevdesk\Configuration::getDefaultConfiguration()->setApiKey('Authorization', 'YOUR_API_KEY');
// Uncomment below to setup prefix (e.g. Bearer) for API key, if needed
// $config = Itsmind\Sevdesk\Configuration::getDefaultConfiguration()->setApiKeyPrefix('Authorization', 'Bearer');
$apiInstance = new Itsmind\Sevdesk\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
);
$view = all; // string
$sev_query = new \Itsmind\Sevdesk\Model\ReportOrderSevQueryParameter(); // ReportOrderSevQueryParameter
$download = True; // bool
try {
$result = $apiInstance->reportOrder($view, $sev_query, $download);
print_r($result);
} catch (Exception $e) {
echo 'Exception when calling ReportApi->reportOrder: ', $e->getMessage(), PHP_EOL;
}| Name | Type | Description | Notes |
|---|---|---|---|
| view | string | ||
| sev_query | ReportOrderSevQueryParameter | ||
| download | bool | [optional] |
\Itsmind\Sevdesk\Model\ReportOrder200Response
- Content-Type: Not defined
- Accept:
application/json
[Back to top] [Back to API list] [Back to Model list] [Back to README]
reportVoucher($sev_query, $download): \Itsmind\Sevdesk\Model\ReportVoucher200ResponseExport voucher list
Export voucher list
<?php
require_once(__DIR__ . '/vendor/autoload.php');
// Configure API key authorization: api_key
$config = Itsmind\Sevdesk\Configuration::getDefaultConfiguration()->setApiKey('Authorization', 'YOUR_API_KEY');
// Uncomment below to setup prefix (e.g. Bearer) for API key, if needed
// $config = Itsmind\Sevdesk\Configuration::getDefaultConfiguration()->setApiKeyPrefix('Authorization', 'Bearer');
$apiInstance = new Itsmind\Sevdesk\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 \Itsmind\Sevdesk\Model\ReportVoucherSevQueryParameter(); // ReportVoucherSevQueryParameter
$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 | ReportVoucherSevQueryParameter | ||
| download | bool | [optional] |
\Itsmind\Sevdesk\Model\ReportVoucher200Response
- Content-Type: Not defined
- Accept:
application/json
[Back to top] [Back to API list] [Back to Model list] [Back to README]