All URIs are relative to https://my.sevdesk.de/api/v1, except if the operation defines another base path.
Method | HTTP request | Description |
---|---|---|
createPart() | POST /Part | Create a new part |
getPartById() | GET /Part/{partId} | Find part by ID |
getParts() | GET /Part | Retrieve parts |
partGetStock() | GET /Part/{partId}/getStock | Get stock of a part |
updatePart() | PUT /Part/{partId} | Update an existing part |
createPart($model_part): \Itsmind\Sevdesk\Model\CreatePart201Response
Create a new part
Creates a part in your sevdesk inventory.
<?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\PartApi(
// 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
);
$model_part = new \Itsmind\Sevdesk\Model\ModelPart(); // \Itsmind\Sevdesk\Model\ModelPart | Creation data. Please be aware, that you need to provide at least all required parameter of the part model!
try {
$result = $apiInstance->createPart($model_part);
print_r($result);
} catch (Exception $e) {
echo 'Exception when calling PartApi->createPart: ', $e->getMessage(), PHP_EOL;
}
Name | Type | Description | Notes |
---|---|---|---|
model_part | \Itsmind\Sevdesk\Model\ModelPart | Creation data. Please be aware, that you need to provide at least all required parameter of the part model! | [optional] |
\Itsmind\Sevdesk\Model\CreatePart201Response
- Content-Type:
application/json
- Accept:
application/json
[Back to top] [Back to API list] [Back to Model list] [Back to README]
getPartById($part_id): \Itsmind\Sevdesk\Model\GetPartById200Response
Find part by ID
Returns a single part
<?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\PartApi(
// 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
);
$part_id = 56; // int | ID of part to return
try {
$result = $apiInstance->getPartById($part_id);
print_r($result);
} catch (Exception $e) {
echo 'Exception when calling PartApi->getPartById: ', $e->getMessage(), PHP_EOL;
}
Name | Type | Description | Notes |
---|---|---|---|
part_id | int | ID of part to return |
\Itsmind\Sevdesk\Model\GetPartById200Response
- Content-Type: Not defined
- Accept:
application/json
[Back to top] [Back to API list] [Back to Model list] [Back to README]
getParts($part_number, $name, $count_all, $offset, $limit, $embed): \Itsmind\Sevdesk\Model\GetParts200Response
Retrieve parts
Retrieve all parts in your sevdesk inventory according to the applied filters.
<?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\PartApi(
// 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
);
$part_number = 'part_number_example'; // string | Retrieve all parts with this part number
$name = 'name_example'; // string | Retrieve all parts with this name
$count_all = True; // bool | If all objects should be counted
$offset = 56; // int | Which offset to start with
$limit = 56; // int | The max number of objects to return
$embed = array('embed_example'); // string[] | Get some additional information. Embed can handle multiple values, they must be separated by comma.
try {
$result = $apiInstance->getParts($part_number, $name, $count_all, $offset, $limit, $embed);
print_r($result);
} catch (Exception $e) {
echo 'Exception when calling PartApi->getParts: ', $e->getMessage(), PHP_EOL;
}
Name | Type | Description | Notes |
---|---|---|---|
part_number | string | Retrieve all parts with this part number | [optional] |
name | string | Retrieve all parts with this name | [optional] |
count_all | bool | If all objects should be counted | [optional] |
offset | int | Which offset to start with | [optional] |
limit | int | The max number of objects to return | [optional] |
embed | string[] | Get some additional information. Embed can handle multiple values, they must be separated by comma. | [optional] |
\Itsmind\Sevdesk\Model\GetParts200Response
- Content-Type: Not defined
- Accept:
application/json
[Back to top] [Back to API list] [Back to Model list] [Back to README]
partGetStock($part_id): \Itsmind\Sevdesk\Model\PartGetStock200Response
Get stock of a part
Returns the current stock amount of the given part.
<?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\PartApi(
// 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
);
$part_id = 56; // int | ID of part for which you want the current stock.
try {
$result = $apiInstance->partGetStock($part_id);
print_r($result);
} catch (Exception $e) {
echo 'Exception when calling PartApi->partGetStock: ', $e->getMessage(), PHP_EOL;
}
Name | Type | Description | Notes |
---|---|---|---|
part_id | int | ID of part for which you want the current stock. |
\Itsmind\Sevdesk\Model\PartGetStock200Response
- Content-Type: Not defined
- Accept:
application/json
[Back to top] [Back to API list] [Back to Model list] [Back to README]
updatePart($part_id, $model_part_update): \Itsmind\Sevdesk\Model\CreatePart201Response
Update an existing part
Update a part
<?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\PartApi(
// 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
);
$part_id = 56; // int | ID of part to update
$model_part_update = new \Itsmind\Sevdesk\Model\ModelPartUpdate(); // \Itsmind\Sevdesk\Model\ModelPartUpdate | Update data
try {
$result = $apiInstance->updatePart($part_id, $model_part_update);
print_r($result);
} catch (Exception $e) {
echo 'Exception when calling PartApi->updatePart: ', $e->getMessage(), PHP_EOL;
}
Name | Type | Description | Notes |
---|---|---|---|
part_id | int | ID of part to update | |
model_part_update | \Itsmind\Sevdesk\Model\ModelPartUpdate | Update data | [optional] |
\Itsmind\Sevdesk\Model\CreatePart201Response
- Content-Type:
application/json
- Accept:
application/json
[Back to top] [Back to API list] [Back to Model list] [Back to README]