netilion_api_documentation

Welcome_to_the_Netilion_API_Documentation_which_provides_interactive_access_and_documentation_to_our_REST_API_Please_visit_our_developer_portal_for_further_instructions_and_information_httpsdeveloper_netilion_endress_com

Usage no npm install needed!

<script type="module">
  import netilionApiDocumentation from 'https://cdn.skypack.dev/netilion_api_documentation';
</script>

README

netilion_api_documentation

NetilionApiDocumentation - JavaScript client for netilion_api_documentation Welcome to the Netilion API Documentation, which provides interactive access and documentation to our REST API. Please visit our developer portal for further instructions and information: https://developer.netilion.endress.com/ This SDK is automatically generated by the Swagger Codegen project:

  • API version: 01.00.00
  • Package version: 01.00.00
  • Build package: io.swagger.codegen.v3.generators.javascript.JavaScriptClientCodegen

Installation

For Node.js

npm

To publish the library as a npm, please follow the procedure in "Publishing npm packages".

Then install it via:

npm install netilion_api_documentation --save

git

If the library is hosted at a git repository, e.g. https://github.com/GIT_USER_ID/GIT_REPO_ID then install it via:

    npm install GIT_USER_ID/GIT_REPO_ID --save

For browser

The library also works in the browser environment via npm and browserify. After following the above steps with Node.js and installing browserify with npm install -g browserify, perform the following (assuming main.js is your entry file):

browserify main.js > bundle.js

Then include bundle.js in the HTML pages.

Webpack Configuration

Using Webpack you may encounter the following error: "Module not found: Error: Cannot resolve module", most certainly you should disable AMD loader. Add/merge the following section to your webpack config:

module: {
  rules: [
    {
      parser: {
        amd: false
      }
    }
  ]
}

Getting Started

Please follow the installation instruction and execute the following JS code:

var NetilionApiDocumentation = require('netilion_api_documentation');
var defaultClient = NetilionApiDocumentation.ApiClient.instance;

// Configure API key authorization: API-Key
var API-Key = defaultClient.authentications['API-Key'];
API-Key.apiKey = "YOUR API KEY"
// Uncomment the following line to set a prefix for the API key, e.g. "Token" (defaults to null)
//API-Key.apiKeyPrefix['API-Key'] = "Token"
// Configure HTTP basic authorization: Authentication
var Authentication = defaultClient.authentications['Authentication'];
Authentication.username = 'YOUR USERNAME'
Authentication.password = 'YOUR PASSWORD'

var api = new NetilionApiDocumentation.APIKeyApi()
var body = new NetilionApiDocumentation.APIKeyRequest(); // {APIKeyRequest} APIKey object that needs to be created. client_application

api.createAPIKey(body).then(function(data) {
  console.log('API called successfully. Returned data: ' + data);
}, function(error) {
  console.error(error);
});

Documentation for API Endpoints

All URIs are relative to /v1

