Netilion.Api
1.0.0
dotnet add package Netilion.Api --version 1.0.0
NuGet\Install-Package Netilion.Api -Version 1.0.0
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="Netilion.Api" Version="1.0.0" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="Netilion.Api" Version="1.0.0" />
<PackageReference Include="Netilion.Api" />
For projects that support Central Package Management (CPM), copy this XML node into the solution Directory.Packages.props file to version the package.
paket add Netilion.Api --version 1.0.0
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
#r "nuget: Netilion.Api, 1.0.0"
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
#:package Netilion.Api@1.0.0
#:package directive can be used in C# file-based apps starting in .NET 10 preview 4. Copy this into a .cs file before any lines of code to reference the package.
#addin nuget:?package=Netilion.Api&version=1.0.0
#tool nuget:?package=Netilion.Api&version=1.0.0
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
Netilion.Api - the C# library for the Netilion API
This is a C# client to acccess Netilion REST API.
Swagger UI can be found at Staging API or Production API
Please visit our developer portal for further instructions and information: https://developer.netilion.endress.com/
Frameworks supported
- .NET 4.5 or later
Usage example
using System;
using System.Diagnostics;
using System.Net;
using Netilion.Api.Api;
using Netilion.Api.Client;
using Netilion.Api.Model;
namespace TestNetilion
{
public class TestNetilion
{
static public void Main()
{
// "https://api.iiot.endress.com/v1" for productive access
Configuration.Default.BasePath = "https://api.staging-env.iiot.endress.com/v1";
Configuration.Default.ApiKey.Add("API-Key", "YOUR_BASIC_API_KEY");
Configuration.Default.Username = "YOUR_EMAIL";
Configuration.Default.Password = "YOUR_PASSWORD";
// Ensure TLS works
ServicePointManager.Expect100Continue = true;
ServicePointManager.SecurityProtocol = SecurityProtocolType.Tls
| SecurityProtocolType.Tls11
| SecurityProtocolType.Tls12
| SecurityProtocolType.Ssl3;
// Create object to access Endpoint
var apiInstance = new AssetApi(Configuration.Default);
try
{
// Get assets owned by the user, see https://api.staging-env.netilion.endress.com/doc/v1#/Asset/getAssets
AssetsResponse result = apiInstance.GetAssets();
Console.WriteLine(result);
Console.ReadKey();
}
catch (Exception e)
{
Console.WriteLine(e.Message);
}
}
}
}
<a name="documentation-for-api-endpoints"></a>
Documentation for API Endpoints
All URIs are relative to /v1
| Class | Method | HTTP request | Description |
|---|---|---|---|
| APIKeyApi | CreateAPIKey | POST /api_keys | Create a new APIKey |
| APIKeyApi | DeleteAPIKey | DELETE /api_keys/{id} | Delete an APIKey |
| APIKeyApi | GetAPIKeyById | GET /api_keys/{id} | Get a single APIKey |
| APIKeyApi | GetAPIKeys | GET /api_keys | Get a range of APIKeys |
| APIKeyApi | UpdateAPIKey | PATCH /api_keys/{id} | Update an APIKey |
| APISubscriptionApi | AddAssetsToAPISubscription | POST /api_subscriptions/{id}/assets | Add assets to an api subscription |
| APISubscriptionApi | AddEdgeDevicesToApiSubscription | POST /api_subscriptions/{id}/edge_devices | Add edge devices to an api subscription |
| APISubscriptionApi | CreateAPISubscription | POST /api_subscriptions | Create a new api subscription |
| APISubscriptionApi | DeleteAPISubscription | DELETE /api_subscriptions/{id} | Delete an api subscription |
| APISubscriptionApi | GetAPISubscriptionById | GET /api_subscriptions/{id} | Get a single api subscription |
| APISubscriptionApi | GetAPISubscriptions | GET /api_subscriptions | Get a range of api subscriptions |
| APISubscriptionApi | GetAssetsOfAPISubscription | GET /api_subscriptions/{id}/assets | Get all assets of an api subscription |
| APISubscriptionApi | GetEdgeDevicesOfAPISubscription | GET /api_subscriptions/{id}/edge_devices | Get all edge devices of an api subscription |
| APISubscriptionApi | GetSpecificationsOfAPISubscription | GET /api_subscriptions/{id}/specifications | Get specifications of an api subscription |
| APISubscriptionApi | RemoveAssetsFromAPISubscription | DELETE /api_subscriptions/{id}/assets | Remove assets from an api subscription |
| APISubscriptionApi | RemoveEdgeDevicesFromApiSubscription | DELETE /api_subscriptions/{id}/edge_devices | Remove edge devices from an api subscription |
| APISubscriptionApi | RemoveSpecificationsFromAPISubscriptions | DELETE /api_subscriptions/{id}/specifications | Delete specifications of an api subscription |
| APISubscriptionApi | RenameSpecificationsOfAPISubscriptions | PATCH /api_subscriptions/{id}/specifications/rename | Rename a specification key |
| APISubscriptionApi | ReplaceAssetsOfAPISubscription | PATCH /api_subscriptions/{id}/assets | Replace the assets of an api subscription |
| APISubscriptionApi | ReplaceEdgeDevicesOfApiSubscription | PATCH /api_subscriptions/{id}/edge_devices | Replace the edge devices of an api subscription |
| APISubscriptionApi | UpdateAPISubscription | PATCH /api_subscriptions/{id} | Update an api subscription |
| APISubscriptionApi | UpdateSpecificationsOfAPISubscriptions | PATCH /api_subscriptions/{id}/specifications | Update specifications of an api subscription |
| AssetApi | AddAddOnsToAsset | POST /assets/{asset_id}/add_ons | Add add_ons to an asset |
| AssetApi | AddAssetPictureLink | POST /assets/{id}/pictures/links | Add a link as asset picture |
| AssetApi | AddDeliveriesToAsset | POST /assets/{asset_id}/deliveries | Add deliveries to an asset |
| AssetApi | AddDocumentsToAsset | POST /assets/{asset_id}/documents | Add documents to an asset |
| AssetApi | AddInstrumentationsToAsset | POST /assets/{asset_id}/instrumentations | Add instrumentations to an asset |
| AssetApi | AddNodesToAsset | POST /assets/{asset_id}/nodes | Add nodes to an asset |
| AssetApi | AddSoftwaresToAsset | POST /assets/{asset_id}/softwares | Add software to an asset |
| AssetApi | CreateAsset | POST /assets | Create a new asset |
| AssetApi | CreateAssetContainer | POST /assets/{id}/containers | Create an export for a standard container |
| AssetApi | CreateAssetValueObjects | POST /assets/{asset_id}/value_objects | Create asset value objects |
| AssetApi | CreateAssetValues | POST /assets/{asset_id}/values | Create asset values |
| AssetApi | CreateEventForAsset | POST /assets/{asset_id}/events | Create a new event for an asset |
| AssetApi | DeleteAsset | DELETE /assets/{id} | Delete an asset |
| AssetApi | DeleteAssetPicture | DELETE /assets/{asset_id}/pictures/{id} | Delete an asset picture |
| AssetApi | DeleteSpecificationsOfAsset | DELETE /assets/{asset_id}/specifications | Delete specifications of an asset |
| AssetApi | DownloadAssetPicture | GET /assets/{asset_id}/pictures/{id}/download | Download an asset picture |
| AssetApi | GetAddOnsOfAsset | GET /assets/{asset_id}/add_ons | Get all add_ons of one asset |
| AssetApi | GetApiSubscriptionsOfAsset | GET /assets/{asset_id}/api_subscriptions | Get all API subscriptions of the asset |
| AssetApi | GetAssetById | GET /assets/{id} | Get a single asset |
| AssetApi | GetAssetCompanyOptions | GET /assets/{asset_id}/company-options | Get all possible companies of the specified assets |
| AssetApi | GetAssetHistory | GET /assets/{asset_id}/history | Get the history of an asset |
| AssetApi | GetAssetIdStatus | GET /assets/{asset_id}/status | Get the status of the specific asset |
| AssetApi | GetAssetPicture | GET /assets/{asset_id}/pictures/{id} | Get an asset picture |
| AssetApi | GetAssetPictures | GET /assets/{id}/pictures | Get asset pictures |
| AssetApi | GetAssetProductOptions | GET /assets/{asset_id}/product-options | Get all possible products of the specified assets |
| AssetApi | GetAssetStatusesOptions | GET /assets/{asset_id}/status-options | Get all possible statuses of the specified assets |
| AssetApi | GetAssetTenantOptions | GET /assets/{asset_id}/tenant-options | Get all possible tenants of the specified assets |
| AssetApi | GetAssetValueObjectsForKey | GET /assets/{asset_id}/value_objects/{key} | Get asset value objects for a specific key. |
| AssetApi | GetAssetValues | GET /assets/{asset_id}/values | Get latest values for the asset. |
| AssetApi | GetAssetValuesForKey | GET /assets/{asset_id}/values/{key} | Get asset values for a specific key. |
| AssetApi | GetAssets | GET /assets | Get a range of assets |
| AssetApi | GetDeliveriesOfAsset | GET /assets/{asset_id}/deliveries | Get all deliveries of one asset |
| AssetApi | GetDocumentsOfAsset | GET /assets/{asset_id}/documents | Get all documents of an asset |
| AssetApi | GetEventsOfAsset | GET /assets/{asset_id}/events | Get all events of one asset |
| AssetApi | GetInstrumentationsOfAsset | GET /assets/{asset_id}/instrumentations | Get all instrumentations of one asset |
| AssetApi | GetInstrumentationsOfAssetHistory | GET /assets/{asset_id}/instrumentations/history | Get all instrumentations an asset was assigned to |
| AssetApi | GetNodesOfAsset | GET /assets/{asset_id}/nodes | Get all nodes of one asset |
| AssetApi | GetSoftwaresOfSoftware | GET /assets/{asset_id}/softwares | Get a range of software of one asset |
| AssetApi | GetSpecificationHistoryOfAsset | GET /assets/{asset_id}/specifications/{key}/history | Get the history of one specification attribute of an asset. |
| AssetApi | GetSpecificationKeysOfAssets | GET /asset/specification_keys | Get existing asset specification keys |
| AssetApi | GetSpecificationsOfAsset | GET /assets/{asset_id}/specifications | Get specifications of an asset |
| AssetApi | GetSubscriptionsOfAsset | GET /assets/{asset_id}/subscriptions | Get all subscriptions of asset |
| AssetApi | GetSystemsOfAsset | GET /assets/{asset_id}/systems | Get all systems of one Asset |
| AssetApi | RemoveAddOnsFromAsset | DELETE /assets/{asset_id}/add_ons | Remove add_ons from an asset |
| AssetApi | RemoveDeliveriesFromAsset | DELETE /assets/{asset_id}/deliveries | Remove deliveries from an asset |
| AssetApi | RemoveDocumentsFromAsset | DELETE /assets/{asset_id}/documents | Remove documents from an asset |
| AssetApi | RemoveEventFromAsset | DELETE /assets/{asset_id}/events | Remove events from an asset |
| AssetApi | RemoveInstrumentationsOfAsset | DELETE /assets/{asset_id}/instrumentations | Remove instrumentations from an asset |
| AssetApi | RemoveNodesFromAsset | DELETE /assets/{asset_id}/nodes | Remove nodes from an asset |
| AssetApi | RemoveSoftwaresOfAsset | DELETE /assets/{asset_id}/softwares | Remove software from an asset |
| AssetApi | RenameSpecificationsOfAsset | PATCH /assets/{asset_id}/specifications/rename | Rename a specification key |
| AssetApi | ReplaceAddOnsOfAsset | PATCH /assets/{asset_id}/add_ons | Replace the add_ons of an asset |
| AssetApi | ReplaceDeliveriesOfAsset | PATCH /assets/{asset_id}/deliveries | Replace the deliveries of an asset |
| AssetApi | ReplaceDocumentsOfAsset | PATCH /assets/{asset_id}/documents | Replace the documents of an asset |
| AssetApi | ReplaceInstrumentationsOfAsset | PATCH /assets/{asset_id}/instrumentations | Replace the instrumentations of an asset |
| AssetApi | ReplaceNodesOfAsset | PATCH /assets/{asset_id}/nodes | Replace the nodes of an asset |
| AssetApi | ReplaceSoftwaresOfAsset | PATCH /assets/{asset_id}/softwares | Replace the software of an asset |
| AssetApi | UpdateAsset | PATCH /assets/{id} | Update an asset |
| AssetApi | UpdateAssetPicture | PATCH /assets/{asset_id}/pictures/{id} | Update an asset picture |
| AssetApi | UpdateAssetPictureLink | PATCH /assets/{asset_id}/pictures/links/{id} | Update an asset picture link |
| AssetApi | UpdateSpecificationsOfAsset | PATCH /assets/{asset_id}/specifications | Update specifications of an asset |
| AssetApi | UploadAssetPicture | POST /assets/{id}/pictures | Upload an asset picture |
| AssetHealthConditionApi | AddHealthConditionsToAsset | POST /assets/{asset_id}/health_conditions | Add health conditions to an asset |
| AssetHealthConditionApi | CalculateAssetHealthConditions | GET /assets/{asset_id}/health_conditions/calculate | Calculate health conditions of an asset |
| AssetHealthConditionApi | CalculateAssetHealthConditionsAndUpdateAsset | PATCH /assets/{asset_id}/health_conditions/calculate | Calculate health conditions of an asset and update asset with this health conditions |
| AssetHealthConditionApi | GetAssetHealthConditions | GET /assets/{asset_id}/health_conditions | Get all health conditions assigned to an asset |
| AssetHealthConditionApi | GetHealthConditionsOfAssetTimemachine | GET /assets/{asset_id}/health_conditions/timemachine | Get all health_conditions historical evolution the given asset had assigned |
| AssetHealthConditionApi | ReaplaceHealthConditionsOfAsset | PATCH /assets/{asset_id}/health_conditions | Replace health conditions of an asset |
| AssetHealthConditionApi | RemoveHealthConditionsOfAsset | DELETE /assets/{asset_id}/health_conditions | Remove health conditions of an asset |
| AssetStatusApi | CreateAssetStatus | POST /asset/statuses | Create a new asset status |
| AssetStatusApi | DeleteAssetStatus | DELETE /asset/statuses/{id} | Delete an asset status |
| AssetStatusApi | GetAssetIdStatus | GET /assets/{asset_id}/status | Get the status of the specific asset |
| AssetStatusApi | GetAssetStatusById | GET /asset/statuses/{id} | Get a single asset status |
| AssetStatusApi | GetAssetStatuses | GET /asset/statuses | Get a range of asset statuses |
| AssetStatusApi | GetAssetStatusesOptions | GET /assets/{asset_id}/status-options | Get all possible statuses of the specified assets |
| AssetStatusApi | UpdateAssetStatus | PATCH /asset/statuses/{id} | Update an asset status |
| AttachmentApi | CreateLinkAttachment | POST /attachments/links | Create a new link as attachment |
| AttachmentApi | DeleteAttachment | DELETE /attachments/{id} | Delete an attachment and the file |
| AttachmentApi | DownloadAttachment | GET /attachments/{id}/download | Download the attachments file |
| AttachmentApi | GetAttachmentById | GET /attachments/{id} | Get a single attachment |
| AttachmentApi | GetAttachments | GET /attachments | Get a range of attachments |
| AttachmentApi | UpdateAttachment | PATCH /attachments/{id} | Update an attachment and especially its file |
| AttachmentApi | UpdateLinkAttachment | PATCH /attachments/links/{id} | Update an attachment with a link |
| AttachmentApi | UploadAttachment | POST /attachments | Create and upload a new attachment |
| BillOfMaterialApi | AddDocumentsToBillOfMaterial | POST /bill_of_materials/{bill_of_material_id}/documents | Add documents to a bill of material |
| BillOfMaterialApi | AddInstrumentationsToBillOfMaterial | POST /bill_of_materials/{bill_of_material_id}/instrumentations | Add instrumentations to a bill of material |
| BillOfMaterialApi | AddRequestForQuotationsToBillOfMaterial | POST /bill_of_materials/{bill_of_material_id}/request_for_quotations | Add request for quotations to a bill of material |
| BillOfMaterialApi | CreateBillOfMaterial | POST /bill_of_materials | Create a new bill of material |
| BillOfMaterialApi | DeleteBillOfMaterial | DELETE /bill_of_materials/{id} | Delete a bill of material |
| BillOfMaterialApi | GetBillOfMaterialById | GET /bill_of_materials/{id} | Get a single bill of material |
| BillOfMaterialApi | GetBillOfMaterials | GET /bill_of_materials | Get a range of bill of materials |
| BillOfMaterialApi | GetDocumentsOfBillOfMaterial | GET /bill_of_materials/{bill_of_material_id}/documents | Get all documents of a bill of material |
| BillOfMaterialApi | GetInstrumentationsOfBillOfMaterial | GET /bill_of_materials/{bill_of_material_id}/instrumentations | Get all instrumentations of a bill of material |
| BillOfMaterialApi | GetRequestForQuotationsOfBillOfMaterial | GET /bill_of_materials/{bill_of_material_id}/request_for_quotations | Get all request for quotations of a bill of material |
| BillOfMaterialApi | RemoveDocumentsFromBillOfMaterial | DELETE /bill_of_materials/{bill_of_material_id}/documents | Remove documents from a bill of material |
| BillOfMaterialApi | RemoveInstrumentationsFromBillOfMaterial | DELETE /bill_of_materials/{bill_of_material_id}/instrumentations | Remove instrumentations from a bill of material |
| BillOfMaterialApi | RemoveRequestForQuotationsOfBillOfMaterial | DELETE /bill_of_materials/{bill_of_material_id}/request_for_quotations | Remove request for quotations from a bill of material |
| BillOfMaterialApi | ReplaceDocumentsOfBillOfMaterial | PATCH /bill_of_materials/{bill_of_material_id}/documents | Replace the documents of a bill of material |
| BillOfMaterialApi | ReplaceInstrumentationsOfBillOfMaterial | PATCH /bill_of_materials/{bill_of_material_id}/instrumentations | Replace the instrumentations of a bill of material |
| BillOfMaterialApi | ReplaceRequestForQuotationsOfBillOfMaterial | PATCH /bill_of_materials/{bill_of_material_id}/request_for_quotations | Replace the request for quotations of a bill of material |
| BillOfMaterialApi | UpdateBillOfMaterial | PATCH /bill_of_materials/{id} | Update a bill of material |
| ClientApplicationApi | AddClientApplicationsToEdgeApplication | POST /edge_device/applications/{edge_device_application_id}/client_applications | Add client applications to an edge device application |
| ClientApplicationApi | AddTechnicalUsersToClientApplication | POST /client_applications/{client_application_id}/technical_users | Add Technical Users of Client Application |
| ClientApplicationApi | AddUsersToClientApplicationUserRole | POST /client_applications/{client_application_id}/roles/{userrole_id}/users | Add users to a client application user role |
| ClientApplicationApi | CreateClientApplication | POST /client_applications | Create a new client_application |
| ClientApplicationApi | CreateWebhookToClientApplication | POST /client_applications/{client_application_id}/webhooks | Create a new webhook for the Client Application |
| ClientApplicationApi | DeleteClientApplication | DELETE /client_applications/{id} | Delete an client_application |
| ClientApplicationApi | DeleteUsersFromClientApplicationUserRole | DELETE /client_applications/{client_application_id}/roles/{userrole_id}/users | Remove users from a client application user role |
| ClientApplicationApi | DeleteWebhook | DELETE /client_applications/{client_application_id}/webhooks/{id} | Delete a webhook |
| ClientApplicationApi | GetAPIKeysOfClientApplication | GET /client_applications/{client_application_id}/api_keys | GetAPI Keys of Client Application |
| ClientApplicationApi | GetClientApplicationById | GET /client_applications/{id} | Get a single client_application |
| ClientApplicationApi | GetClientApplications | GET /client_applications | Get a range of client_applications |
| ClientApplicationApi | GetClientApplicationsOfEdgeDeviceApplication | GET /edge_device/applications/{edge_device_application_id}/client_applications | Get all client applications of one edge device application |
| ClientApplicationApi | GetCurrentClientApplication | GET /client_applications/current | Get current client_application |
| ClientApplicationApi | GetEdgeDeviceApplicationsOfClientApplication | GET /client_applications/{client_application_id}/edge_device/applications | Get all edge devices applications for an client application |
| ClientApplicationApi | GetTechnicalUsersOfClientApplication | GET /client_applications/{client_application_id}/technical_users | Get Technical Users of Client Application |
| ClientApplicationApi | GetUsersOfClientApplicationUserRole | GET /client_applications/{client_application_id}/roles/{userrole_id}/users | Get all users of a user role assigned to a client application |
| ClientApplicationApi | GetWebhookById | GET /client_applications/{client_application_id}/webhooks/{id} | Get a single webhook |
| ClientApplicationApi | GetWebhookEvents | GET /client_applications/{client_application_id}/webhooks/{id}/events | Get events of a webhook |
| ClientApplicationApi | GetWebhooksOfClientApplication | GET /client_applications/{client_application_id}/webhooks | Get webhooks of Client Application |
| ClientApplicationApi | RemoveClientApplicationsOfEdgeDeviceApplication | DELETE /edge_device/applications/{edge_device_application_id}/client_applications | Remove client applications from an edge device application |
| ClientApplicationApi | ReplaceClientApplicationsOfEdgeDeviceApplication | PATCH /edge_device/applications/{edge_device_application_id}/client_applications | Replace the client applications of an edge device application |
| ClientApplicationApi | ResendWebhookEvents | POST /client_applications/{client_application_id}/webhooks/{id}/events | resend Webhook Events |
| ClientApplicationApi | ResetSecretWebhook | POST /client_applications/{client_application_id}/webhooks/{id}/reset_secret | Reset the secret property of the webhook |
| ClientApplicationApi | UpdateClientApplication | PATCH /client_applications/{id} | Update an client_application |
| ClientApplicationApi | UpdateWebhook | PATCH /client_applications/{client_application_id}/webhooks/{id} | Update a webhook |
| CompanyApi | CreateCompany | POST /companies | Create a new company |
| CompanyApi | DeleteCompany | DELETE /companies/{id} | Delete a company |
| CompanyApi | GetAssetCompanyOptions | GET /assets/{asset_id}/company-options | Get all possible companies of the specified assets |
| CompanyApi | GetCompanies | GET /companies | Get a range of companies |
| CompanyApi | GetCompanyById | GET /companies/{id} | Get a single company |
| CompanyApi | GetDeliveriesReceivedOfCompany | GET /companies/{company_id}/deliveries_received | Get all deliveries received of one company |
| CompanyApi | GetDeliveriesSentOfCompany | GET /companies/{company_id}/deliveries_sent | Get all deliveries sent of one company |
| CompanyApi | GetProductsOfCompany | GET /companies/{company_id}/products | Get all products of a company |
| CompanyApi | UpdateCompany | PATCH /companies/{id} | Update a company |
| CustomerApi | CreateCustomer | POST /customers | Create a new customer |
| CustomerApi | DeleteCustomer | DELETE /customers/{id} | Delete a customer |
| CustomerApi | GetCustomerById | GET /customers/{id} | Get a single customer |
| CustomerApi | GetCustomers | GET /customers | Get a range of customers |
| CustomerApi | UpdateCustomer | PATCH /customers/{id} | Update a customer |
| DeliveryApi | AddAssetsToDelivery | POST /deliveries/{delivery_id}/assets | Add assets to a delivery |
| DeliveryApi | AddDocumentsToDelivery | POST /deliveries/{delivery_id}/documents | Add documents to a delivery |
| DeliveryApi | AddPurchaseOrdersToDelivery | POST /deliveries/{delivery_id}/purchase_orders | Add all purchase oders to a delivery |
| DeliveryApi | CreateDelivery | POST /deliveries | Create a new delivery |
| DeliveryApi | DeleteDelivery | DELETE /deliveries/{id} | Delete a delivery |
| DeliveryApi | GetAssetsOfDelivery | GET /deliveries/{delivery_id}/assets | Get all assets of one delivery |
| DeliveryApi | GetDeliveries | GET /deliveries | Get a range of deliveries |
| DeliveryApi | GetDeliveryById | GET /deliveries/{id} | Get a single delivery |
| DeliveryApi | GetDeliveryIdStatus | GET /deliveries/{delivery_id}/status | Get the status of the specific delivery |
| DeliveryApi | GetDocumentsOfDelivery | GET /deliveries/{delivery_id}/documents | Get all documents of one delivery |
| DeliveryApi | GetPurchaseOrdersOfDelivery | GET /deliveries/{delivery_id}/purchase_orders | Get all purchase orders of one delivery |
| DeliveryApi | RemoveAssetsFromDelivery | DELETE /deliveries/{delivery_id}/assets | Remove assets from a delivery |
| DeliveryApi | RemoveDocumentsFromDelivery | DELETE /deliveries/{delivery_id}/documents | Remove documents from a delivery |
| DeliveryApi | RemovePurchaseOrdersFromDelivery | DELETE /deliveries/{delivery_id}/purchase_orders | Remove purchase orders from a delivery |
| DeliveryApi | ReplaceAssetsOfDelivery | PATCH /deliveries/{delivery_id}/assets | Replace the assets of a delivery |
| DeliveryApi | ReplaceDocumentsOfDelivery | PATCH /deliveries/{delivery_id}/documents | Replace the documents of a delivery |
| DeliveryApi | ReplacePurchaseOrdersOfDelivery | PATCH /deliveries/{delivery_id}/purchase_orders | Replace the purchase orders of a delivery |
| DeliveryApi | UpdateDelivery | PATCH /deliveries/{id} | Update a delivery |
| DeliveryStatusApi | CreateDeliveryStatus | POST /delivery/statuses | Create a new delivery status |
| DeliveryStatusApi | DeleteDeliveryStatus | DELETE /delivery/statuses/{id} | Delete a delivery status |
| DeliveryStatusApi | GetDeliveryIdStatus | GET /deliveries/{delivery_id}/status | Get the status of the specific delivery |
| DeliveryStatusApi | GetDeliveryStatusById | GET /delivery/statuses/{id} | Get a single delivery status |
| DeliveryStatusApi | GetDeliveryStatuses | GET /delivery/statuses | Get a range of delivery statuses |
| DeliveryStatusApi | UpdateDeliveryStatuses | PATCH /delivery/statuses/{id} | Update an delivery status |
| DocumentApi | AddCategoriesToDocument | POST /documents/{document_id}/categories | Add categories to a document |
| DocumentApi | CreateDocument | POST /documents | Create a new document |
| DocumentApi | DeleteDocument | DELETE /documents/{id} | Delete a document |
| DocumentApi | DownloadDocument | GET /documents/{id}/download | Download multiple attachments of a document |
| DocumentApi | GetAssetsOfDocument | GET /documents/{document_id}/assets | Get all assets of one document |
| DocumentApi | GetAttachmentsOfDocument | GET /documents/{document_id}/attachments | Get all attachments of one document |
| DocumentApi | GetBillOfMaterialsOfDocument | GET /documents/{document_id}/bill_of_materials | Get all bill of materials of one document |
| DocumentApi | GetCategoriesOfDocument | GET /documents/{document_id}/categories | Get all categories of one document |
| DocumentApi | GetCategoriesOptionsOfDocument | GET /documents/{document_id}/categories-options | Get all possible categories for the specified document |
| DocumentApi | GetDeliveriesOfDocument | GET /documents/{document_id}/deliveries | Get all deliveries of one document |
| DocumentApi | GetDocumentById | GET /documents/{id} | Get a single document |
| DocumentApi | GetDocumentClassificationsOptions | GET /documents/{document_id}/classification-options | Get all possible classifications for the specified document |
| DocumentApi | GetDocumentIdClassification | GET /documents/{document_id}/classification | Get the classification of a specific document |
| DocumentApi | GetDocumentIdStatus | GET /documents/{document_id}/status | Get the status of a specific document |
| DocumentApi | GetDocumentStatusesOptions | GET /documents/{document_id}/status-options | Get all possible statuses for the specified document |
| DocumentApi | GetDocuments | GET /documents | Get a range of documents |
| DocumentApi | GetEventsOfDocument | GET /documents/{document_id}/events | Get all events of one document |
| DocumentApi | GetInstrumentationsOfDocument | GET /documents/{document_id}/instrumentations | Get all instrumentations of one document |
| DocumentApi | GetNodesOfDocument | GET /documents/{document_id}/nodes | Get all nodes of one document |
| DocumentApi | GetProductsOfDocument | GET /documents/{document_id}/products | Get all products of one document |
| DocumentApi | GetPurchaseOrdersOfDocument | GET /documents/{document_id}/purchase_orders | Get all purchase orders of one document |
| DocumentApi | GetQuotationsOfDocument | GET /documents/{document_id}/quotations | Get all quotations of one document |
| DocumentApi | GetRequestForQuotationsOfDocument | GET /documents/{document_id}/request_for_quotations | Get all request for quotations of one document |
| DocumentApi | RemoveCategoriesFromDocument | DELETE /documents/{document_id}/categories | Remove categories from a document |
| DocumentApi | ReplaceCategoriesOfDocument | PATCH /documents/{document_id}/categories | Replace the categories of a document |
| DocumentApi | UpdateDocument | PATCH /documents/{id} | Update a document |
| DocumentCategoryApi | AddDocumentsToDocumentCategory | POST /document/categories/{category_id}/documents | Add documents to a category |
| DocumentCategoryApi | CreateDocumentCategory | POST /document/categories | Create a new document category |
| DocumentCategoryApi | DeleteDocumentCategory | DELETE /document/categories/{id} | Delete a document category |
| DocumentCategoryApi | GetCategoriesOfDocument | GET /documents/{document_id}/categories | Get all categories of one document |
| DocumentCategoryApi | GetCategoriesOptionsOfDocument | GET /documents/{document_id}/categories-options | Get all possible categories for the specified document |
| DocumentCategoryApi | GetDocumentCategories | GET /document/categories | Get a range of document categories |
| DocumentCategoryApi | GetDocumentCategoryById | GET /document/categories/{id} | Get a single document category |
| DocumentCategoryApi | GetDocumentsOfDocumentCategory | GET /document/categories/{category_id}/documents | Get all documents of one category |
| DocumentCategoryApi | RemoveDocumentsFromDocumentCategory | DELETE /document/categories/{category_id}/documents | Remove documents from a category |
| DocumentCategoryApi | ReplaceDocumentsOfDocumentCategory | PATCH /document/categories/{category_id}/documents | Replace documents of a category |
| DocumentCategoryApi | UpdateDocumentCategory | PATCH /document/categories/{id} | Update a document category |
| DocumentClassificationApi | CreateDocumentClassification | POST /document/classifications | Create a new document classification |
| DocumentClassificationApi | DeleteDocumentClassification | DELETE /document/classifications/{id} | Delete a document classification |
| DocumentClassificationApi | GetDocumentClassificationById | GET /document/classifications/{id} | Get a single document classification |
| DocumentClassificationApi | GetDocumentClassifications | GET /document/classifications | Get a range of document classifications |
| DocumentClassificationApi | GetDocumentClassificationsOptions | GET /documents/{document_id}/classification-options | Get all possible classifications for the specified document |
| DocumentClassificationApi | GetDocumentIdClassification | GET /documents/{document_id}/classification | Get the classification of a specific document |
| DocumentClassificationApi | UpdateDocumentClassification | PATCH /document/classifications/{id} | Update a document classification |
| DocumentStatusApi | CreateDocumentStatus | POST /document/statuses | Create a new document status |
| DocumentStatusApi | DeleteDocumentStatus | DELETE /document/statuses/{id} | Delete a document status |
| DocumentStatusApi | GetDocumentIdStatus | GET /documents/{document_id}/status | Get the status of a specific document |
| DocumentStatusApi | GetDocumentStatusById | GET /document/statuses/{id} | Get a single document status |
| DocumentStatusApi | GetDocumentStatuses | GET /document/statuses | Get a range of document statuses |
| DocumentStatusApi | GetDocumentStatusesOptions | GET /documents/{document_id}/status-options | Get all possible statuses for the specified document |
| DocumentStatusApi | UpdateDocumentStatus | PATCH /document/statuses/{id} | Update a document status |
| EventApi | AddDocumentsToEvent | POST /events/{event_id}/documents | Add documents to an event |
| EventApi | CreateEvent | POST /events | Create a new event |
| EventApi | CreateEventForAsset | POST /assets/{asset_id}/events | Create a new event for an asset |
| EventApi | CreateEventForInstrumentation | POST /instrumentations/{instrumentation_id}/events | Create a new event for an instrumentation |
| EventApi | DeleteEvent | DELETE /events/{id} | Delete an event |
| EventApi | GetAssetsOfEvent | GET /events/{event_id}/assets | Get all assets of one event |
| EventApi | GetDocumentsOfEvent | GET /events/{event_id}/documents | Get all documents of an event |
| EventApi | GetEventById | GET /events/{id} | Get a single event |
| EventApi | GetEventIdStatus | GET /events/{event_id}/status | Get the status of a specific event |
| EventApi | GetEventIdType | GET /events/{event_id}/type | Get the type of a specific event |
| EventApi | GetEventStatusesOptions | GET /events/{event_id}/status-options | Get all possible statuses for the specified event |
| EventApi | GetEventTypeesOptions | GET /events/{event_id}/type-options | Get all possible types for the specified event |
| EventApi | GetEvents | GET /events | Get a range of events |
| EventApi | GetEventsOfAsset | GET /assets/{asset_id}/events | Get all events of one asset |
| EventApi | GetEventsOfInstrumentation | GET /instrumentations/{instrumentation_id}/events | Get all events of one instrumentation |
| EventApi | GetInstrumentationsOfEvent | GET /events/{event_id}/instrumentations | Get all instrumentations of one event |
| EventApi | GetSpecificationsOfEvent | GET /events/{event_id}/specifications | Get specifications of an event |
| EventApi | RemoveAssetsFromEvent | DELETE /events/{event_id}/assets | Remove assets from an event |
| EventApi | RemoveDocumentsFromEvent | DELETE /events/{event_id}/documents | Remove documents from an event |
| EventApi | RemoveEventFromAsset | DELETE /assets/{asset_id}/events | Remove events from an asset |
| EventApi | RemoveEventFromInstrumentation | DELETE /instrumentations/{instrumentation_id}/events | Remove events from an instrumentation |
| EventApi | RemoveInstrumentationsFromEvent | DELETE /events/{event_id}/instrumentations | Remove instrumentations from an event |
| EventApi | RemoveSpecificationsFromEvent | DELETE /events/{event_id}/specifications | Delete specifications of an event |
| EventApi | RenameSpecificationsOfEvent | PATCH /events/{event_id}/specifications/rename | Rename a specification key |
| EventApi | ReplaceDocumentsOfEvent | PATCH /events/{event_id}/documents | Replace the documents of an event |
| EventApi | UpdateEvent | PATCH /events/{id} | Update an event |
| EventApi | UpdateSpecificationsOfEvent | PATCH /events/{event_id}/specifications | Update specifications of an event |
| EventStatusApi | CreateEventStatus | POST /event/statuses | Create a new event status |
| EventStatusApi | DeleteEventStatus | DELETE /event/statuses/{id} | Delete an event status |
| EventStatusApi | GetEventIdStatus | GET /events/{event_id}/status | Get the status of a specific event |
| EventStatusApi | GetEventStatusById | GET /event/statuses/{id} | Get a single event status |
| EventStatusApi | GetEventStatuses | GET /event/statuses | Get a range of event statuses |
| EventStatusApi | GetEventStatusesOptions | GET /events/{event_id}/status-options | Get all possible statuses for the specified event |
| EventStatusApi | UpdateEventStatus | PATCH /event/statuses/{id} | Update an event status |
| EventTypeApi | CreateEventType | POST /event/types | Create a new event type |
| EventTypeApi | DeleteEventType | DELETE /event/types/{id} | Delete an event type |
| EventTypeApi | GetEventIdType | GET /events/{event_id}/type | Get the type of a specific event |
| EventTypeApi | GetEventTypeById | GET /event/types/{id} | Get a single event type |
| EventTypeApi | GetEventTypeesOptions | GET /events/{event_id}/type-options | Get all possible types for the specified event |
| EventTypeApi | GetEventTypes | GET /event/types | Get a range of event types |
| EventTypeApi | UpdateEventType | PATCH /event/types/{id} | Update an event type |
| HealthConditionApi | CreateHealthCondition | POST /health_conditions | Create a new health condition |
| HealthConditionApi | DeleteHealthCondition | DELETE /health_conditions/{id} | Delete a health condition |
| HealthConditionApi | GetHealthConditionById | GET /health_conditions/{id} | Get a single health condition |
| HealthConditionApi | GetHealthConditions | GET /health_conditions | Get a range of health conditions |
| HealthConditionApi | UpdateHealthCondition | PATCH /health_conditions/{id} | Update a health condition |
| HealthConditionCauseApi | CreateHealthConditionCause | POST /health_conditions/{health_condition_id}/causes | Create a health condition cause |
| HealthConditionCauseApi | DeleteCause | DELETE /health_conditions/{health_condition_id}/causes/{id} | Delete a health condition cause |
| HealthConditionCauseApi | GetHealthConditionCauseById | GET /health_conditions/{health_condition_id}/causes/{id} | Get a single health condition cause |
| HealthConditionCauseApi | GetHealthConditionCauses | GET /health_conditions/{health_condition_id}/causes | Get all causes of a health condition |
| HealthConditionCauseApi | UpdateHealthConditionCause | PATCH /health_conditions/{health_condition_id}/causes/{id} | Update a health condition cause |
| HealthConditionRemedyApi | CreateHealthConditionRemedy | POST /health_conditions/{health_condition_id}/causes/{cause_id}/remedies | Create a remedy |
| HealthConditionRemedyApi | DeleteHealthConditionRemedy | DELETE /health_conditions/{health_condition_id}/causes/{cause_id}/remedies/{id} | Delete a remedy |
| HealthConditionRemedyApi | GetHealthConditionRemedies | GET /health_conditions/{health_condition_id}/causes/{cause_id}/remedies | Get all remedies of a cause |
| HealthConditionRemedyApi | GetHealthConditionRemedyById | GET /health_conditions/{health_condition_id}/causes/{cause_id}/remedies/{id} | Get a single remedy |
| HealthConditionRemedyApi | UpdateHealthConditionRemedy | PATCH /health_conditions/{health_condition_id}/causes/{cause_id}/remedies/{id} | Update a remedy |
| InstrumentationApi | AddAssetsToInstrumentation | POST /instrumentations/{instrumentation_id}/assets | Add assets to an instrumentation |
| InstrumentationApi | AddBillOfMaterialsToInstrumentation | POST /instrumentations/{instrumentation_id}/bill_of_materials | Add bill of materials to an instrumentation |
| InstrumentationApi | AddDocumentsToInstrumentation | POST /instrumentations/{instrumentation_id}/documents | Add documents to an instrumentation |
| InstrumentationApi | AddInstrumentationPictureLink | POST /instrumentations/{id}/pictures/links | Add a link as instrumentation picture |
| InstrumentationApi | AddNodesToInstrumentation | POST /instrumentations/{instrumentation_id}/nodes | Add nodes to an instrumentation |
| InstrumentationApi | CreateEventForInstrumentation | POST /instrumentations/{instrumentation_id}/events | Create a new event for an instrumentation |
| InstrumentationApi | CreateInstrumentation | POST /instrumentations | Create a new instrumentation |
| InstrumentationApi | CreateInstrumentationThreshold | POST /instrumentations/{instrumentation_id}/thresholds | Create an instrumentation threshold |
| InstrumentationApi | DeleteInstrumentation | DELETE /instrumentations/{id} | Delete an instrumentation |
| InstrumentationApi | DeleteInstrumentationPicture | DELETE /instrumentations/{instrumentation_id}/pictures/{id} | Delete an instrumentation picture |
| InstrumentationApi | DeleteInstrumentationThreshold | DELETE /instrumentations/{instrumentation_id}/thresholds/{id} | Delete an instrumentation threshold. |
| InstrumentationApi | DownloadInstrumentationPicture | GET /instrumentations/{instrumentation_id}/pictures/{id}/download | Download an instrumentation picture |
| InstrumentationApi | GetAssetsOfInstrumentation | GET /instrumentations/{instrumentation_id}/assets | Get all assets of one instrumentation |
| InstrumentationApi | GetAssetsOfInstrumentationHistory | GET /instrumentations/{instrumentation_id}/assets/history | Get all assets an instrumentation was assigned to |
| InstrumentationApi | GetBillOfMaterialsOfInstrumentation | GET /instrumentations/{instrumentation_id}/bill_of_materials | Get all bill of materials of an instrumentation |
| InstrumentationApi | GetDocumentsOfInstrumentation | GET /instrumentations/{instrumentation_id}/documents | Get all documents of an instrumentation |
| InstrumentationApi | GetEventsOfInstrumentation | GET /instrumentations/{instrumentation_id}/events | Get all events of one instrumentation |
| InstrumentationApi | GetInstrumentationById | GET /instrumentations/{id} | Get a single instrumentation |
| InstrumentationApi | GetInstrumentationIdStatus | GET /instrumentations/{instrumentation_id}/status | Get the status of the specific instrumentation |
| InstrumentationApi | GetInstrumentationIdType | GET /instrumentations/{instrumentation_id}/type | Get the type of the specific instrumentation |
| InstrumentationApi | GetInstrumentationPicture | GET /instrumentations/{instrumentation_id}/pictures/{id} | Get an instrumentation picture |
| InstrumentationApi | GetInstrumentationPictures | GET /instrumentations/{id}/pictures | Get instrumentation pictures |
| InstrumentationApi | GetInstrumentationStatusesOptions | GET /instrumentations/{instrumentation_id}/status-options | Get all possible statuses of the specified instrumentation |
| InstrumentationApi | GetInstrumentationThreshold | GET /instrumentations/{instrumentation_id}/thresholds/{id} | Get an instrumentation threshold |
| InstrumentationApi | GetInstrumentationThresholds | GET /instrumentations/{instrumentation_id}/thresholds | Get instrumentation thresholds |
| InstrumentationApi | GetInstrumentationTypesOptions | GET /instrumentations/{instrumentation_id}/type-options | Get all possible types of the specified instrumentation |
| InstrumentationApi | GetInstrumentationValueObjectsForKey | GET /instrumentations/{instrumentation_id}/value_objects/{key} | Get instrumentation value objects for a specific key. |
| InstrumentationApi | GetInstrumentationValues | GET /instrumentations/{instrumentation_id}/values | Get latest values for the instrumentation. |
| InstrumentationApi | GetInstrumentationValuesForKey | GET /instrumentations/{instrumentation_id}/values/{key} | Get instrumentation values for a specific key. |
| InstrumentationApi | GetInstrumentations | GET /instrumentations | Get a range of instrumentations |
| InstrumentationApi | GetNodesOfInstrumentation | GET /instrumentations/{instrumentation_id}/nodes | Get all nodes of one Instrumentation |
| InstrumentationApi | GetSpecificationHistoryOfInstrumentation | GET /instrumentations/{instrumentation_id}/specifications/{key}/history | Get the history of one specification attribute of an instrumentation. |
| InstrumentationApi | GetSpecificationKeysOfInstrumentations | GET /instrumentation/specification_keys | Get existing instrumentation specification keys |
| InstrumentationApi | GetSpecificationsOfInstrumentation | GET /instrumentations/{instrumentation_id}/specifications | Get specifications of an instrumentation |
| InstrumentationApi | GetSystemsOfInstrumentation | GET /instrumentations/{instrumentation_id}/systems | Get all systems of one instrumentation |
| InstrumentationApi | RemoveAssetsFromInstrumentation | DELETE /instrumentations/{instrumentation_id}/assets | Remove assets from an instrumentation |
| InstrumentationApi | RemoveBillOfMaterialsFromInstrumentation | DELETE /instrumentations/{instrumentation_id}/bill_of_materials | Remove bill of materials from an instrumentation |
| InstrumentationApi | RemoveDocumentsFromInstrumentation | DELETE /instrumentations/{instrumentation_id}/documents | Remove documents from an instrumentation |
| InstrumentationApi | RemoveEventFromInstrumentation | DELETE /instrumentations/{instrumentation_id}/events | Remove events from an instrumentation |
| InstrumentationApi | RemoveNodesFromInstrumentation | DELETE /instrumentations/{instrumentation_id}/nodes | Remove nodes from an instrumentation |
| InstrumentationApi | RemoveSpecificationsFromInstrumentation | DELETE /instrumentations/{instrumentation_id}/specifications | Delete specifications of an instrumentation |
| InstrumentationApi | RenameSpecificationsOfInstrumentation | PATCH /instrumentations/{instrumentation_id}/specifications/rename | Rename a specification key |
| InstrumentationApi | ReplaceAssetsOfInstrumentation | PATCH /instrumentations/{instrumentation_id}/assets | Replace the assets of an instrumentation |
| InstrumentationApi | ReplaceBillOfMaterialsOfInstrumentation | PATCH /instrumentations/{instrumentation_id}/bill_of_materials | Replace the bill of materials of an instrumentation |
| InstrumentationApi | ReplaceDocumentsOfInstrumentation | PATCH /instrumentations/{instrumentation_id}/documents | Replace the documents of an instrumentation |
| InstrumentationApi | ReplaceNodesOfInstrumentation | PATCH /instrumentations/{instrumentation_id}/nodes | Replace the nodes of an instrumentation |
| InstrumentationApi | UpdateInstrumentation | PATCH /instrumentations/{id} | Update an instrumentation |
| InstrumentationApi | UpdateInstrumentationPicture | PATCH /instrumentations/{instrumentation_id}/pictures/{id} | Update an instrumentation picture |
| InstrumentationApi | UpdateInstrumentationPictureLink | PATCH /instrumentations/{instrumentation_id}/pictures/links/{id} | Update an instrumentation picture link |
| InstrumentationApi | UpdateInstrumentationThreshold | PATCH /instrumentations/{instrumentation_id}/thresholds/{id} | Update an instrumentation threshold |
| InstrumentationApi | UpdateSpecificationsOfInstrumentation | PATCH /instrumentations/{instrumentation_id}/specifications | Update specifications of an instrumentation |
| InstrumentationApi | UploadInstrumentationPicture | POST /instrumentations/{id}/pictures | Upload an instrumentation picture |
| InstrumentationStatusApi | CreateInstrumentationStatus | POST /instrumentation/statuses | Create a new instrumentation status |
| InstrumentationStatusApi | DeleteInstrumentationStatus | DELETE /instrumentation/statuses/{id} | Delete an instrumentation status |
| InstrumentationStatusApi | GetInstrumentationIdStatus | GET /instrumentations/{instrumentation_id}/status | Get the status of the specific instrumentation |
| InstrumentationStatusApi | GetInstrumentationStatusById | GET /instrumentation/statuses/{id} | Get a single instrumentation status |
| InstrumentationStatusApi | GetInstrumentationStatuses | GET /instrumentation/statuses | Get a range of instrumentation statuses |
| InstrumentationStatusApi | GetInstrumentationStatusesOptions | GET /instrumentations/{instrumentation_id}/status-options | Get all possible statuses of the specified instrumentation |
| InstrumentationStatusApi | UpdateInstrumentationStatus | PATCH /instrumentation/statuses/{id} | Update an instrumentation status |
| InstrumentationTypeApi | CreateInstrumentationType | POST /instrumentation/types | Create a new instrumentation type |
| InstrumentationTypeApi | DeleteInstrumentationType | DELETE /instrumentation/types/{id} | Delete an instrumentation type |
| InstrumentationTypeApi | GetInstrumentationIdType | GET /instrumentations/{instrumentation_id}/type | Get the type of the specific instrumentation |
| InstrumentationTypeApi | GetInstrumentationTypeById | GET /instrumentation/types/{id} | Get a single instrumentation type |
| InstrumentationTypeApi | GetInstrumentationTypes | GET /instrumentation/types | Get a range of instrumentation types |
| InstrumentationTypeApi | GetInstrumentationTypesOptions | GET /instrumentations/{instrumentation_id}/type-options | Get all possible types of the specified instrumentation |
| InstrumentationTypeApi | UpdateInstrumentationType | PATCH /instrumentation/types/{id} | Update an instrumentation type |
| LookupApi | EhExtendedOrderCodeLookup | GET /endress/extended_order_code_lookup | lookup for the extended order code for Endress+Hauser products |
| LookupApi | EhProductLookup | GET /endress/product_lookup | lookup for Endress+Hauser products with asset specific search criterias |
| LookupApi | EhSuccessorLookup | GET /endress/successor_lookup | lookup for Endress+Hauser successor products |
| NodeApi | AddAssetsToNode | POST /nodes/{node_id}/assets | Add assets to a node |
| NodeApi | AddDocumentsToNode | POST /nodes/{node_id}/documents | Add documents to a node |
| NodeApi | AddInstrumentationsToNode | POST /nodes/{node_id}/instrumentations | Add instrumentations to a node |
| NodeApi | AddNodePictureLink | POST /nodes/{id}/pictures/links | Add a link as node picture |
| NodeApi | AddRecipesToNode | POST /nodes/{node_id}/recipes | Add recipes to a node |
| NodeApi | AddSystemsToNode | POST /nodes/{node_id}/systems | Add systems to a node |
| NodeApi | CreateNodes | POST /nodes | Create a new node |
| NodeApi | DeleteNode | DELETE /nodes/{id} | Delete a node |
| NodeApi | DeleteNodePicture | DELETE /nodes/{node_id}/pictures/{id} | Delete an node picture |
| NodeApi | DownloadNodePicture | GET /nodes/{node_id}/pictures/{id}/download | Download an node picture |
| NodeApi | GetAssetsOfNode | GET /nodes/{node_id}/assets | Get all assets of one node |
| NodeApi | GetDocumentsOfNode | GET /nodes/{node_id}/documents | Get all documents of a node |
| NodeApi | GetInstrumentationsOfNode | GET /nodes/{node_id}/instrumentations | Get all instrumentations of one node |
| NodeApi | GetNodeIdType | GET /nodes/{node_id}/type | Get the type of the specific node |
| NodeApi | GetNodePicture | GET /nodes/{node_id}/pictures/{id} | Get an node picture |
| NodeApi | GetNodePictures | GET /nodes/{id}/pictures | Get node pictures |
| NodeApi | GetNodeTypesOptions | GET /nodes/{node_id}/type-options | Get all possible types of the specified node |
| NodeApi | GetNodes | GET /nodes | Get a range of nodes |
| NodeApi | GetNodesById | GET /nodes/{id} | Get a single node |
| NodeApi | GetRecipesOfNode | GET /nodes/{node_id}/recipes | Get all recipes of one node |
| NodeApi | GetSpecificationKeysOfNodes | GET /node/specification_keys | Get existing asset specification keys |
| NodeApi | GetSpecificationsOfNode | GET /nodes/{node_id}/specifications | Get specifications of a node |
| NodeApi | GetSystemsOfNode | GET /nodes/{node_id}/systems | Get all systems of one node |
| NodeApi | RemoveAssetsFromNode | DELETE /nodes/{node_id}/assets | Remove assets from a node |
| NodeApi | RemoveDocumentsFromNode | DELETE /nodes/{node_id}/documents | Remove documents from a node |
| NodeApi | RemoveInstrumentationsFromNode | DELETE /nodes/{node_id}/instrumentations | Remove instrumentations from a node |
| NodeApi | RemoveRecipesFromNode | DELETE /nodes/{node_id}/recipes | Remove recipes from a node |
| NodeApi | RemoveSpecificationsFromNode | DELETE /nodes/{node_id}/specifications | Delete specifications of a node |
| NodeApi | RemoveSystemsFromNode | DELETE /nodes/{node_id}/systems | Remove systems from a node |
| NodeApi | RenameSpecificationsOfNode | PATCH /nodes/{node_id}/specifications/rename | Rename a specification key |
| NodeApi | ReplaceAssetsOfNode | PATCH /nodes/{node_id}/assets | Replace the assets of a node |
| NodeApi | ReplaceDocumentsOfNode | PATCH /nodes/{node_id}/documents | Replace the documents of a node |
| NodeApi | ReplaceInstrumentationsOfNode | PATCH /nodes/{node_id}/instrumentations | Replace the instrumentations of a node |
| NodeApi | ReplaceRecipesOfNode | PATCH /nodes/{node_id}/recipes | Replace the recipes of a node |
| NodeApi | ReplaceSystemsOfNode | PATCH /nodes/{node_id}/systems | Replace the systems of a node |
| NodeApi | UpdateNode | PATCH /nodes/{id} | Update a node |
| NodeApi | UpdateNodePicture | PATCH /nodes/{node_id}/pictures/{id} | Update an node picture |
| NodeApi | UpdateNodePictureLink | PATCH /nodes/{node_id}/pictures/links/{id} | Update a node picture link |
| NodeApi | UpdateSpecificationsOfNode | PATCH /nodes/{node_id}/specifications | Update specifications of a node |
| NodeApi | UploadNodePicture | POST /nodes/{id}/pictures | Upload an node picture |
| NodeTypeApi | CreateNodeType | POST /node/types | Create a new node type |
| NodeTypeApi | DeleteNodeType | DELETE /node/types/{id} | Delete a node type |
| NodeTypeApi | GetNodeIdType | GET /nodes/{node_id}/type | Get the type of the specific node |
| NodeTypeApi | GetNodeTypeById | GET /node/types/{id} | Get a single node type |
| NodeTypeApi | GetNodeTypes | GET /node/types | Get a range of instrumentation types |
| NodeTypeApi | GetNodeTypesOptions | GET /nodes/{node_id}/type-options | Get all possible types of the specified node |
| NodeTypeApi | UpdateNodeType | PATCH /node/types/{id} | Update a node type |
| NotificationApi | AddClientApplicationsToNotification | POST /notifications/{notification_id}/client_applications | add client_applications to a notification |
| NotificationApi | CreateNotification | POST /notifications | Create a new notification |
| NotificationApi | DeleteNotification | DELETE /notifications/{id} | Delete a notification |
| NotificationApi | GetClientApplicationsOfNotification | GET /notifications/{notification_id}/client_applications | Get all client_applications assigned to a notification |
| NotificationApi | GetNotificationById | GET /notifications/{id} | Get a single notification |
| NotificationApi | GetNotifications | GET /notifications | Get a range of notifications |
| NotificationApi | RemoteClientApplicationsFromNotification | DELETE /notifications/{notification_id}/client_applications | Remove client_application form a notification |
| NotificationApi | ReplaceClientApplicationsOfNotification | PATCH /notifications/{notification_id}/client_applications | Replace the client_applications of a notification |
| NotificationApi | UpdateNotification | PATCH /notifications/{id} | Update a notification |
| PermissionApi | CreatePermissionInheritance | POST /permission_inheritances | Create a new permission inheritance |
| PermissionApi | CreatePermissions | POST /permissions | Create a new permission |
| PermissionApi | DeletePermission | DELETE /permissions/{id} | Delete a permission |
| PermissionApi | DeletePermissionInheritance | DELETE /permission_inheritances/{id} | Delete a permission inheritance |
| PermissionApi | GetPermissionById | GET /permissions/{id} | Get a single permission |
| PermissionApi | GetPermissionInheritanceById | GET /permission_inheritances/{id} | Get a single permission inheritance |
| PermissionApi | GetPermissionInheritances | GET /permission_inheritances | Get a range of permission inheritances |
| PermissionApi | GetPermissions | GET /permissions | Get a range of permissions |
| PermissionRequestApi | CreatePermissionRequest | POST /permission_requests | Create a new permission request |
| PermissionRequestApi | DeletePermissionRequest | DELETE /permission_requests/{id} | Delete a permission request |
| PermissionRequestApi | GetPermissionRequestById | GET /permission_requests/{id} | Get a single permissionRequest |
| PermissionRequestApi | UpdatePermissionRequest | PATCH /permission_requests/{id} | Update a permission request |
| ProductApi | AddCategoriesToProduct | POST /products/{product_id}/categories | Add categories to a product |
| ProductApi | AddDocumentsToProduct | POST /products/{product_id}/documents | Add documents to a product |
| ProductApi | AddEdgeDeviceFeaturesToProduct | POST /products/{product_id}/edge_device_features | Add edge device features to a product |
| ProductApi | AddProductPictureLink | POST /products/{id}/pictures/links | Add a link as product picture |
| ProductApi | AddPurchaseOrdersToProduct | POST /products/{product_id}/purchase_orders | Add purchase orders to a product |
| ProductApi | AddQuotationsToProduct | POST /products/{product_id}/quotations | Add quotations to a product |
| ProductApi | AddSoftwaresToProduct | POST /products/{product_id}/softwares | Add software to a product |
| ProductApi | AddSparePartsToProduct | POST /products/{product_id}/spare_parts | Add spare parts to a product |
| ProductApi | CreateProduct | POST /products | Create a new product |
| ProductApi | CreateProductFeature | POST /product_features | Create a new product feature |
| ProductApi | CreateProductOption | POST /product_options | Create a new product option |
| ProductApi | CreateProductVariant | POST /product_variants | Create a new product variant |
| ProductApi | DeleteCategoriesFromProduct | DELETE /products/{product_id}/categories | Remove categories from a product |
| ProductApi | DeleteProduct | DELETE /products/{id} | Delete a product |
| ProductApi | DeleteProductFeature | DELETE /product_features/{id} | Delete a product feature |
| ProductApi | DeleteProductOption | DELETE /product_options/{id} | Delete a product option |
| ProductApi | DeleteProductPicture | DELETE /products/{product_id}/pictures/{id} | Delete a product picture |
| ProductApi | DeleteProductVariant | DELETE /product_variants/{id} | Delete a product variant |
| ProductApi | DownloadProductPicture | GET /products/{product_id}/pictures/{id}/download | Download a product picture |
| ProductApi | GetAssetProductOptions | GET /assets/{asset_id}/product-options | Get all possible products of the specified assets |
| ProductApi | GetCategoriesOfProduct | GET /products/{product_id}/categories | Get all categories of a product |
| ProductApi | GetCategoriesOptionsOfProduct | GET /products/{product_id}/categories-options | Get all categories of one product |
| ProductApi | GetDocumentsOfProduct | GET /products/{product_id}/documents | Get all documents of a product |
| ProductApi | GetDocumentsOfProductVariant | GET /product_variants/{product_variant_id}/documents | Get all documents of a product variant |
| ProductApi | GetEdgeDeviceFeaturesOfProduct | GET /products/{product_id}/edge_device_features | Get all edge device features of a product |
| ProductApi | GetProductById | GET /products/{id} | Get a single product |
| ProductApi | GetProductFeatureById | GET /product_features/{id} | Get a single product feature |
| ProductApi | GetProductFeatures | GET /product_features | Get a range of product features |
| ProductApi | GetProductIdStatus | GET /products/{product_id}/status | Get the status of a specific product |
| ProductApi | GetProductOptionById | GET /product_options/{id} | Get a single product option |
| ProductApi | GetProductOptions | GET /product_options | Get a range of product options |
| ProductApi | GetProductPicture | GET /products/{product_id}/pictures/{id} | Get a product picture |
| ProductApi | GetProductPictures | GET /products/{id}/pictures | Get product pictures |
| ProductApi | GetProductStatusesOptions | GET /products/{product_id}/status-options | Get all possible statuses for the specified product |
| ProductApi | GetProductVariantById | GET /product_variants/{id} | Get a single product variant |
| ProductApi | GetProductVariantConfigurations | GET /product_variants/{id}/configurations | get configuration of product variant |
| ProductApi | GetProductVariants | GET /product_variants | Get a range of product variants |
| ProductApi | GetProducts | GET /products | Get a range of products |
| ProductApi | GetProductsOfCompany | GET /companies/{company_id}/products | Get all products of a company |
| ProductApi | GetPurchaseOrdersOfProduct | GET /products/{product_id}/purchase_orders | Get all purchase orders of one product |
| ProductApi | GetQuotationsOfProduct | GET /products/{product_id}/quotations | Get all quotations of one product |
| ProductApi | GetSoftwaresOfProduct | GET /products/{product_id}/softwares | Get a range of software of one product |
| ProductApi | GetSparePartsOfProduct | GET /products/{product_id}/spare_parts | Get all spare parts of a product |
| ProductApi | GetSpecificationsOfProduct | GET /products/{product_id}/specifications | Get specifications of a product |
| ProductApi | RemoveDocumentsFromProduct | DELETE /products/{product_id}/documents | Remove documents from a product |
| ProductApi | RemoveEdgeDeviceFeaturesFromProduct | DELETE /products/{product_id}/edge_device_features | Remove edge device features from a product |
| ProductApi | RemovePurchaseOrdersFromProduct | DELETE /products/{product_id}/purchase_orders | Remove purchase orders from a product |
| ProductApi | RemoveQuotationsFromProduct | DELETE /products/{product_id}/quotations | Remove quotations from a product |
| ProductApi | RemoveSoftwaresOfProduct | DELETE /products/{product_id}/softwares | Remove software from a product |
| ProductApi | RemoveSparePartsFromProduct | DELETE /products/{product_id}/spare_parts | Remove spare parts from a product |
| ProductApi | RemoveSpecificationsFromProduct | DELETE /products/{product_id}/specifications | Delete specifications of a product |
| ProductApi | RenameSpecificationsOfProduct | PATCH /products/{product_id}/specifications/rename | rename a key in the specification. |
| ProductApi | ReplaceCategoriesOfProduct | PATCH /products/{product_id}/categories | Replace all categories of a product |
| ProductApi | ReplaceDocumentsOfProduct | PATCH /products/{product_id}/documents | Replace the documents of a product |
| ProductApi | ReplaceEdgeDeviceFeaturesOfProduct | PATCH /products/{product_id}/edge_device_features | Replace the edge device features of a product |
| ProductApi | ReplacePurchaseOrdersOfProduct | PATCH /products/{product_id}/purchase_orders | Replace the purchase orders of a product |
| ProductApi | ReplaceQuotationsOfProduct | PATCH /products/{product_id}/quotations | Replace the quotations of a product |
| ProductApi | ReplaceSoftwaresOfProduct | PATCH /products/{product_id}/softwares | Replace the software of a product |
| ProductApi | ReplaceSparePartsOfProduct | PATCH /products/{product_id}/spare_parts | Replace the spare parts of a product |
| ProductApi | SetProductVariantConfiguration | PATCH /product_variants/{id}/configurations | update configuration of a product variant |
| ProductApi | UpdateProduct | PATCH /products/{id} | Update a product |
| ProductApi | UpdateProductFeature | PATCH /product_features/{id} | Update a product feature |
| ProductApi | UpdateProductOption | PATCH /product_options/{id} | Update a product option |
| ProductApi | UpdateProductPicture | PATCH /products/{product_id}/pictures/{id} | Update a product picture |
| ProductApi | UpdateProductPictureLink | PATCH /products/{product_id}/pictures/links/{id} | Update a product picture link |
| ProductApi | UpdateProductVariant | PATCH /product_variants/{id} | Update a product variant |
| ProductApi | UpdateSpecificationsOfProduct | PATCH /products/{product_id}/specifications | Update specifications of a product |
| ProductApi | UploadProductPicture | POST /products/{id}/pictures | Upload a product picture |
| ProductCategoryApi | AddCategoriesToProduct | POST /products/{product_id}/categories | Add categories to a product |
| ProductCategoryApi | AddProductsToProductCategory | POST /product/categories/{category_id}/products | Add products to a category |
| ProductCategoryApi | CreateProductCategory | POST /product/categories | Create a new product category |
| ProductCategoryApi | CreateProductsOfProductCategory | GET /product/categories/{category_id}/products | Get all products of a product category |
| ProductCategoryApi | DeleteCategoriesFromProduct | DELETE /products/{product_id}/categories | Remove categories from a product |
| ProductCategoryApi | DeleteProductCategory | DELETE /product/categories/{id} | Delete a product category |
| ProductCategoryApi | GetCategoriesOfProduct | GET /products/{product_id}/categories | Get all categories of a product |
| ProductCategoryApi | GetCategoriesOptionsOfProduct | GET /products/{product_id}/categories-options | Get all categories of one product |
| ProductCategoryApi | GetProductCategories | GET /product/categories | Get a range of product categories |
| ProductCategoryApi | GetProductCategoryById | GET /product/categories/{id} | Get a single product category |
| ProductCategoryApi | RemoveProductsFromProductCategory | DELETE /product/categories/{category_id}/products | Remove products from a category |
| ProductCategoryApi | ReplaceCategoriesOfProduct | PATCH /products/{product_id}/categories | Replace all categories of a product |
| ProductCategoryApi | ReplaceProductsOfProductCategory | PATCH /product/categories/{category_id}/products | Replace products of a category |
| ProductCategoryApi | UpdateProductCategory | PATCH /product/categories/{id} | Update a product category |
| ProductHealthConditionApi | AddHealthConditionsToProduct | POST /products/{product_id}/health_conditions | Add health conditions to an product |
| ProductHealthConditionApi | GetProductHealthConditions | GET /products/{product_id}/health_conditions | Get all health conditions assigned to an product |
| ProductHealthConditionApi | ReaplaceHealthConditionsOfProduct | PATCH /products/{product_id}/health_conditions | Replace health conditions of an product |
| ProductHealthConditionApi | RemoveHealthConditionsOfProduct | DELETE /products/{product_id}/health_conditions | Remove health conditions of an product |
| ProductIdentifierApi | AddProductsToProductIdentifier | POST /product/identifiers/{product_identifier_id}/products | Add products to a product identifier |
| ProductIdentifierApi | CreateProductIdentifier | POST /product/identifiers | Create a new product identifier |
| ProductIdentifierApi | CreateProductIdentifierForProduct | POST /products/{product_id}/identifiers | Create a new product identifier for a product |
| ProductIdentifierApi | DeleteProductIdentifier | DELETE /product/identifiers/{id} | Delete a product identifier |
| ProductIdentifierApi | GetProductIdentifierById | GET /product/identifiers/{id} | Get a single product identifier |
| ProductIdentifierApi | GetProductIdentifiers | GET /product/identifiers | Get a range of product identifiers |
| ProductIdentifierApi | GetProductIdentifiersOfProduct | GET /products/{product_id}/identifiers | Get all product identifiers of one product |
| ProductIdentifierApi | GetProductsOfProductIdentifier | GET /product/identifiers/{product_identifier_id}/products | Get all products of one product identifier |
| ProductIdentifierApi | RemoveProductIdentifierFromProduct | DELETE /products/{product_id}/identifiers | Remove product identifiers from a product |
| ProductIdentifierApi | RemoveProductsFromProductIdentifier | DELETE /product/identifiers/{product_identifier_id}/products | Remove products from a product identifier |
| ProductIdentifierApi | UpdateProductIdentifier | PATCH /product/identifiers/{id} | Update a product identifier |
| ProductStatusApi | DeleteProductStatus | DELETE /product/statuses/{id} | Delete a product status |
| ProductStatusApi | GetProductIdStatus | GET /products/{product_id}/status | Get the status of a specific product |
| ProductStatusApi | GetProductStatusById | GET /product/statuses/{id} | Get a single product status |
| ProductStatusApi | GetProductStatuses | GET /product/statuses | Get a range of product statuses |
| ProductStatusApi | GetProductStatusesOptions | GET /products/{product_id}/status-options | Get all possible statuses for the specified product |
| ProductStatusApi | UpdateProductStatus | PATCH /product/statuses/{id} | Update a product status |
| PurchaseOrderApi | AddDeliviersToPurchaseOrder | POST /purchase_orders/{purchase_order_id}/deliveries | Add deliveries to a purchase order |
| PurchaseOrderApi | AddDocumentsToPurchaseOrder | POST /purchase_orders/{purchase_order_id}/documents | Add documents to a purchase order |
| PurchaseOrderApi | AddProductsToPurchaseOrder | POST /purchase_orders/{purchase_order_id}/products | Add products to a purchase order |
| PurchaseOrderApi | CreatePurchaseOrder | POST /purchase_orders | Create a new purchase order |
| PurchaseOrderApi | DeletePurchaseOrder | DELETE /purchase_orders/{id} | Delete a purchase order |
| PurchaseOrderApi | GetDeliviersOfPurchaseOrder | GET /purchase_orders/{purchase_order_id}/deliveries | Get all deliveries of one purchase order |
| PurchaseOrderApi | GetDocumentsOfPurchaseOrder | GET /purchase_orders/{purchase_order_id}/documents | Get all documents of one purchase order |
| PurchaseOrderApi | GetProductsOfPurchaseOrder | GET /purchase_orders/{purchase_order_id}/products | Get all products of one purchase |
| PurchaseOrderApi | GetPurchaseOrderById | GET /purchase_orders/{id} | Get a single purchase order |
| PurchaseOrderApi | GetPurchaseOrderIdStatus | GET /purchase_orders/{purchase_order_id}/status | Get the status of the specific purchase order |
| PurchaseOrderApi | GetPurchaseOrders | GET /purchase_orders | Get a range of purchase orders |
| PurchaseOrderApi | RemoveDeliviersFromPurchaseOrder | DELETE /purchase_orders/{purchase_order_id}/deliveries | Remove deliveries from a purchase order |
| PurchaseOrderApi | RemoveDocumentsFromPurchaseOrder | DELETE /purchase_orders/{purchase_order_id}/documents | Remove documents from a purchase order |
| PurchaseOrderApi | RemoveProductsFromPurchaseOrder | DELETE /purchase_orders/{purchase_order_id}/products | Remove products from a purchase order |
| PurchaseOrderApi | ReplaceDeliviersOfPurchaseOrder | PATCH /purchase_orders/{purchase_order_id}/deliveries | Replace the deliveries of a purchase order |
| PurchaseOrderApi | ReplaceDocumentsOfPurchaseOrder | PATCH /purchase_orders/{purchase_order_id}/documents | Replace the documents of a purchase order |
| PurchaseOrderApi | ReplaceProductsOfPurchaseOrder | PATCH /purchase_orders/{purchase_order_id}/products | Replace the products of a purchase order |
| PurchaseOrderApi | UpdateProductQuantitiesOfPurchaseOrder | PATCH /purchase_orders/{purchase_order_id}/products/quantity | Change the product quantity in a purchase order |
| PurchaseOrderApi | UpdatePurchaseOrder | PATCH /purchase_orders/{id} | Update a purchase order |
| PurchaseOrderStatusApi | CreatePurchaseOrderStatus | POST /purchase_order/statuses | Create a new purchase order status |
| PurchaseOrderStatusApi | DeletePurchaseOrderStatus | DELETE /purchase_order/statuses/{id} | Delete an purchase order status |
| PurchaseOrderStatusApi | GetPurchaseOrderIdStatus | GET /purchase_orders/{purchase_order_id}/status | Get the status of the specific purchase order |
| PurchaseOrderStatusApi | GetPurchaseOrderStatusById | GET /purchase_order/statuses/{id} | Get a single purchase order status |
| PurchaseOrderStatusApi | GetPurchaseOrderStatuses | GET /purchase_order/statuses | Get a range of purchase order statuses |
| PurchaseOrderStatusApi | UpdatePurchaseOrderStatus | PATCH /purchase_order/statuses/{id} | Update an purchase order status |
| QuotationApi | AddDocumentsToQuotation | POST /quotations/{quotation_id}/documents | Add documents to a quotation |
| QuotationApi | AddProductsToQuotation | POST /quotations/{quotation_id}/products | Add products to a quotation |
| QuotationApi | AddPurchaseOrdersToQuotation | POST /quotations/{quotation_id}/purchase_orders | Add purchase orders to a quotation |
| QuotationApi | CreateQuotation | POST /quotations | Create a new quotation |
| QuotationApi | DeleteQuotation | DELETE /quotations/{id} | Delete a quotation |
| QuotationApi | GetDocumentsOfQuotation | GET /quotations/{quotation_id}/documents | Get all documents of one quotation |
| QuotationApi | GetProductsOfQuotation | GET /quotations/{quotation_id}/products | Get all products of one quotation |
| QuotationApi | GetPurchaseOrdersOfQuotation | GET /quotations/{quotation_id}/purchase_orders | Get all purchase orders of one quotation |
| QuotationApi | GetQuotationById | GET /quotations/{id} | Get a single quotation |
| QuotationApi | GetQuotationIdStatus | GET /quotations/{quotation_id}/status | Get the status of the specific quotation |
| QuotationApi | GetQuotations | GET /quotations | Get a range of quotations |
| QuotationApi | RemoveDocumentsFromQuotation | DELETE /quotations/{quotation_id}/documents | Remove documents from a quotation |
| QuotationApi | RemoveProductsFromQuotation | DELETE /quotations/{quotation_id}/products | Remove products from a quotation |
| QuotationApi | RemovePurchaseOrdersFromQuotation | DELETE /quotations/{quotation_id}/purchase_orders | Remove purchase orders from a quotation |
| QuotationApi | ReplaceDocumentsOfQuotation | PATCH /quotations/{quotation_id}/documents | Replace the documents of a quotation |
| QuotationApi | ReplaceProductsOfQuotation | PATCH /quotations/{quotation_id}/products | Replace the products of a quotation |
| QuotationApi | ReplacePurchaseOrdersOfQuotation | PATCH /quotations/{quotation_id}/purchase_orders | Replace the purchase orders of a quotation |
| QuotationApi | UpdateProductQuantitiesOfQuotation | PATCH /quotations/{quotation_id}/products/quantity | Change the product quantity in a quotation |
| QuotationApi | UpdateQuotation | PATCH /quotations/{id} | Update a quotation |
| QuotationStatusApi | CreateQuotationStatus | POST /quotation/statuses | Create a new quotation status |
| QuotationStatusApi | DeleteQuotationStatus | DELETE /quotation/statuses/{id} | Delete an quotation status |
| QuotationStatusApi | GetQuotationIdStatus | GET /quotations/{quotation_id}/status | Get the status of the specific quotation |
| QuotationStatusApi | GetQuotationStatusById | GET /quotation/statuses/{id} | Get a single quotation status |
| QuotationStatusApi | GetQuotationStatuses | GET /quotation/statuses | Get a range of quotation statuses |
| QuotationStatusApi | UpdateQuotationStatus | PATCH /quotation/statuses/{id} | Update an quotation status |
| RequestForQuotationApi | AddBillOfMaterialsToRequestForQuotation | POST /request_for_quotations/{request_for_quotation_id}/bill_of_materials | Add bill of materials to a request for quotation |
| RequestForQuotationApi | AddDocumentsToRequestForQuotation | POST /request_for_quotations/{request_for_quotation_id}/documents | Add documents to a request for quotation |
| RequestForQuotationApi | AddQuotationsToRequestForQuotation | POST /request_for_quotations/{request_for_quotation_id}/quotations | Add quotations to a request for quotation |
| RequestForQuotationApi | CreateRequestForQuotation | POST /request_for_quotations | Create a new request for quotation |
| RequestForQuotationApi | DeleteBillOfMaterialsFromRequestForQuotation | DELETE /request_for_quotations/{request_for_quotation_id}/bill_of_materials | Remove bill of materials from a request for quotation |
| RequestForQuotationApi | DeleteDocumentsOfRequestForQuotation | DELETE /request_for_quotations/{request_for_quotation_id}/documents | Remove documents from a request for quotation |
| RequestForQuotationApi | DeleteQuotationsFromRequestForQuotation | DELETE /request_for_quotations/{request_for_quotation_id}/quotations | Remove quotations from a request for quotation |
| RequestForQuotationApi | DeleteRequestForQuotation | DELETE /request_for_quotations/{id} | Delete a request for quotation |
| RequestForQuotationApi | GetBillOfMaterialsOfRequestForQuotation | GET /request_for_quotations/{request_for_quotation_id}/bill_of_materials | Get all bill of materials of one request for quotation |
| RequestForQuotationApi | GetDocumentsOfRequestForQuotation | GET /request_for_quotations/{request_for_quotation_id}/documents | Get all documents of one request for quotation |
| RequestForQuotationApi | GetQuotationsOfRequestForQuotation | GET /request_for_quotations/{request_for_quotation_id}/quotations | Get all quotations of one request for quotation |
| RequestForQuotationApi | GetRequestForQuotationById | GET /request_for_quotations/{id} | Get a single request for quotation |
| RequestForQuotationApi | GetRequestForQuotationIdStatus | GET /request_for_quotations/{request_for_quotation_id}/status | Get the status of the specific request for quotation |
| RequestForQuotationApi | GetRequestForQuotations | GET /request_for_quotations | Get a range of request for quotations |
| RequestForQuotationApi | ReplaceBillOfMaterialsOfRequestForQuotation | PATCH /request_for_quotations/{request_for_quotation_id}/bill_of_materials | Replace the bill of materials of a request for quotation |
| RequestForQuotationApi | ReplaceDocumentsOfRequestForQuotation | PATCH /request_for_quotations/{request_for_quotation_id}/documents | Replace the documents of a request for quotation |
| RequestForQuotationApi | ReplaceQuotationsOfRequestForQuotation | PATCH /request_for_quotations/{request_for_quotation_id}/quotations | Replace the quotations of a request for quotation |
| RequestForQuotationApi | UpdateRequestForQuotation | PATCH /request_for_quotations/{id} | Update a request for quotation |
| RequestForQuotationStatusApi | CreateRequestForQuotationStatus | POST /request_for_quotation/statuses | Create a new request for quotation status |
| RequestForQuotationStatusApi | DeleteRequestForQuotationStatus | DELETE /request_for_quotation/statuses/{id} | Delete an request for quotation status |
| RequestForQuotationStatusApi | GetRequestForQuotationIdStatus | GET /request_for_quotations/{request_for_quotation_id}/status | Get the status of the specific request for quotation |
| RequestForQuotationStatusApi | GetRequestForQuotationStatusById | GET /request_for_quotation/statuses/{id} | Get a single request for quotation status |
| RequestForQuotationStatusApi | GetRequestForQuotationStatuses | GET /request_for_quotation/statuses | Get a range of request for quotation statuses |
| RequestForQuotationStatusApi | UpdateRequestForQuotationStatus | PATCH /request_for_quotation/statuses/{id} | Update an request for quotation status |
| SearchApi | Search | GET /search | search assets, batches, instrumentations, nodes, recipes, systems . |
| SoftwareApi | CreateSoftware | POST /softwares | Create a new software |
| SoftwareApi | DeleteSoftware | DELETE /softwares/{id} | Delete a software |
| SoftwareApi | GetSoftwareAttachmentsOfSoftware | GET /softwares/{software_id}/attachments | Get all software attachments of one software |
| SoftwareApi | GetSoftwareById | GET /softwares/{id} | Get a single software |
| SoftwareApi | GetSoftwares | GET /softwares | Get a range of softwares |
| SoftwareApi | UpdateSoftware | PATCH /softwares/{id} | Update a software |
| SoftwareAttachmentApi | CreateLinkSoftwareAttachment | POST /software/attachments/links | Create a new link as software attachment |
| SoftwareAttachmentApi | DeleteSoftwareAttachment | DELETE /software/attachments/{id} | Delete a software attachment and the file |
| SoftwareAttachmentApi | DownloadSoftwareAttachment | GET /software/attachments/{id}/download | Download the software attachments file |
| SoftwareAttachmentApi | GetSoftwareAttachmentById | GET /software/attachments/{id} | Get a single software attachment |
| SoftwareAttachmentApi | GetSoftwareAttachments | GET /software/attachments | Get a range of software attachments |
| SoftwareAttachmentApi | UpdateLinkSoftwareAttachment | PATCH /software/attachments/links/{id} | Update a software attachment with a link |
| SoftwareAttachmentApi | UpdateSoftwareAttachment | PATCH /software/attachments/{id} | Update an software attachment and especially its file |
| SoftwareAttachmentApi | UploadSoftwareAttachment | POST /software/attachments | Create and upload a new software attachment |
| SparePartApi | AddDocumentsToSparePart | POST /spare_parts/{spare_part_id}/documents | Add document to a spare part |
| SparePartApi | CreateSparePart | POST /spare_parts | Create a new spare part |
| SparePartApi | DeleteSparePart | DELETE /spare_parts/{id} | Delete a spare part |
| SparePartApi | GetDocumentsOfSparePart | GET /spare_parts/{spare_part_id}/documents | Get all documents of a spare part |
| SparePartApi | GetSparePartById | GET /spare_parts/{id} | Get a single spare part |
| SparePartApi | GetSparePartStatusesOptions | GET /spare_parts/{spare_part_id}/status-options | Get all possible statuses for the specified spare part |
| SparePartApi | GetSparePartTypesOptions | GET /spare_parts/{spare_part_id}/type-options | Get all possible types for the specified spare part |
| SparePartApi | GetSpareParts | GET /spare_parts | Get a range of spare parts |
| SparePartApi | RemoveDocumentsFromSparePart | DELETE /spare_parts/{spare_part_id}/documents | Remove documents from a spare part |
| SparePartApi | ReplaceDocumentsOfSparePart | PATCH /spare_parts/{spare_part_id}/documents | Replace the documents of a spare part |
| SparePartApi | UpdateSparePart | PATCH /spare_parts/{id} | Update a spare part |
| SparePartStatusApi | GetSparePartStatusById | GET /spare_part/statuses/{id} | Get a single spare part status |
| SparePartStatusApi | GetSparePartStatuses | GET /spare_part/statuses | Get a range of spare part statuses |
| SparePartStatusApi | GetSparePartStatusesOptions | GET /spare_parts/{spare_part_id}/status-options | Get all possible statuses for the specified spare part |
| SparePartTypeApi | CreateSparePartType | POST /spare_part/types | Create a new spare part type |
| SparePartTypeApi | DeleteSparePartType | DELETE /spare_part/types/{id} | Delete a spare part type |
| SparePartTypeApi | GetSparePartTypeById | GET /spare_part/types/{id} | Get a single spare part type |
| SparePartTypeApi | GetSparePartTypes | GET /spare_part/types | Get a range of spare part types |
| SparePartTypeApi | GetSparePartTypesOptions | GET /spare_parts/{spare_part_id}/type-options | Get all possible types for the specified spare part |
| SparePartTypeApi | UpdateSparePartType | PATCH /spare_part/types/{id} | Update a spare part type |
| SpecificationApi | DeleteSpecificationsOfAsset | DELETE /assets/{asset_id}/specifications | Delete specifications of an asset |
| SpecificationApi | GetSpecificationHistoryOfAsset | GET /assets/{asset_id}/specifications/{key}/history | Get the history of one specification attribute of an asset. |
| SpecificationApi | GetSpecificationHistoryOfBatch | GET /batches/{batch_id}/specifications/{key}/history | Get the history of one specification attribute of a batch. |
| SpecificationApi | GetSpecificationHistoryOfInstrumentation | GET /instrumentations/{instrumentation_id}/specifications/{key}/history | Get the history of one specification attribute of an instrumentation. |
| SpecificationApi | GetSpecificationHistoryOfRecipe | GET /recipes/{recipe_id}/specifications/{key}/history | Get the history of one specification attribute of an recipe. |
| SpecificationApi | GetSpecificationHistoryOfSystem | GET /systems/{system_id}/specifications/{key}/history | Get the history of one specification attribute of a system. |
| SpecificationApi | GetSpecificationKeysOfAssets | GET /asset/specification_keys | Get existing asset specification keys |
| SpecificationApi | GetSpecificationKeysOfInstrumentations | GET /instrumentation/specification_keys | Get existing instrumentation specification keys |
| SpecificationApi | GetSpecificationKeysOfNodes | GET /node/specification_keys | Get existing asset specification keys |
| SpecificationApi | GetSpecificationsOfAPISubscription | GET /api_subscriptions/{id}/specifications | Get specifications of an api subscription |
| SpecificationApi | GetSpecificationsOfAsset | GET /assets/{asset_id}/specifications | Get specifications of an asset |
| SpecificationApi | GetSpecificationsOfBatch | GET /batches/{batch_id}/specifications | Get specifications of a batch |
| SpecificationApi | GetSpecificationsOfEvent | GET /events/{event_id}/specifications | Get specifications of an event |
| SpecificationApi | GetSpecificationsOfInstrumentation | GET /instrumentations/{instrumentation_id}/specifications | Get specifications of an instrumentation |
| SpecificationApi | GetSpecificationsOfNode | GET /nodes/{node_id}/specifications | Get specifications of a node |
| SpecificationApi | GetSpecificationsOfProduct | GET /products/{product_id}/specifications | Get specifications of a product |
| SpecificationApi | GetSpecificationsOfRecipe | GET /recipes/{recipe_id}/specifications | Get specifications of an recipe |
| SpecificationApi | GetSpecificationsOfSubscription | GET /subscriptions/{subscription_id}/specifications | Get specifications of a subscription |
| SpecificationApi | GetSpecificationsOfSystem | GET /systems/{system_id}/specifications | Get specifications of a system |
| SpecificationApi | GetSpecificationsOfUser | GET /users/{user_id}/specifications | Get specifications of a user |
| SpecificationApi | RemoveSpecificationsFromAPISubscriptions | DELETE /api_subscriptions/{id}/specifications | Delete specifications of an api subscription |
| SpecificationApi | RemoveSpecificationsFromBatch | DELETE /batches/{batch_id}/specifications | Delete specifications of a batch |
| SpecificationApi | RemoveSpecificationsFromEvent | DELETE /events/{event_id}/specifications | Delete specifications of an event |
| SpecificationApi | RemoveSpecificationsFromInstrumentation | DELETE /instrumentations/{instrumentation_id}/specifications | Delete specifications of an instrumentation |
| SpecificationApi | RemoveSpecificationsFromNode | DELETE /nodes/{node_id}/specifications | Delete specifications of a node |
| SpecificationApi | RemoveSpecificationsFromProduct | DELETE /products/{product_id}/specifications | Delete specifications of a product |
| SpecificationApi | RemoveSpecificationsFromRecipe | DELETE /recipes/{recipe_id}/specifications | Delete specifications of an recipe |
| SpecificationApi | RemoveSpecificationsFromSubscriptions | DELETE /subscriptions/{subscription_id}/specifications | Delete specifications of a subscription |
| SpecificationApi | RemoveSpecificationsFromSystem | DELETE /systems/{system_id}/specifications | Delete specifications of a system |
| SpecificationApi | RemoveSpecificationsFromUsers | DELETE /users/{user_id}/specifications | Delete specifications of a user |
| SpecificationApi | RenameSpecificationsOfAPISubscriptions | PATCH /api_subscriptions/{id}/specifications/rename | Rename a specification key |
| SpecificationApi | RenameSpecificationsOfAsset | PATCH /assets/{asset_id}/specifications/rename | Rename a specification key |
| SpecificationApi | RenameSpecificationsOfBatch | PATCH /batches/{batch_id}/specifications/rename | Rename a specification key |
| SpecificationApi | RenameSpecificationsOfEvent | PATCH /events/{event_id}/specifications/rename | Rename a specification key |
| SpecificationApi | RenameSpecificationsOfInstrumentation | PATCH /instrumentations/{instrumentation_id}/specifications/rename | Rename a specification key |
| SpecificationApi | RenameSpecificationsOfNode | PATCH /nodes/{node_id}/specifications/rename | Rename a specification key |
| SpecificationApi | RenameSpecificationsOfProduct | PATCH /products/{product_id}/specifications/rename | rename a key in the specification. |
| SpecificationApi | RenameSpecificationsOfRecipe | PATCH /recipes/{recipe_id}/specifications/rename | Rename a specification key |
| SpecificationApi | RenameSpecificationsOfSubscriptions | PATCH /subscriptions/{subscription_id}/specifications/rename | Rename a specification key |
| SpecificationApi | RenameSpecificationsOfSystem | PATCH /systems/{system_id}/specifications/rename | Rename a specification key |
| SpecificationApi | RenameSpecificationsOfUsers | PATCH /users/{user_id}/specifications/rename | Rename a specification key |
| SpecificationApi | UpdateSpecificationsOfAPISubscriptions | PATCH /api_subscriptions/{id}/specifications | Update specifications of an api subscription |
| SpecificationApi | UpdateSpecificationsOfAsset | PATCH /assets/{asset_id}/specifications | Update specifications of an asset |
| SpecificationApi | UpdateSpecificationsOfBatch | PATCH /batches/{batch_id}/specifications | Update specifications of a batch |
| SpecificationApi | UpdateSpecificationsOfEvent | PATCH /events/{event_id}/specifications | Update specifications of an event |
| SpecificationApi | UpdateSpecificationsOfInstrumentation | PATCH /instrumentations/{instrumentation_id}/specifications | Update specifications of an instrumentation |
| SpecificationApi | UpdateSpecificationsOfNode | PATCH /nodes/{node_id}/specifications | Update specifications of a node |
| SpecificationApi | UpdateSpecificationsOfProduct | PATCH /products/{product_id}/specifications | Update specifications of a product |
| SpecificationApi | UpdateSpecificationsOfRecipe | PATCH /recipes/{recipe_id}/specifications | Update specifications of an recipe |
| SpecificationApi | UpdateSpecificationsOfSubscriptions | PATCH /subscriptions/{subscription_id}/specifications | Update specifications of a subscription |
| SpecificationApi | UpdateSpecificationsOfSystem | PATCH /systems/{system_id}/specifications | Update specifications of a system |
| SpecificationApi | UpdateSpecificationsOfUsers | PATCH /users/{user_id}/specifications | Update specifications of a user |
| SubscriptionApi | AddAssetsToSubscription | POST /subscriptions/{subscription_id}/assets | Add assets to a subscription |
| SubscriptionApi | AddSeatUsersToSubscription | POST /subscriptions/{subscription_id}/seats | Add users (existing users) or emails (new users) to a seat in subscription |
| SubscriptionApi | AssignAssetSetToSubscription | POST /subscriptions/{subscription_id}/asset_assignment | Assign assets to a subscription based on a filter |
| SubscriptionApi | CreateSubscription | POST /subscriptions | Create a new subscription |
| SubscriptionApi | DeleteSubscription | DELETE /subscriptions/{id} | Delete a subscription |
| SubscriptionApi | DeleteSubscriptionSeat | DELETE /subscription/seats/{id} | Delete a subscription seat |
| SubscriptionApi | GetAssetsOfSubscription | GET /subscriptions/{subscription_id}/assets | Get all assets of one subscription |
| SubscriptionApi | GetSeatUsersOfSubscription | GET /subscriptions/{subscription_id}/seats | Get all users or invited emails having a seat in subscription |
| SubscriptionApi | GetSpecificationsOfSubscription | GET /subscriptions/{subscription_id}/specifications | Get specifications of a subscription |
| SubscriptionApi | GetSubscriptionById | GET /subscriptions/{id} | Get a single subscription |
| SubscriptionApi | GetSubscriptionSeats | GET /subscription/seats | Get a range of subscription seats |
| SubscriptionApi | GetSubscriptions | GET /subscriptions | Get a range of subscriptions |
| SubscriptionApi | RemoveAssetsFromSubscription | DELETE /subscriptions/{subscription_id}/assets | Remove assets from a subscription |
| SubscriptionApi | RemoveSeatUsersFromSubscription | DELETE /subscriptions/{subscription_id}/seats | Remove users (existing users) or emails (new users) from a seat in subscription |
| SubscriptionApi | RemoveSpecificationsFromSubscriptions | DELETE /subscriptions/{subscription_id}/specifications | Delete specifications of a subscription |
| SubscriptionApi | RenameSpecificationsOfSubscriptions | PATCH /subscriptions/{subscription_id}/specifications/rename | Rename a specification key |
| SubscriptionApi | ReplaceAssetsOfSubscription | PATCH /subscriptions/{subscription_id}/assets | Replace the assets of a subscription |
| SubscriptionApi | UnassignAssetSetToSubscription | DELETE /subscriptions/{subscription_id}/asset_assignment | Unassign assets to a subscription based on a filter |
| SubscriptionApi | UpdateSpecificationsOfSubscriptions | PATCH /subscriptions/{subscription_id}/specifications | Update specifications of a subscription |
| SubscriptionApi | UpdateSubscription | PATCH /subscriptions/{id} | Update a subscription |
| SubscriptionApi | UpdateSubscriptionSeat | PATCH /subscription/seats/{id} | Update a subscription seat |
| TenantApi | AddTenantAdmins | POST /tenants/{tenant_id}/admins | Add admins to a tenant |
| TenantApi | AddTenantUsers | POST /tenants/{tenant_id}/users | Add users to a tenant |
| TenantApi | CreateTenants | POST /tenants | Create a new tenant |
| TenantApi | DeleteTenant | DELETE /tenants/{id} | Delete a tenant |
| TenantApi | GetAssetTenantOptions | GET /assets/{asset_id}/tenant-options | Get all possible tenants of the specified assets |
| TenantApi | GetTenantAdmins | GET /tenants/{tenant_id}/admins | Get all admins of a tenant |
| TenantApi | GetTenantUsers | GET /tenants/{tenant_id}/users | Get all users of a tenant |
| TenantApi | GetTenants | GET /tenants | Get a range of tenants |
| TenantApi | GetTenantsById | GET /tenants/{id} | Get a single tenant |
| TenantApi | RemoveTenantAdmins | DELETE /tenants/{tenant_id}/admins | Remove admins from a tenant |
| TenantApi | RemoveTenantUsers | DELETE /tenants/{tenant_id}/users | Remove users from a tenant |
| TenantApi | ReplaceTenantAdmins | PATCH /tenants/{tenant_id}/admins | Replace the admins of a tenant |
| TenantApi | ReplaceTenantUsers | PATCH /tenants/{tenant_id}/users | Replace the users of a tenant |
| TenantApi | UpdateTenant | PATCH /tenants/{id} | Update a tenant |
| ThresholdApi | CreateInstrumentationThreshold | POST /instrumentations/{instrumentation_id}/thresholds | Create an instrumentation threshold |
| ThresholdApi | CreateRecipeThreshold | POST /recipes/{recipe_id}/thresholds | Create an recipe threshold |
| ThresholdApi | CreateSystemThreshold | POST /systems/{system_id}/thresholds | Create an system threshold |
| ThresholdApi | DeleteInstrumentationThreshold | DELETE /instrumentations/{instrumentation_id}/thresholds/{id} | Delete an instrumentation threshold. |
| ThresholdApi | DeleteRecipeThreshold | DELETE /recipes/{recipe_id}/thresholds/{id} | Delete an recipe threshold. |
| ThresholdApi | DeleteSystemThreshold | DELETE /systems/{system_id}/thresholds/{id} | Delete an system threshold. |
| ThresholdApi | GetInstrumentationThreshold | GET /instrumentations/{instrumentation_id}/thresholds/{id} | Get an instrumentation threshold |
| ThresholdApi | GetInstrumentationThresholds | GET /instrumentations/{instrumentation_id}/thresholds | Get instrumentation thresholds |
| ThresholdApi | GetRecipeThreshold | GET /recipes/{recipe_id}/thresholds/{id} | Get an recipe threshold |
| ThresholdApi | GetRecipeThresholds | GET /recipes/{recipe_id}/thresholds | Get recipe thresholds |
| ThresholdApi | GetSystemThreshold | GET /systems/{system_id}/thresholds/{id} | Get an system threshold |
| ThresholdApi | GetSystemThresholds | GET /systems/{system_id}/thresholds | Get system thresholds |
| ThresholdApi | UpdateInstrumentationThreshold | PATCH /instrumentations/{instrumentation_id}/thresholds/{id} | Update an instrumentation threshold |
| ThresholdApi | UpdateRecipeThreshold | PATCH /recipes/{recipe_id}/thresholds/{id} | Update an recipe threshold |
| ThresholdApi | UpdateSystemThreshold | PATCH /systems/{system_id}/thresholds/{id} | Update an system threshold |
| UnitApi | GetUnitById | GET /units/{id} | Get a single Unit |
| UnitApi | GetUnits | GET /units | Get a range of units. |
| UserApi | AddUserGroupsToUser | POST /users/{user_id}/usergroups | Add user groups to a user |
| UserApi | AddUserRolesToUser | POST /users/{user_id}/userroles | Add user roles to a user |
| UserApi | CreateCurrentUserDataExport | POST /users/current/data_exports | create users data export for current user |
| UserApi | CreateTechnicalUser | POST /technical_users | Create a new technical user |
| UserApi | DeleteCurrentUserDatasExport | DELETE /users/current/data_exports/{id} | delete users data export for current user |
| UserApi | DeleteCurrentUserDemoData | DELETE /users/current/demo_data | Deactivate demo data for user |
| UserApi | DeleteCurrentUserNotifications | DELETE /users/current/notifications/{id} | Delete the given notification for the current user |
| UserApi | DeleteTechnicalUser | DELETE /technical_users/{id} | Delete a technical user |
| UserApi | DeleteUser | DELETE /users/{id} | Delete a user |
| UserApi | GetCurrentUser | GET /users/current | Get current user |
| UserApi | GetCurrentUserAccessRights | GET /users/current/access_rights | Get current users access rights for a permitable |
| UserApi | GetCurrentUserDataExportbyId | GET /users/current/data_exports/{id} | Get a single user data export |
| UserApi | GetCurrentUserDataExports | GET /users/current/data_exports | Get current users data exports |
| UserApi | GetCurrentUserDataExportsFile | GET /users/current/data_exports/{id}/download | Get current users data export zip file |
| UserApi | GetCurrentUserDemoData | GET /users/current/demo_data | Get information if demo data is available for user |
| UserApi | GetCurrentUserNotifications | GET /users/current/notifications | Get relevant notifications for the current authenticated user |
| UserApi | GetSignInsOfAllUser | GET /sign_ins | Get sign_ins of all users |
| UserApi | GetSignInsOfUser | GET /users/{user_id}/sign_ins | Get sign_ins of a user |
| UserApi | GetSpecificationsOfUser | GET /users/{user_id}/specifications | Get specifications of a user |
| UserApi | GetTechnicalUsers | GET /technical_users | Get a range of technical users |
| UserApi | GetUsageOfUser | GET /users/{user_id}/usage | Get the use of storage and the number of assets registred of a user |
| UserApi | GetUserById | GET /users/{id} | Get a single user |
| UserApi | GetUserGroupsOfUser | GET /users/{user_id}/usergroups | Get the user groups of one user |
| UserApi | GetUserRolesOfUser | GET /users/{user_id}/userroles | Get all user roles of one user |
| UserApi | GetUsers | GET /users | Get a range of users |
| UserApi | LookupUser | GET /users/lookup | Lookup user by email |
| UserApi | RemoveSpecificationsFromUsers | DELETE /users/{user_id}/specifications | Delete specifications of a user |
| UserApi | RemoveUserGroupFromUser | DELETE /users/{user_id}/usergroups | Remove user groups from a user |
| UserApi | RemoveUserRolesFromUser | DELETE /users/{user_id}/userroles | Remove user roles from a user |
| UserApi | RenameSpecificationsOfUsers | PATCH /users/{user_id}/specifications/rename | Rename a specification key |
| UserApi | ReplaceUserGroupsOfUser | PATCH /users/{user_id}/usergroups | Replace the user groups of a user |
| UserApi | ReplaceUserRolesOfUser | PATCH /users/{user_id}/userroles | Replace the user roles of a user |
| UserApi | ResetPasswordTechnicalUser | POST /technical_users/{id}/password_reset | create a new password for a technical user |
| UserApi | SetCurrentUserDemoData | POST /users/current/demo_data | Activate demo data for user |
| UserApi | UpdateSpecificationsOfUsers | PATCH /users/{user_id}/specifications | Update specifications of a user |
| UserApi | UpdateUser | PATCH /users/{id} | Update a user |
| UserGroupApi | AddUsersToUserGroup | POST /usergroups/{usergroup_id}/users | Add users to a user group |
| UserGroupApi | CreateUserGroup | POST /usergroups | Create a new user group |
| UserGroupApi | DeleteUserGroup | DELETE /usergroups/{id} | Delete a user group |
| UserGroupApi | GetUserGroupById | GET /usergroups/{id} | Get a single user group |
| UserGroupApi | GetUserGroups | GET /usergroups | Get a range of user groups |
| UserGroupApi | GetUsersOfUserGroup | GET /usergroups/{usergroup_id}/users | Get the users of a user group |
| UserGroupApi | RemoveUsersFromUserGroup | DELETE /usergroups/{usergroup_id}/users | Remove users from a user group |
| UserGroupApi | ReplaceUsersOfUserGroup | PATCH /usergroups/{usergroup_id}/users | Replace the users of a user group |
| UserGroupApi | UpdateUserGroup | PATCH /usergroups/{id} | Update a user group |
| UserRoleApi | AddUsersToUserRole | POST /userroles/{userrole_id}/users | Add users to a user role |
| UserRoleApi | CreateUserRole | POST /userroles | Create a new user role |
| UserRoleApi | DeleteUserRole | DELETE /userroles/{id} | Delete a user role |
| UserRoleApi | DeleteUsersFromUserRole | DELETE /userroles/{userrole_id}/users | Remove users from a user role |
| UserRoleApi | GetUserRoleById | GET /userroles/{id} | Get a single user role |
| UserRoleApi | GetUserRoles | GET /userroles | Get a range of user roles |
| UserRoleApi | GetUsersOfUserRole | GET /userroles/{userrole_id}/users | Get all users of one user role. To work with roles, admin role is required. |
| UserRoleApi | ReplaceUsersOfUserRole | PATCH /userroles/{userrole_id}/users | Replace the users of a user role |
| UserRoleApi | UpdateUserRole | PATCH /userroles/{id} | Update a user role |
| ValuesApi | CreateAssetValues | POST /assets/{asset_id}/values | Create asset values |
| ValuesApi | GetAssetValues | GET /assets/{asset_id}/values | Get latest values for the asset. |
| ValuesApi | GetAssetValuesForKey | GET /assets/{asset_id}/values/{key} | Get asset values for a specific key. |
| ValuesApi | GetBatchValues | GET /batches/{batch_id}/values | Get latest values for the batch. |
| ValuesApi | GetBatchValuesForKey | GET /batches/{batch_id}/values/{key} | Get batch values for a specific key. |
| ValuesApi | GetInstrumentationValues | GET /instrumentations/{instrumentation_id}/values | Get latest values for the instrumentation. |
| ValuesApi | GetInstrumentationValuesForKey | GET /instrumentations/{instrumentation_id}/values/{key} | Get instrumentation values for a specific key. |
| ValuesApi | GetSystemValues | GET /systems/{system_id}/values | Get latest values for the system. |
| ValuesApi | GetSystemValuesForKey | GET /systems/{system_id}/values/{key} | Get system values for a specific key. |
<a name="documentation-for-models"></a>
Documentation for Models
- Model.APIKeyBase
- Model.APIKeyRequest
- Model.APIKeyResponse
- Model.APIKeysResponse
- Model.APISubscriptionBase
- Model.APISubscriptionRequest
- Model.APISubscriptionResponse
- Model.APISubscriptionsResponse
- Model.AccessRightsResponse
- Model.AddOnBase
- Model.AddOnIDs
- Model.AddOnResponse
- Model.AddOnsResponse
- Model.AddressBase
- Model.AdminIDs
- Model.AssetBase
- Model.AssetHealthConditionNested
- Model.AssetHealthConditionResponse
- Model.AssetHealthConditionTimemachine
- Model.AssetHealthConditionsCalculateRequest
- Model.AssetHealthConditionsRequest
- Model.AssetHealthConditionsRequestHealthConditions
- Model.AssetHealthConditionsResponse
- Model.AssetHealthConditionsTimemachineResponse
- Model.AssetHistory
- Model.AssetHistoryBase
- Model.AssetHistoryResponse
- Model.AssetIDs
- Model.AssetInstrumentationHistory
- Model.AssetInstrumentationsHistoryResponse
- Model.AssetKeyValueObjectsData
- Model.AssetKeyValueObjectsResponse
- Model.AssetKeyValuesData
- Model.AssetKeyValuesResponse
- Model.AssetRequest
- Model.AssetResponse
- Model.AssetStatusBase
- Model.AssetStatusRequest
- Model.AssetStatusResponse
- Model.AssetStatuses
- Model.AssetValue
- Model.AssetValueObjectRequest
- Model.AssetValueObjectRequestData
- Model.AssetValueObjectsPagination
- Model.AssetValueObjectsRequest
- Model.AssetValueRequest
- Model.AssetValueRequestData
- Model.AssetValuesPagination
- Model.AssetValuesRequest
- Model.AssetValuesResponse
- Model.AssetsResponse
- Model.Assignable
- Model.AttachmentLinkRequest
- Model.AttachmentResponse
- Model.AttachmentsBody
- Model.AttachmentsIdBody
- Model.AttachmentsIdBody1
- Model.AttachmentsResponse
- Model.BillOfMaterialBase
- Model.BillOfMaterialIDs
- Model.BillOfMaterialRequest
- Model.BillOfMaterialResponse
- Model.BillOfMaterialsResponse
- Model.BillingAddressRequest
- Model.BillingAddressResponse
- Model.BillingContactRequest
- Model.BillingContactResponse
- Model.CategoryIDs
- Model.Causes
- Model.ClientApplicationBase
- Model.ClientApplicationIDs
- Model.ClientApplicationPublicResponse
- Model.ClientApplicationRequest
- Model.ClientApplicationResponse
- Model.ClientApplicationsResponse
- Model.Companies
- Model.Companies1
- Model.CompanyAddressRequest
- Model.CompanyAddressResponse
- Model.CompanyBase
- Model.CompanyNested
- Model.CompanyRequest
- Model.CompanyResponse
- Model.ContainerExportRequest
- Model.CurrentUserDemoDataResponse
- Model.CurrentUserResponse
- Model.CurrentUserResponseLinks
- Model.CustomerBase
- Model.CustomerRequest
- Model.CustomerResponse
- Model.CustomersResponse
- Model.DataExportRequest
- Model.DataExportResponse
- Model.DataExportsResponse
- Model.DeliveriesResponse
- Model.DeliveryBase
- Model.DeliveryIDs
- Model.DeliveryProducts
- Model.DeliveryProductsAssets
- Model.DeliveryRequest
- Model.DeliveryResponse
- Model.DeliveryStatusBase
- Model.DeliveryStatusRequest
- Model.DeliveryStatusResponse
- Model.DeliveryStatuses
- Model.DocumentBase
- Model.DocumentCategoriesResponse
- Model.DocumentCategoryBase
- Model.DocumentCategoryRequest
- Model.DocumentCategoryResponse
- Model.DocumentCategoryResponseLinks
- Model.DocumentClassificationBase
- Model.DocumentClassificationRequest
- Model.DocumentClassificationResponse
- Model.DocumentClassifications
- Model.DocumentIDs
- Model.DocumentRequest
- Model.DocumentResponse
- Model.DocumentStatusBase
- Model.DocumentStatusRequest
- Model.DocumentStatusResponse
- Model.DocumentStatuses
- Model.DocumentsResponse
- Model.EdgeDeviceApplicationBase
- Model.EdgeDeviceApplicationResponse
- Model.EdgeDeviceApplicationsResponse
- Model.EdgeDeviceBase
- Model.EdgeDeviceFeatureBase
- Model.EdgeDeviceFeatureIDs
- Model.EdgeDeviceFeatureResponse
- Model.EdgeDeviceFeaturesResponse
- Model.EdgeDeviceResponse
- Model.EdgeDeviceResponseApiSubscription
- Model.EdgeDevicesIds
- Model.Error
- Model.ErrorResponse
- Model.EventBase
- Model.EventRequest
- Model.EventRequestNoAssets
- Model.EventRequestNoInstrumentations
- Model.EventResponse
- Model.EventStatusBase
- Model.EventStatusRequest
- Model.EventStatusResponse
- Model.EventStatuses
- Model.EventTypeBase
- Model.EventTypeRequest
- Model.EventTypeResponse
- Model.EventTypes
- Model.Events
- Model.Events1
- Model.EventsResponse
- Model.ExtendedOrderCode
- Model.Features
- Model.Features1
- Model.HealthConditionBase
- Model.HealthConditionCauseBase
- Model.HealthConditionCauseIDs
- Model.HealthConditionCauseRequest
- Model.HealthConditionCauseResponse
- Model.HealthConditionExtended
- Model.HealthConditionExtendedRules
- Model.HealthConditionRemedyBase
- Model.HealthConditionRemedyRequest
- Model.HealthConditionRemedyResponse
- Model.HealthConditionRequest
- Model.HealthConditionResponse
- Model.HealthConditionsRequest
- Model.HealthConditionsRequestHealthConditions
- Model.HealthConditionsResponse
- Model.IdPicturesBody
- Model.IdPicturesBody1
- Model.IdPicturesBody2
- Model.IdPicturesBody3
- Model.InstrumentationAssetHistory
- Model.InstrumentationAssetsHistoryResponse
- Model.InstrumentationBase
- Model.InstrumentationIDs
- Model.InstrumentationRequest
- Model.InstrumentationResponse
- Model.InstrumentationStatusBase
- Model.InstrumentationStatusRequest
- Model.InstrumentationStatusResponse
- Model.InstrumentationStatuses
- Model.InstrumentationStatuses1
- Model.InstrumentationTypeBase
- Model.InstrumentationTypeRequest
- Model.InstrumentationTypeResponse
- Model.InstrumentationTypes
- Model.InstrumentationsResponse
- Model.Link
- Model.Links
- Model.Links1
- Model.Links10
- Model.Links11
- Model.Links12
- Model.Links13
- Model.Links14
- Model.Links15
- Model.Links16
- Model.Links17
- Model.Links18
- Model.Links19
- Model.Links2
- Model.Links20
- Model.Links21
- Model.Links3
- Model.Links4
- Model.Links5
- Model.Links6
- Model.Links7
- Model.Links8
- Model.Links9
- Model.NestedID
- Model.NestedIDCode
- Model.NestedIDEmail
- Model.NestedIDHref
- Model.NestedIDHrefName
- Model.NestedIDHrefSerialnumber
- Model.NestedIDHrefTag
- Model.NestedIDUserNameHref
- Model.NodeBase
- Model.NodeIDs
- Model.NodeRequest
- Model.NodeResponse
- Model.NodeTypeBase
- Model.NodeTypeRequest
- Model.NodeTypeResponse
- Model.NodeTypes
- Model.NodesResponse
- Model.NotificationBase
- Model.NotificationRequest
- Model.NotificationResponse
- Model.Notifications
- Model.Ooptions
- Model.Options
- Model.Pagination
- Model.PermissionBase
- Model.PermissionInheritable
- Model.PermissionInheritanceBase
- Model.PermissionInheritanceRequest
- Model.PermissionInheritanceResponse
- Model.PermissionInheritances
- Model.PermissionRequest
- Model.PermissionRequestCreateRequest
- Model.PermissionRequestCreateRequestAsset
- Model.PermissionRequestCreateRequestAssetManufacturer
- Model.PermissionRequestResponse
- Model.PermissionRequestUpdateRequest
- Model.PermissionResponse
- Model.Permissions
- Model.Permitable
- Model.Permitable1
- Model.PictureLinkRequest
- Model.PictureResponse
- Model.PicturesIdBody
- Model.PicturesIdBody1
- Model.PicturesIdBody2
- Model.PicturesIdBody3
- Model.PicturesResponse
- Model.ProductBase
- Model.ProductCategoriesResponse
- Model.ProductCategoryBase
- Model.ProductCategoryRequest
- Model.ProductCategoryResponse
- Model.ProductCategoryResponseLinks
- Model.ProductFeatureBase
- Model.ProductFeatureRequest
- Model.ProductFeatureResponse
- Model.ProductFeaturesResponse
- Model.ProductIDs
- Model.ProductIdentifierBase
- Model.ProductIdentifierRequest
- Model.ProductIdentifierRequestNoProducts
- Model.ProductIdentifierResponse
- Model.ProductIdentifiers
- Model.ProductIdentifiersResponse
- Model.ProductLineItem
- Model.ProductNested
- Model.ProductOptionBase
- Model.ProductOptionRequest
- Model.ProductOptionResponse
- Model.ProductOptionsResponse
- Model.ProductQuantity
- Model.ProductRequest
- Model.ProductResponse
- Model.ProductResponseLinks
- Model.ProductStatusBase
- Model.ProductStatusRequest
- Model.ProductStatusResponse
- Model.ProductStatuses
- Model.ProductVariantBase
- Model.ProductVariantConfigurationRequest
- Model.ProductVariantConfigurationResponse
- Model.ProductVariantRequest
- Model.ProductVariantResponse
- Model.ProductVariantResponseLinks
- Model.ProductVariantsResponse
- Model.Products
- Model.ProductsResponse
- Model.PurchaseOrderBase
- Model.PurchaseOrderIDs
- Model.PurchaseOrderRequest
- Model.PurchaseOrderResponse
- Model.PurchaseOrderStatusBase
- Model.PurchaseOrderStatusRequest
- Model.PurchaseOrderStatusResponse
- Model.PurchaseOrderStatuses
- Model.PurchaseOrdersResponse
- Model.Quantity
- Model.QuotationBase
- Model.QuotationIDs
- Model.QuotationRequest
- Model.QuotationResponse
- Model.QuotationStatusBase
- Model.QuotationStatusRequest
- Model.QuotationStatusResponse
- Model.QuotationStatuses
- Model.QuotationsResponse
- Model.RecipeBase
- Model.RecipeIDs
- Model.RecipeResponse
- Model.RecipesResponse
- Model.Remedies
- Model.RequestForQuotationBase
- Model.RequestForQuotationIDs
- Model.RequestForQuotationRequest
- Model.RequestForQuotationResponse
- Model.RequestForQuotationStatusBase
- Model.RequestForQuotationStatusRequest
- Model.RequestForQuotationStatusResponse
- Model.RequestForQuotationStatuses
- Model.RequestForQuotationsResponse
- Model.RequestUser
- Model.ResponseUser
- Model.SearchItemResponse
- Model.SearchItemsResponse
- Model.ShippingAddressRequest
- Model.ShippingAddressResponse
- Model.SignInResponse
- Model.SignInsResponse
- Model.SoftwareAttachmentLinkRequestPatch
- Model.SoftwareAttachmentLinkRequestPost
- Model.SoftwareAttachmentResponse
- Model.SoftwareAttachmentsBody
- Model.SoftwareAttachmentsResponse
- Model.SoftwareIDs
- Model.SoftwareRequestPatch
- Model.SoftwareRequestPost
- Model.SoftwareResponse
- Model.SoftwareResponseSoftwareType
- Model.SoftwaresResponse
- Model.SparePartBase
- Model.SparePartIDs
- Model.SparePartRequest
- Model.SparePartResponse
- Model.SparePartResponseLinks
- Model.SparePartStatusResponse
- Model.SparePartStatuses
- Model.SparePartTypeBase
- Model.SparePartTypeRequest
- Model.SparePartTypeResponse
- Model.SparePartTypes
- Model.SparePartsResponse
- Model.SpecificationBase
- Model.SpecificationHistoryResponse
- Model.SpecificationKeys
- Model.SpecificationRequest
- Model.SpecificationResponse
- Model.SpecificationUIVisibleRequest
- Model.SpecificationUIVisibleResponse
- Model.SpecificationsDelete
- Model.SpecificationsRename
- Model.SpecificationsRequest
- Model.SpecificationsResponse
- Model.SpecificationsUIVisibleRequest
- Model.SpecificationsUIVisibleResponse
- Model.SubscriptionAssetAssignmentRequest
- Model.SubscriptionBase
- Model.SubscriptionRequest
- Model.SubscriptionResponse
- Model.SubscriptionSeatBase
- Model.SubscriptionSeatPatch
- Model.SubscriptionSeatResponse
- Model.SubscriptionSeatsResponse
- Model.SubscriptionsResponse
- Model.SuccessorResponse
- Model.SuccessorsResponse
- Model.SystemBase
- Model.SystemIDs
- Model.SystemResponse
- Model.SystemsResponse
- Model.TechnicalUserBase
- Model.TechnicalUserCreateResponse
- Model.TechnicalUserCreateResponseLinks
- Model.TechnicalUserPasswordResponse
- Model.TechnicalUserRequest
- Model.TechnicalUserResponse
- Model.TechnicalUsersResponse
- Model.TenantBase
- Model.TenantRequest
- Model.TenantResponse
- Model.Tenants
- Model.TenantsResponse
- Model.ThresholdBase
- Model.ThresholdRequest
- Model.ThresholdResponse
- Model.ThresholdsResponse
- Model.UnitBase
- Model.UnitResponse
- Model.UnitsResponse
- Model.UsageResponse
- Model.UserAddressRequest
- Model.UserAddressResponse
- Model.UserBase
- Model.UserChangeRequest
- Model.UserGroupBase
- Model.UserGroupIDs
- Model.UserGroupRequest
- Model.UserGroupResponse
- Model.UserGroupResponseLinks
- Model.UserGroupWithUsers
- Model.UserGroupsWithUsers
- Model.UserIDorEmails
- Model.UserIDs
- Model.UserPublicResponse
- Model.UserResponse
- Model.UserResponseLinks
- Model.UserRoleBase
- Model.UserRoleIDs
- Model.UserRoleRequest
- Model.UserRoleResponse
- Model.UserRolesResponse
- Model.UsersPublicResponse
- Model.UsersResponse
- Model.WebhookBase
- Model.WebhookBaseProperties
- Model.WebhookCreateResponse
- Model.WebhookEventIDs
- Model.WebhookEventResponse
- Model.WebhookEventResponses
- Model.WebhookRequest
- Model.WebhookResponse
- Model.WebhookResponses
- Model.WebhookSecretResponse
<a name="documentation-for-authorization"></a>
Documentation for Authorization
<a name="API-Key"></a>
API-Key
- Type: API key
- API key parameter name: API-Key
- Location: HTTP header
<a name="Authentication"></a>
Authentication
- Type: HTTP basic authentication
| Product | Versions Compatible and additional computed target framework versions. |
|---|---|
| .NET Framework | net45 is compatible. net451 was computed. net452 was computed. net46 was computed. net461 was computed. net462 was computed. net463 was computed. net47 was computed. net471 was computed. net472 was computed. net48 was computed. net481 was computed. |
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.
-
- JsonSubTypes (>= 1.2.0)
- NewtonSoft.Json (>= 10.0.3)
- RestSharp (>= 105.1.0)
NuGet packages
This package is not used by any NuGet packages.
GitHub repositories
This package is not used by any popular GitHub repositories.
| Version | Downloads | Last Updated |
|---|---|---|
| 1.0.0 | 396 | 8/12/2022 |