Class Method HTTP request Description
NetilionApiDocumentation.APIKeyApi createAPIKey POST /api_keys Create a new APIKey
NetilionApiDocumentation.APIKeyApi deleteAPIKey DELETE /api_keys/{id} Delete an APIKey
NetilionApiDocumentation.APIKeyApi getAPIKeyById GET /api_keys/{id} Get a single APIKey
NetilionApiDocumentation.APIKeyApi getAPIKeys GET /api_keys Get a range of APIKeys
NetilionApiDocumentation.APIKeyApi updateAPIKey PATCH /api_keys/{id} Update an APIKey
NetilionApiDocumentation.APISubscriptionApi addEdgeDevicesToApiSubscription POST /api_subscriptions/{id}/edge_devices Add edge devices to an api subscription
NetilionApiDocumentation.APISubscriptionApi createAPISubscription POST /api_subscriptions Create a new api subscription
NetilionApiDocumentation.APISubscriptionApi deleteAPISubscription DELETE /api_subscriptions/{id} Delete an api subscription
NetilionApiDocumentation.APISubscriptionApi getAPISubscriptionById GET /api_subscriptions/{id} Get a single api subscription
NetilionApiDocumentation.APISubscriptionApi getAPISubscriptions GET /api_subscriptions Get a range of api subscriptions
NetilionApiDocumentation.APISubscriptionApi getEdgeDevicesOfAPISubscription GET /api_subscriptions/{id}/edge_devices Get all edge devices of an api subscription
NetilionApiDocumentation.APISubscriptionApi removeEdgeDevicesFromApiSubscription DELETE /api_subscriptions/{id}/edge_devices Remove edge devices from an api subscription
NetilionApiDocumentation.APISubscriptionApi replaceEdgeDevicesOfApiSubscription PATCH /api_subscriptions/{id}/edge_devices Replace the edge devices of an api subscription
NetilionApiDocumentation.APISubscriptionApi updateAPISubscription PATCH /api_subscriptions/{id} Update an api subscription
NetilionApiDocumentation.AssetApi addAssetPictureLink POST /assets/{id}/pictures/links Add a link as asset picture
NetilionApiDocumentation.AssetApi addDeliveriesToAsset POST /assets/{asset_id}/deliveries Add deliveries to an asset
NetilionApiDocumentation.AssetApi addDocumentsToAsset POST /assets/{asset_id}/documents Add documents to an asset
NetilionApiDocumentation.AssetApi addInstrumentationsToAsset POST /assets/{asset_id}/instrumentations Add instrumentations to an asset
NetilionApiDocumentation.AssetApi addNodesToAsset POST /assets/{asset_id}/nodes Add nodes to an asset
NetilionApiDocumentation.AssetApi addSoftwaresToAsset POST /assets/{asset_id}/softwares Add software to an asset
NetilionApiDocumentation.AssetApi createAsset POST /assets Create a new asset
NetilionApiDocumentation.AssetApi createEventForAsset POST /assets/{asset_id}/events Create a new event for an asset
NetilionApiDocumentation.AssetApi deleteAsset DELETE /assets/{id} Delete an asset
NetilionApiDocumentation.AssetApi deleteAssetPicture DELETE /assets/{asset_id}/pictures/{id} Delete an asset picture
NetilionApiDocumentation.AssetApi deleteSpecificationsOfAsset DELETE /assets/{asset_id}/specifications Delete specifications of an asset
NetilionApiDocumentation.AssetApi downloadAssetPicture GET /assets/{asset_id}/pictures/{id}/download Download an asset picture
NetilionApiDocumentation.AssetApi getAssetById GET /assets/{id} Get a single asset
NetilionApiDocumentation.AssetApi getAssetCompanyOptions GET /assets/{asset_id}/company-options Get all possible companies of the specified assets
NetilionApiDocumentation.AssetApi getAssetHistory GET /assets/{asset_id}/history Get the history of an asset
NetilionApiDocumentation.AssetApi getAssetIdStatus GET /assets/{asset_id}/status Get the status of the specific asset
NetilionApiDocumentation.AssetApi getAssetPicture GET /assets/{asset_id}/pictures/{id} Get an asset picture
NetilionApiDocumentation.AssetApi getAssetPictures GET /assets/{id}/pictures Get asset pictures
NetilionApiDocumentation.AssetApi getAssetProductOptions GET /assets/{asset_id}/product-options Get all possible products of the specified assets
NetilionApiDocumentation.AssetApi getAssetStatusesOptions GET /assets/{asset_id}/status-options Get all possible statuses of the specified assets
NetilionApiDocumentation.AssetApi getAssetTenantOptions GET /assets/{asset_id}/tenant-options Get all possible tenants of the specified assets
NetilionApiDocumentation.AssetApi getAssets GET /assets Get a range of assets
NetilionApiDocumentation.AssetApi getDeliveriesOfAsset GET /assets/{asset_id}/deliveries Get all deliveries of one asset
NetilionApiDocumentation.AssetApi getDocumentsOfAsset GET /assets/{asset_id}/documents Get all documents of an asset
NetilionApiDocumentation.AssetApi getEventsOfAsset GET /assets/{asset_id}/events Get all events of one asset
NetilionApiDocumentation.AssetApi getInstrumentationsOfAsset GET /assets/{asset_id}/instrumentations Get all instrumentations of one asset
NetilionApiDocumentation.AssetApi getInstrumentationsOfAssetHistory GET /assets/{asset_id}/instrumentations/history Get all instrumentations an asset was assigned to
NetilionApiDocumentation.AssetApi getNodesOfAsset GET /assets/{asset_id}/nodes Get all nodes of one asset
NetilionApiDocumentation.AssetApi getSoftwaresOfSoftware GET /assets/{asset_id}/softwares Get a range of software of one asset
NetilionApiDocumentation.AssetApi getSpecificationHistoryOfAsset GET /assets/{asset_id}/specifications/{key}/history Get the history of one specification attribute of an asset.
NetilionApiDocumentation.AssetApi getSpecificationsOfAsset GET /assets/{asset_id}/specifications Get specifications of an asset
NetilionApiDocumentation.AssetApi getSubscriptionsOfAsset GET /assets/{asset_id}/subscriptions Get all subscriptions of asset
NetilionApiDocumentation.AssetApi removeDeliveriesFromAsset DELETE /assets/{asset_id}/deliveries Remove deliveries from an asset
NetilionApiDocumentation.AssetApi removeDocumentsFromAsset DELETE /assets/{asset_id}/documents Remove documents from an asset
NetilionApiDocumentation.AssetApi removeEventFromAsset DELETE /assets/{asset_id}/events Remove events from an asset
NetilionApiDocumentation.AssetApi removeInstrumentationsOfAsset DELETE /assets/{asset_id}/instrumentations Remove instrumentations from an asset
NetilionApiDocumentation.AssetApi removeNodesFromAsset DELETE /assets/{asset_id}/nodes Remove nodes from an asset
NetilionApiDocumentation.AssetApi removeSoftwaresOfAsset DELETE /assets/{asset_id}/softwares Remove software from an asset
NetilionApiDocumentation.AssetApi renameSpecificationsOfAsset PATCH /assets/{asset_id}/specifications/rename Rename a specification key
NetilionApiDocumentation.AssetApi replaceDeliveriesOfAsset PATCH /assets/{asset_id}/deliveries Replace the deliveries of an asset
NetilionApiDocumentation.AssetApi replaceDocumentsOfAsset PATCH /assets/{asset_id}/documents Replace the documents of an asset
NetilionApiDocumentation.AssetApi replaceInstrumentationsOfAsset PATCH /assets/{asset_id}/instrumentations Replace the instrumentations of an asset
NetilionApiDocumentation.AssetApi replaceNodesOfAsset PATCH /assets/{asset_id}/nodes Replace the nodes of an asset
NetilionApiDocumentation.AssetApi replaceSoftwaresOfAsset PATCH /assets/{asset_id}/softwares Replace the software of an asset
NetilionApiDocumentation.AssetApi updateAsset PATCH /assets/{id} Update an asset
NetilionApiDocumentation.AssetApi updateAssetPicture PATCH /assets/{asset_id}/pictures/{id} Update an asset picture
NetilionApiDocumentation.AssetApi updateAssetPictureLink PATCH /assets/{asset_id}/pictures/links/{id} Update an asset picture link
NetilionApiDocumentation.AssetApi updateSpecificationsOfAsset PATCH /assets/{asset_id}/specifications Update specifications of an asset
NetilionApiDocumentation.AssetApi uploadAssetPicture POST /assets/{id}/pictures Upload an asset picture
NetilionApiDocumentation.AssetHealthConditionApi addHealthConditionsToAsset POST /assets/{asset_id}/health_conditions Add health conditions to an asset
NetilionApiDocumentation.AssetHealthConditionApi calculateAssetHealthConditions GET /assets/{asset_id}/health_conditions/calculate Calculate health conditions of an asset
NetilionApiDocumentation.AssetHealthConditionApi calculateAssetHealthConditionsAndUpdateAsset PATCH /assets/{asset_id}/health_conditions/calculate Calculate health conditions of an asset and update asset with this health conditions
NetilionApiDocumentation.AssetHealthConditionApi getAssetHealthConditions GET /assets/{asset_id}/health_conditions Get all health conditions assigned to an asset
NetilionApiDocumentation.AssetHealthConditionApi getHealthConditionsOfAssetTimemachine GET /assets/{asset_id}/health_conditions/timemachine Get all health_conditions historical evolution the given asset had assigned
NetilionApiDocumentation.AssetHealthConditionApi reaplaceHealthConditionsOfAsset PATCH /assets/{asset_id}/health_conditions Replace health conditions of an asset
NetilionApiDocumentation.AssetHealthConditionApi removeHealthConditionsOfAsset DELETE /assets/{asset_id}/health_conditions Remove health conditions of an asset
NetilionApiDocumentation.AssetStatusApi createAssetStatus POST /asset/statuses Create a new asset status
NetilionApiDocumentation.AssetStatusApi deleteAssetStatus DELETE /asset/statuses/{id} Delete an asset status
NetilionApiDocumentation.AssetStatusApi getAssetIdStatus GET /assets/{asset_id}/status Get the status of the specific asset
NetilionApiDocumentation.AssetStatusApi getAssetStatusById GET /asset/statuses/{id} Get a single asset status
NetilionApiDocumentation.AssetStatusApi getAssetStatuses GET /asset/statuses Get a range of asset statuses
NetilionApiDocumentation.AssetStatusApi getAssetStatusesOptions GET /assets/{asset_id}/status-options Get all possible statuses of the specified assets
NetilionApiDocumentation.AssetStatusApi updateAssetStatus PATCH /asset/statuses/{id} Update an asset status
NetilionApiDocumentation.AssetValuesApi createAssetValues POST /assets/{asset_id}/values Create asset values
NetilionApiDocumentation.AssetValuesApi getAssetValues GET /assets/{asset_id}/values Get latest values for the asset.
NetilionApiDocumentation.AssetValuesApi getAssetValuesForKey GET /assets/{asset_id}/values/{key} Get asset values for a specific key.
NetilionApiDocumentation.AttachmentApi createLinkAttachment POST /attachments/links Create a new link as attachment
NetilionApiDocumentation.AttachmentApi deleteAttachment DELETE /attachments/{id} Delete an attachment and the file
NetilionApiDocumentation.AttachmentApi downloadAttachment GET /attachments/{id}/download Download the attachments file
NetilionApiDocumentation.AttachmentApi getAttachmentById GET /attachments/{id} Get a single attachment
NetilionApiDocumentation.AttachmentApi getAttachments GET /attachments Get a range of attachments
NetilionApiDocumentation.AttachmentApi updateAttachment PATCH /attachments/{id} Update an attachment and especially its file
NetilionApiDocumentation.AttachmentApi updateLinkAttachment PATCH /attachments/links/{id} Update an attachment with a link
NetilionApiDocumentation.AttachmentApi uploadAttachment POST /attachments Create and upload a new attachment
NetilionApiDocumentation.BillOfMaterialApi addDocumentsToBillOfMaterial POST /bill_of_materials/{bill_of_material_id}/documents Add documents to a bill of material
NetilionApiDocumentation.BillOfMaterialApi addInstrumentationsToBillOfMaterial POST /bill_of_materials/{bill_of_material_id}/instrumentations Add instrumentations to a bill of material
NetilionApiDocumentation.BillOfMaterialApi addRequestForQuotationsToBillOfMaterial POST /bill_of_materials/{bill_of_material_id}/request_for_quotations Add request for quotations to a bill of material
NetilionApiDocumentation.BillOfMaterialApi createBillOfMaterial POST /bill_of_materials Create a new bill of material
NetilionApiDocumentation.BillOfMaterialApi deleteBillOfMaterial DELETE /bill_of_materials/{id} Delete a bill of material
NetilionApiDocumentation.BillOfMaterialApi getBillOfMaterialById GET /bill_of_materials/{id} Get a single bill of material
NetilionApiDocumentation.BillOfMaterialApi getBillOfMaterials GET /bill_of_materials Get a range of bill of materials
NetilionApiDocumentation.BillOfMaterialApi getDocumentsOfBillOfMaterial GET /bill_of_materials/{bill_of_material_id}/documents Get all documents of a bill of material
NetilionApiDocumentation.BillOfMaterialApi getInstrumentationsOfBillOfMaterial GET /bill_of_materials/{bill_of_material_id}/instrumentations Get all instrumentations of a bill of material
NetilionApiDocumentation.BillOfMaterialApi getRequestForQuotationsOfBillOfMaterial GET /bill_of_materials/{bill_of_material_id}/request_for_quotations Get all request for quotations of a bill of material
NetilionApiDocumentation.BillOfMaterialApi removeDocumentsFromBillOfMaterial DELETE /bill_of_materials/{bill_of_material_id}/documents Remove documents from a bill of material
NetilionApiDocumentation.BillOfMaterialApi removeInstrumentationsFromBillOfMaterial DELETE /bill_of_materials/{bill_of_material_id}/instrumentations Remove instrumentations from a bill of material
NetilionApiDocumentation.BillOfMaterialApi removeRequestForQuotationsOfBillOfMaterial DELETE /bill_of_materials/{bill_of_material_id}/request_for_quotations Remove request for quotations from a bill of material
NetilionApiDocumentation.BillOfMaterialApi replaceDocumentsOfBillOfMaterial PATCH /bill_of_materials/{bill_of_material_id}/documents Replace the documents of a bill of material
NetilionApiDocumentation.BillOfMaterialApi replaceInstrumentationsOfBillOfMaterial PATCH /bill_of_materials/{bill_of_material_id}/instrumentations Replace the instrumentations of a bill of material
NetilionApiDocumentation.BillOfMaterialApi replaceRequestForQuotationsOfBillOfMaterial PATCH /bill_of_materials/{bill_of_material_id}/request_for_quotations Replace the request for quotations of a bill of material
NetilionApiDocumentation.BillOfMaterialApi updateBillOfMaterial PATCH /bill_of_materials/{id} Update a bill of material
NetilionApiDocumentation.ClientApplicationApi addClientApplicationsToEdgeApplication POST /edge_device/applications/{edge_device_application_id}/client_applications Add client applications to an edge device application
NetilionApiDocumentation.ClientApplicationApi addUsersToClientApplicationUserRole POST /client_applications/{client_application_id}/roles/{userrole_id}/users Add users to a client application user role
NetilionApiDocumentation.ClientApplicationApi createClientApplication POST /client_applications Create a new client_application
NetilionApiDocumentation.ClientApplicationApi deleteClientApplication DELETE /client_applications/{id} Delete an client_application
NetilionApiDocumentation.ClientApplicationApi deleteUsersFromClientApplicationUserRole DELETE /client_applications/{client_application_id}/roles/{userrole_id}/users Remove users from a client application user role
NetilionApiDocumentation.ClientApplicationApi getAPIKeysOfClientApplication GET /client_applications/{client_application_id}/api_keys GetAPI Keys of Client Application
NetilionApiDocumentation.ClientApplicationApi getClientApplicationById GET /client_applications/{id} Get a single client_application
NetilionApiDocumentation.ClientApplicationApi getClientApplications GET /client_applications Get a range of client_applications
NetilionApiDocumentation.ClientApplicationApi getClientApplicationsOfEdgeDeviceApplication GET /edge_device/applications/{edge_device_application_id}/client_applications Get all client applications of one edge device application
NetilionApiDocumentation.ClientApplicationApi getCurrentClientApplication GET /client_applications/current Get current client_application
NetilionApiDocumentation.ClientApplicationApi getEdgeDeviceApplicationsOfClientApplication GET /client_applications/{client_application_id}/edge_device/applications Get all edge devices applications for an client application
NetilionApiDocumentation.ClientApplicationApi getUsersOfClientApplicationUserRole GET /client_applications/{client_application_id}/roles/{userrole_id}/users Get all users of a user role assigned to a client application
NetilionApiDocumentation.ClientApplicationApi removeClientApplicationsOfEdgeDeviceApplication DELETE /edge_device/applications/{edge_device_application_id}/client_applications Remove client applications from an edge device application
NetilionApiDocumentation.ClientApplicationApi replaceClientApplicationsOfEdgeDeviceApplication PATCH /edge_device/applications/{edge_device_application_id}/client_applications Replace the client applications of an edge device application
NetilionApiDocumentation.ClientApplicationApi updateClientApplication PATCH /client_applications/{id} Update an client_application
NetilionApiDocumentation.CompanyApi createCompany POST /companies Create a new company
NetilionApiDocumentation.CompanyApi deleteCompany DELETE /companies/{id} Delete a company
NetilionApiDocumentation.CompanyApi getAssetCompanyOptions GET /assets/{asset_id}/company-options Get all possible companies of the specified assets
NetilionApiDocumentation.CompanyApi getCompanies GET /companies Get a range of companies
NetilionApiDocumentation.CompanyApi getCompanyById GET /companies/{id} Get a single company
NetilionApiDocumentation.CompanyApi getDeliveriesReceivedOfCompany GET /companies/{company_id}/deliveries_received Get all deliveries received of one company
NetilionApiDocumentation.CompanyApi getDeliveriesSentOfCompany GET /companies/{company_id}/deliveries_sent Get all deliveries sent of one company
NetilionApiDocumentation.CompanyApi getProductsOfCompany GET /companies/{company_id}/products Get all products of a company
NetilionApiDocumentation.CompanyApi updateCompany PATCH /companies/{id} Update a company
NetilionApiDocumentation.DeliveryApi addAssetsToDelivery POST /deliveries/{delivery_id}/assets Add assets to a delivery
NetilionApiDocumentation.DeliveryApi addDocumentsToDelivery POST /deliveries/{delivery_id}/documents Add documents to a delivery
NetilionApiDocumentation.DeliveryApi addPurchaseOrdersToDelivery POST /deliveries/{delivery_id}/purchase_orders Add all purchase oders to a delivery
NetilionApiDocumentation.DeliveryApi createDelivery POST /deliveries Create a new delivery
NetilionApiDocumentation.DeliveryApi deleteDelivery DELETE /deliveries/{id} Delete a delivery
NetilionApiDocumentation.DeliveryApi getAssetsOfDelivery GET /deliveries/{delivery_id}/assets Get all assets of one delivery
NetilionApiDocumentation.DeliveryApi getDeliveries GET /deliveries Get a range of deliveries
NetilionApiDocumentation.DeliveryApi getDeliveryById GET /deliveries/{id} Get a single delivery
NetilionApiDocumentation.DeliveryApi getDeliveryIdStatus GET /deliveries/{delivery_id}/status Get the status of the specific delivery
NetilionApiDocumentation.DeliveryApi getDocumentsOfDelivery GET /deliveries/{delivery_id}/documents Get all documents of one delivery
NetilionApiDocumentation.DeliveryApi getPurchaseOrdersOfDelivery GET /deliveries/{delivery_id}/purchase_orders Get all purchase orders of one delivery
NetilionApiDocumentation.DeliveryApi removeAssetsFromDelivery DELETE /deliveries/{delivery_id}/assets Remove assets from a delivery
NetilionApiDocumentation.DeliveryApi removeDocumentsFromDelivery DELETE /deliveries/{delivery_id}/documents Remove documents from a delivery
NetilionApiDocumentation.DeliveryApi removePurchaseOrdersFromDelivery DELETE /deliveries/{delivery_id}/purchase_orders Remove purchase orders from a delivery
NetilionApiDocumentation.DeliveryApi replaceAssetsOfDelivery PATCH /deliveries/{delivery_id}/assets Replace the assets of a delivery
NetilionApiDocumentation.DeliveryApi replaceDocumentsOfDelivery PATCH /deliveries/{delivery_id}/documents Replace the documents of a delivery
NetilionApiDocumentation.DeliveryApi replacePurchaseOrdersOfDelivery PATCH /deliveries/{delivery_id}/purchase_orders Replace the purchase orders of a delivery
NetilionApiDocumentation.DeliveryApi updateDelivery PATCH /deliveries/{id} Update a delivery
NetilionApiDocumentation.DeliveryStatusApi createDeliveryStatus POST /delivery/statuses Create a new delivery status
NetilionApiDocumentation.DeliveryStatusApi deleteDeliveryStatus DELETE /delivery/statuses/{id} Delete a delivery status
NetilionApiDocumentation.DeliveryStatusApi getDeliveryIdStatus GET /deliveries/{delivery_id}/status Get the status of the specific delivery
NetilionApiDocumentation.DeliveryStatusApi getDeliveryStatusById GET /delivery/statuses/{id} Get a single delivery status
NetilionApiDocumentation.DeliveryStatusApi getDeliveryStatuses GET /delivery/statuses Get a range of delivery statuses
NetilionApiDocumentation.DeliveryStatusApi updateDeliveryStatuses PATCH /delivery/statuses/{id} Update an delivery status
NetilionApiDocumentation.DocumentApi addCategoriesToDocument POST /documents/{document_id}/categories Add categories to a document
NetilionApiDocumentation.DocumentApi createDocument POST /documents Create a new document
NetilionApiDocumentation.DocumentApi deleteDocument DELETE /documents/{id} Delete a document
NetilionApiDocumentation.DocumentApi downloadDocument GET /documents/{id}/download Download multiple attachments of a document
NetilionApiDocumentation.DocumentApi getAssetsOfDocument GET /documents/{document_id}/assets Get all assets of one document
NetilionApiDocumentation.DocumentApi getAttachmentsOfDocument GET /documents/{document_id}/attachments Get all attachments of one document
NetilionApiDocumentation.DocumentApi getBillOfMaterialsOfDocument GET /documents/{document_id}/bill_of_materials Get all bill of materials of one document
NetilionApiDocumentation.DocumentApi getCategoriesOfDocument GET /documents/{document_id}/categories Get all categories of one document
NetilionApiDocumentation.DocumentApi getCategoriesOptionsOfDocument GET /documents/{document_id}/categories-options Get all possible categories for the specified document
NetilionApiDocumentation.DocumentApi getDeliveriesOfDocument GET /documents/{document_id}/deliveries Get all deliveries of one document
NetilionApiDocumentation.DocumentApi getDocumentById GET /documents/{id} Get a single document
NetilionApiDocumentation.DocumentApi getDocumentClassificationsOptions GET /documents/{document_id}/classification-options Get all possible classifications for the specified document
NetilionApiDocumentation.DocumentApi getDocumentIdClassification GET /documents/{document_id}/classification Get the classification of a specific document
NetilionApiDocumentation.DocumentApi getDocumentIdStatus GET /documents/{document_id}/status Get the status of a specific document
NetilionApiDocumentation.DocumentApi getDocumentStatusesOptions GET /documents/{document_id}/status-options Get all possible statuses for the specified document
NetilionApiDocumentation.DocumentApi getDocuments GET /documents Get a range of documents
NetilionApiDocumentation.DocumentApi getEventsOfDocument GET /documents/{document_id}/events Get all events of one document
NetilionApiDocumentation.DocumentApi getInstrumentationsOfDocument GET /documents/{document_id}/instrumentations Get all instrumentations of one document
NetilionApiDocumentation.DocumentApi getNodesOfDocument GET /documents/{document_id}/nodes Get all nodes of one document
NetilionApiDocumentation.DocumentApi getProductsOfDocument GET /documents/{document_id}/products Get all products of one document
NetilionApiDocumentation.DocumentApi getPurchaseOrdersOfDocument GET /documents/{document_id}/purchase_orders Get all purchase orders of one document
NetilionApiDocumentation.DocumentApi getQuotationsOfDocument GET /documents/{document_id}/quotations Get all quotations of one document
NetilionApiDocumentation.DocumentApi getRequestForQuotationsOfDocument GET /documents/{document_id}/request_for_quotations Get all request for quotations of one document
NetilionApiDocumentation.DocumentApi removeCategoriesFromDocument DELETE /documents/{document_id}/categories Remove categories from a document
NetilionApiDocumentation.DocumentApi replaceCategoriesOfDocument PATCH /documents/{document_id}/categories Replace the categories of a document
NetilionApiDocumentation.DocumentApi updateDocument PATCH /documents/{id} Update a document
NetilionApiDocumentation.DocumentCategoryApi addDocumentsToDocumentCategory POST /document/categories/{category_id}/documents Add documents to a category
NetilionApiDocumentation.DocumentCategoryApi createDocumentCategory POST /document/categories Create a new document category
NetilionApiDocumentation.DocumentCategoryApi deleteDocumentCategory DELETE /document/categories/{id} Delete a document category
NetilionApiDocumentation.DocumentCategoryApi getCategoriesOfDocument GET /documents/{document_id}/categories Get all categories of one document
NetilionApiDocumentation.DocumentCategoryApi getCategoriesOptionsOfDocument GET /documents/{document_id}/categories-options Get all possible categories for the specified document
NetilionApiDocumentation.DocumentCategoryApi getDocumentCategories GET /document/categories Get a range of document categories
NetilionApiDocumentation.DocumentCategoryApi getDocumentCategoryById GET /document/categories/{id} Get a single document category
NetilionApiDocumentation.DocumentCategoryApi getDocumentsOfDocumentCategory GET /document/categories/{category_id}/documents Get all documents of one category
NetilionApiDocumentation.DocumentCategoryApi removeDocumentsFromDocumentCategory DELETE /document/categories/{category_id}/documents Remove documents from a category
NetilionApiDocumentation.DocumentCategoryApi replaceDocumentsOfDocumentCategory PATCH /document/categories/{category_id}/documents Replace documents of a category
NetilionApiDocumentation.DocumentCategoryApi updateDocumentCategory PATCH /document/categories/{id} Update a document category
NetilionApiDocumentation.DocumentClassificationApi createDocumentClassification POST /document/classifications Create a new document classification
NetilionApiDocumentation.DocumentClassificationApi deleteDocumentClassification DELETE /document/classifications/{id} Delete a document classification
NetilionApiDocumentation.DocumentClassificationApi getDocumentClassificationById GET /document/classifications/{id} Get a single document classification
NetilionApiDocumentation.DocumentClassificationApi getDocumentClassifications GET /document/classifications Get a range of document classifications
NetilionApiDocumentation.DocumentClassificationApi getDocumentClassificationsOptions GET /documents/{document_id}/classification-options Get all possible classifications for the specified document
NetilionApiDocumentation.DocumentClassificationApi getDocumentIdClassification GET /documents/{document_id}/classification Get the classification of a specific document
NetilionApiDocumentation.DocumentClassificationApi updateDocumentClassification PATCH /document/classifications/{id} Update a document classification
NetilionApiDocumentation.DocumentStatusApi createDocumentStatus POST /document/statuses Create a new document status
NetilionApiDocumentation.DocumentStatusApi deleteDocumentStatus DELETE /document/statuses/{id} Delete a document status
NetilionApiDocumentation.DocumentStatusApi getDocumentIdStatus GET /documents/{document_id}/status Get the status of a specific document
NetilionApiDocumentation.DocumentStatusApi getDocumentStatusById GET /document/statuses/{id} Get a single document status
NetilionApiDocumentation.DocumentStatusApi getDocumentStatuses GET /document/statuses Get a range of document statuses
NetilionApiDocumentation.DocumentStatusApi getDocumentStatusesOptions GET /documents/{document_id}/status-options Get all possible statuses for the specified document
NetilionApiDocumentation.DocumentStatusApi updateDocumentStatus PATCH /document/statuses/{id} Update a document status
NetilionApiDocumentation.EventApi addDocumentsToEvent POST /events/{event_id}/documents Add documents to an event
NetilionApiDocumentation.EventApi createEvent POST /events Create a new event
NetilionApiDocumentation.EventApi createEventForAsset POST /assets/{asset_id}/events Create a new event for an asset
NetilionApiDocumentation.EventApi createEventForInstrumentation POST /instrumentations/{instrumentation_id}/events Create a new event for an instrumentation
NetilionApiDocumentation.EventApi deleteEvent DELETE /events/{id} Delete an event
NetilionApiDocumentation.EventApi getAssetsOfEvent GET /events/{event_id}/assets Get all assets of one event
NetilionApiDocumentation.EventApi getDocumentsOfEvent GET /events/{event_id}/documents Get all documents of an event
NetilionApiDocumentation.EventApi getEventById GET /events/{id} Get a single event
NetilionApiDocumentation.EventApi getEventIdStatus GET /events/{event_id}/status Get the status of a specific event
NetilionApiDocumentation.EventApi getEventIdType GET /events/{event_id}/type Get the type of a specific event
NetilionApiDocumentation.EventApi getEventStatusesOptions GET /events/{event_id}/status-options Get all possible statuses for the specified event
NetilionApiDocumentation.EventApi getEventTypeesOptions GET /events/{event_id}/type-options Get all possible types for the specified event
NetilionApiDocumentation.EventApi getEvents GET /events Get a range of events
NetilionApiDocumentation.EventApi getEventsOfAsset GET /assets/{asset_id}/events Get all events of one asset
NetilionApiDocumentation.EventApi getEventsOfInstrumentation GET /instrumentations/{instrumentation_id}/events Get all events of one instrumentation
NetilionApiDocumentation.EventApi getInstrumentationsOfEvent GET /events/{event_id}/instrumentations Get all instrumentations of one event
NetilionApiDocumentation.EventApi getSpecificationsOfEvent GET /events/{event_id}/specifications Get specifications of an event
NetilionApiDocumentation.EventApi removeAssetsFromEvent DELETE /events/{event_id}/assets Remove assets from an event
NetilionApiDocumentation.EventApi removeDocumentsFromEvent DELETE /events/{event_id}/documents Remove documents from an event
NetilionApiDocumentation.EventApi removeEventFromAsset DELETE /assets/{asset_id}/events Remove events from an asset
NetilionApiDocumentation.EventApi removeEventFromInstrumentation DELETE /instrumentations/{instrumentation_id}/events Remove events from an instrumentation
NetilionApiDocumentation.EventApi removeInstrumentationsFromEvent DELETE /events/{event_id}/instrumentations Remove instrumentations from an event
NetilionApiDocumentation.EventApi removeSpecificationsFromEvent DELETE /events/{event_id}/specifications Delete specifications of an event
NetilionApiDocumentation.EventApi renameSpecificationsOfEvent PATCH /events/{event_id}/specifications/rename Rename a specification key
NetilionApiDocumentation.EventApi replaceDocumentsOfEvent PATCH /events/{event_id}/documents Replace the documents of an event
NetilionApiDocumentation.EventApi updateEvent PATCH /events/{id} Update an event
NetilionApiDocumentation.EventApi updateSpecificationsOfEvent PATCH /events/{event_id}/specifications Update specifications of an event
NetilionApiDocumentation.EventStatusApi createEventStatus POST /event/statuses Create a new event status
NetilionApiDocumentation.EventStatusApi deleteEventStatus DELETE /event/statuses/{id} Delete an event status
NetilionApiDocumentation.EventStatusApi getEventIdStatus GET /events/{event_id}/status Get the status of a specific event
NetilionApiDocumentation.EventStatusApi getEventStatusById GET /event/statuses/{id} Get a single event status
NetilionApiDocumentation.EventStatusApi getEventStatuses GET /event/statuses Get a range of event statuses
NetilionApiDocumentation.EventStatusApi getEventStatusesOptions GET /events/{event_id}/status-options Get all possible statuses for the specified event
NetilionApiDocumentation.EventStatusApi updateEventStatus PATCH /event/statuses/{id} Update an event status
NetilionApiDocumentation.EventTypeApi createEventType POST /event/types Create a new event type
NetilionApiDocumentation.EventTypeApi deleteEventType DELETE /event/types/{id} Delete an event type
NetilionApiDocumentation.EventTypeApi getEventIdType GET /events/{event_id}/type Get the type of a specific event
NetilionApiDocumentation.EventTypeApi getEventTypeById GET /event/types/{id} Get a single event type
NetilionApiDocumentation.EventTypeApi getEventTypeesOptions GET /events/{event_id}/type-options Get all possible types for the specified event
NetilionApiDocumentation.EventTypeApi getEventTypes GET /event/types Get a range of event types
NetilionApiDocumentation.EventTypeApi updateEventType PATCH /event/types/{id} Update an event type
NetilionApiDocumentation.HealthConditionApi createHealthCondition POST /health_conditions Create a new health condition
NetilionApiDocumentation.HealthConditionApi deleteHealthCondition DELETE /health_conditions/{id} Delete a health condition
NetilionApiDocumentation.HealthConditionApi getHealthConditionById GET /health_conditions/{id} Get a single health condition
NetilionApiDocumentation.HealthConditionApi getHealthConditions GET /health_conditions Get a range of health conditions
NetilionApiDocumentation.HealthConditionApi updateHealthCondition PATCH /health_conditions/{id} Update a health condition
NetilionApiDocumentation.HealthConditionCauseApi createHealthConditionCause POST /health_conditions/{health_condition_id}/causes Create a health condition cause
NetilionApiDocumentation.HealthConditionCauseApi deleteCause DELETE /health_conditions/{health_condition_id}/causes/{id} Delete a health condition cause
NetilionApiDocumentation.HealthConditionCauseApi getHealthConditionCauseById GET /health_conditions/{health_condition_id}/causes/{id} Get a single health condition cause
NetilionApiDocumentation.HealthConditionCauseApi getHealthConditionCauses GET /health_conditions/{health_condition_id}/causes Get all causes of a health condition
NetilionApiDocumentation.HealthConditionCauseApi updateHealthConditionCause PATCH /health_conditions/{health_condition_id}/causes/{id} Update a health condition cause
NetilionApiDocumentation.HealthConditionRemedyApi createHealthConditionRemedy POST /health_conditions/{health_condition_id}/causes/{cause_id}/remedies Create a remedy
NetilionApiDocumentation.HealthConditionRemedyApi deleteHealthConditionRemedy DELETE /health_conditions/{health_condition_id}/causes/{cause_id}/remedies/{id} Delete a remedy
NetilionApiDocumentation.HealthConditionRemedyApi getHealthConditionRemedies GET /health_conditions/{health_condition_id}/causes/{cause_id}/remedies Get all remedies of a cause
NetilionApiDocumentation.HealthConditionRemedyApi getHealthConditionRemedyById GET /health_conditions/{health_condition_id}/causes/{cause_id}/remedies/{id} Get a single remedy
NetilionApiDocumentation.HealthConditionRemedyApi updateHealthConditionRemedy PATCH /health_conditions/{health_condition_id}/causes/{cause_id}/remedies/{id} Update a remedy
NetilionApiDocumentation.InstrumentationApi addAssetsToInstrumentation POST /instrumentations/{instrumentation_id}/assets Add assets to an instrumentation
NetilionApiDocumentation.InstrumentationApi addBillOfMaterialsToInstrumentation POST /instrumentations/{instrumentation_id}/bill_of_materials Add bill of materials to an instrumentation
NetilionApiDocumentation.InstrumentationApi addDocumentsToInstrumentation POST /instrumentations/{instrumentation_id}/documents Add documents to an instrumentation
NetilionApiDocumentation.InstrumentationApi addInstrumentationPictureLink POST /instrumentations/{id}/pictures/links Add a link as instrumentation picture
NetilionApiDocumentation.InstrumentationApi addNodesToInstrumentation POST /instrumentations/{instrumentation_id}/nodes Add nodes to an instrumentation
NetilionApiDocumentation.InstrumentationApi createEventForInstrumentation POST /instrumentations/{instrumentation_id}/events Create a new event for an instrumentation
NetilionApiDocumentation.InstrumentationApi createInstrumentation POST /instrumentations Create a new instrumentation
NetilionApiDocumentation.InstrumentationApi createInstrumentationThreshold POST /instrumentations/{instrumentation_id}/thresholds Create an instrumentation threshold
NetilionApiDocumentation.InstrumentationApi deleteInstrumentation DELETE /instrumentations/{id} Delete an instrumentation
NetilionApiDocumentation.InstrumentationApi deleteInstrumentationPicture DELETE /instrumentations/{instrumentation_id}/pictures/{id} Delete an instrumentation picture
NetilionApiDocumentation.InstrumentationApi deleteInstrumentationThreshold DELETE /instrumentations/{instrumentation_id}/thresholds/{id} Delete an instrumentation threshold
NetilionApiDocumentation.InstrumentationApi downloadInstrumentationPicture GET /instrumentations/{instrumentation_id}/pictures/{id}/download Download an instrumentation picture
NetilionApiDocumentation.InstrumentationApi getAssetsOfInstrumentation GET /instrumentations/{instrumentation_id}/assets Get all assets of one instrumentation
NetilionApiDocumentation.InstrumentationApi getAssetsOfInstrumentationHistory GET /instrumentations/{instrumentation_id}/assets/history Get all assets an instrumentation was assigned to
NetilionApiDocumentation.InstrumentationApi getBillOfMaterialsOfInstrumentation GET /instrumentations/{instrumentation_id}/bill_of_materials Get all bill of materials of an instrumentation
NetilionApiDocumentation.InstrumentationApi getDocumentsOfInstrumentation GET /instrumentations/{instrumentation_id}/documents Get all documents of an instrumentation
NetilionApiDocumentation.InstrumentationApi getEventsOfInstrumentation GET /instrumentations/{instrumentation_id}/events Get all events of one instrumentation
NetilionApiDocumentation.InstrumentationApi getInstrumentationById GET /instrumentations/{id} Get a single instrumentation
NetilionApiDocumentation.InstrumentationApi getInstrumentationIdStatus GET /instrumentations/{instrumentation_id}/status Get the status of the specific instrumentation
NetilionApiDocumentation.InstrumentationApi getInstrumentationIdType GET /instrumentations/{instrumentation_id}/type Get the type of the specific instrumentation
NetilionApiDocumentation.InstrumentationApi getInstrumentationPicture GET /instrumentations/{instrumentation_id}/pictures/{id} Get an instrumentation picture
NetilionApiDocumentation.InstrumentationApi getInstrumentationPictures GET /instrumentations/{id}/pictures Get instrumentation pictures
NetilionApiDocumentation.InstrumentationApi getInstrumentationStatusesOptions GET /instrumentations/{instrumentation_id}/status-options Get all possible statuses of the specified instrumentation
NetilionApiDocumentation.InstrumentationApi getInstrumentationThreshold GET /instrumentations/{instrumentation_id}/thresholds/{id} Get an instrumentation threshold
NetilionApiDocumentation.InstrumentationApi getInstrumentationThresholds GET /instrumentations/{instrumentation_id}/thresholds Get instrumentation thresholds
NetilionApiDocumentation.InstrumentationApi getInstrumentationTypesOptions GET /instrumentations/{instrumentation_id}/type-options Get all possible types of the specified instrumentation
NetilionApiDocumentation.InstrumentationApi getInstrumentations GET /instrumentations Get a range of instrumentations
NetilionApiDocumentation.InstrumentationApi getNodesOfInstrumentation GET /instrumentations/{instrumentation_id}/nodes Get all nodes of one Instrumentation
NetilionApiDocumentation.InstrumentationApi getSpecificationHistoryOfInstrumentation GET /instrumentations/{instrumentation_id}/specifications/{key}/history Get the history of one specification attribute of an instrumentation.
NetilionApiDocumentation.InstrumentationApi getSpecificationsOfInstrumentation GET /instrumentations/{instrumentation_id}/specifications Get specifications of an instrumentation
NetilionApiDocumentation.InstrumentationApi removeAssetsFromInstrumentation DELETE /instrumentations/{instrumentation_id}/assets Remove assets from an instrumentation
NetilionApiDocumentation.InstrumentationApi removeBillOfMaterialsFromInstrumentation DELETE /instrumentations/{instrumentation_id}/bill_of_materials Remove bill of materials from an instrumentation
NetilionApiDocumentation.InstrumentationApi removeDocumentsFromInstrumentation DELETE /instrumentations/{instrumentation_id}/documents Remove documents from an instrumentation
NetilionApiDocumentation.InstrumentationApi removeEventFromInstrumentation DELETE /instrumentations/{instrumentation_id}/events Remove events from an instrumentation
NetilionApiDocumentation.InstrumentationApi removeNodesFromInstrumentation DELETE /instrumentations/{instrumentation_id}/nodes Remove nodes from an instrumentation
NetilionApiDocumentation.InstrumentationApi removeSpecificationsFromInstrumentation DELETE /instrumentations/{instrumentation_id}/specifications Delete specifications of an instrumentation
NetilionApiDocumentation.InstrumentationApi renameSpecificationsOfInstrumentation PATCH /instrumentations/{instrumentation_id}/specifications/rename Rename a specification key
NetilionApiDocumentation.InstrumentationApi replaceAssetsOfInstrumentation PATCH /instrumentations/{instrumentation_id}/assets Replace the assets of an instrumentation
NetilionApiDocumentation.InstrumentationApi replaceBillOfMaterialsOfInstrumentation PATCH /instrumentations/{instrumentation_id}/bill_of_materials Replace the bill of materials of an instrumentation
NetilionApiDocumentation.InstrumentationApi replaceDocumentsOfInstrumentation PATCH /instrumentations/{instrumentation_id}/documents Replace the documents of an instrumentation
NetilionApiDocumentation.InstrumentationApi replaceNodesOfInstrumentation PATCH /instrumentations/{instrumentation_id}/nodes Replace the nodes of an instrumentation
NetilionApiDocumentation.InstrumentationApi updateInstrumentation PATCH /instrumentations/{id} Update an instrumentation
NetilionApiDocumentation.InstrumentationApi updateInstrumentationPicture PATCH /instrumentations/{instrumentation_id}/pictures/{id} Update an instrumentation picture
NetilionApiDocumentation.InstrumentationApi updateInstrumentationPictureLink PATCH /instrumentations/{instrumentation_id}/pictures/links/{id} Update an instrumentation p