1.0.3 • Published 4 years ago

netilion_api_documentation v1.0.3

Weekly downloads
-
License
Unlicense
Repository
-
Last release
4 years ago

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

ClassMethodHTTP requestDescription
NetilionApiDocumentation.APIKeyApicreateAPIKeyPOST /api_keysCreate a new APIKey
NetilionApiDocumentation.APIKeyApideleteAPIKeyDELETE /api_keys/{id}Delete an APIKey
NetilionApiDocumentation.APIKeyApigetAPIKeyByIdGET /api_keys/{id}Get a single APIKey
NetilionApiDocumentation.APIKeyApigetAPIKeysGET /api_keysGet a range of APIKeys
NetilionApiDocumentation.APIKeyApiupdateAPIKeyPATCH /api_keys/{id}Update an APIKey
NetilionApiDocumentation.APISubscriptionApiaddEdgeDevicesToApiSubscriptionPOST /api_subscriptions/{id}/edge_devicesAdd edge devices to an api subscription
NetilionApiDocumentation.APISubscriptionApicreateAPISubscriptionPOST /api_subscriptionsCreate a new api subscription
NetilionApiDocumentation.APISubscriptionApideleteAPISubscriptionDELETE /api_subscriptions/{id}Delete an api subscription
NetilionApiDocumentation.APISubscriptionApigetAPISubscriptionByIdGET /api_subscriptions/{id}Get a single api subscription
NetilionApiDocumentation.APISubscriptionApigetAPISubscriptionsGET /api_subscriptionsGet a range of api subscriptions
NetilionApiDocumentation.APISubscriptionApigetEdgeDevicesOfAPISubscriptionGET /api_subscriptions/{id}/edge_devicesGet all edge devices of an api subscription
NetilionApiDocumentation.APISubscriptionApiremoveEdgeDevicesFromApiSubscriptionDELETE /api_subscriptions/{id}/edge_devicesRemove edge devices from an api subscription
NetilionApiDocumentation.APISubscriptionApireplaceEdgeDevicesOfApiSubscriptionPATCH /api_subscriptions/{id}/edge_devicesReplace the edge devices of an api subscription
NetilionApiDocumentation.APISubscriptionApiupdateAPISubscriptionPATCH /api_subscriptions/{id}Update an api subscription
NetilionApiDocumentation.AssetApiaddAssetPictureLinkPOST /assets/{id}/pictures/linksAdd a link as asset picture
NetilionApiDocumentation.AssetApiaddDeliveriesToAssetPOST /assets/{asset_id}/deliveriesAdd deliveries to an asset
NetilionApiDocumentation.AssetApiaddDocumentsToAssetPOST /assets/{asset_id}/documentsAdd documents to an asset
NetilionApiDocumentation.AssetApiaddInstrumentationsToAssetPOST /assets/{asset_id}/instrumentationsAdd instrumentations to an asset
NetilionApiDocumentation.AssetApiaddNodesToAssetPOST /assets/{asset_id}/nodesAdd nodes to an asset
NetilionApiDocumentation.AssetApiaddSoftwaresToAssetPOST /assets/{asset_id}/softwaresAdd software to an asset
NetilionApiDocumentation.AssetApicreateAssetPOST /assetsCreate a new asset
NetilionApiDocumentation.AssetApicreateEventForAssetPOST /assets/{asset_id}/eventsCreate a new event for an asset
NetilionApiDocumentation.AssetApideleteAssetDELETE /assets/{id}Delete an asset
NetilionApiDocumentation.AssetApideleteAssetPictureDELETE /assets/{asset_id}/pictures/{id}Delete an asset picture
NetilionApiDocumentation.AssetApideleteSpecificationsOfAssetDELETE /assets/{asset_id}/specificationsDelete specifications of an asset
NetilionApiDocumentation.AssetApidownloadAssetPictureGET /assets/{asset_id}/pictures/{id}/downloadDownload an asset picture
NetilionApiDocumentation.AssetApigetAssetByIdGET /assets/{id}Get a single asset
NetilionApiDocumentation.AssetApigetAssetCompanyOptionsGET /assets/{asset_id}/company-optionsGet all possible companies of the specified assets
NetilionApiDocumentation.AssetApigetAssetHistoryGET /assets/{asset_id}/historyGet the history of an asset
NetilionApiDocumentation.AssetApigetAssetIdStatusGET /assets/{asset_id}/statusGet the status of the specific asset
NetilionApiDocumentation.AssetApigetAssetPictureGET /assets/{asset_id}/pictures/{id}Get an asset picture
NetilionApiDocumentation.AssetApigetAssetPicturesGET /assets/{id}/picturesGet asset pictures
NetilionApiDocumentation.AssetApigetAssetProductOptionsGET /assets/{asset_id}/product-optionsGet all possible products of the specified assets
NetilionApiDocumentation.AssetApigetAssetStatusesOptionsGET /assets/{asset_id}/status-optionsGet all possible statuses of the specified assets
NetilionApiDocumentation.AssetApigetAssetTenantOptionsGET /assets/{asset_id}/tenant-optionsGet all possible tenants of the specified assets
NetilionApiDocumentation.AssetApigetAssetsGET /assetsGet a range of assets
NetilionApiDocumentation.AssetApigetDeliveriesOfAssetGET /assets/{asset_id}/deliveriesGet all deliveries of one asset
NetilionApiDocumentation.AssetApigetDocumentsOfAssetGET /assets/{asset_id}/documentsGet all documents of an asset
NetilionApiDocumentation.AssetApigetEventsOfAssetGET /assets/{asset_id}/eventsGet all events of one asset
NetilionApiDocumentation.AssetApigetInstrumentationsOfAssetGET /assets/{asset_id}/instrumentationsGet all instrumentations of one asset
NetilionApiDocumentation.AssetApigetInstrumentationsOfAssetHistoryGET /assets/{asset_id}/instrumentations/historyGet all instrumentations an asset was assigned to
NetilionApiDocumentation.AssetApigetNodesOfAssetGET /assets/{asset_id}/nodesGet all nodes of one asset
NetilionApiDocumentation.AssetApigetSoftwaresOfSoftwareGET /assets/{asset_id}/softwaresGet a range of software of one asset
NetilionApiDocumentation.AssetApigetSpecificationHistoryOfAssetGET /assets/{asset_id}/specifications/{key}/historyGet the history of one specification attribute of an asset.
NetilionApiDocumentation.AssetApigetSpecificationsOfAssetGET /assets/{asset_id}/specificationsGet specifications of an asset
NetilionApiDocumentation.AssetApigetSubscriptionsOfAssetGET /assets/{asset_id}/subscriptionsGet all subscriptions of asset
NetilionApiDocumentation.AssetApiremoveDeliveriesFromAssetDELETE /assets/{asset_id}/deliveriesRemove deliveries from an asset
NetilionApiDocumentation.AssetApiremoveDocumentsFromAssetDELETE /assets/{asset_id}/documentsRemove documents from an asset
NetilionApiDocumentation.AssetApiremoveEventFromAssetDELETE /assets/{asset_id}/eventsRemove events from an asset
NetilionApiDocumentation.AssetApiremoveInstrumentationsOfAssetDELETE /assets/{asset_id}/instrumentationsRemove instrumentations from an asset
NetilionApiDocumentation.AssetApiremoveNodesFromAssetDELETE /assets/{asset_id}/nodesRemove nodes from an asset
NetilionApiDocumentation.AssetApiremoveSoftwaresOfAssetDELETE /assets/{asset_id}/softwaresRemove software from an asset
NetilionApiDocumentation.AssetApirenameSpecificationsOfAssetPATCH /assets/{asset_id}/specifications/renameRename a specification key
NetilionApiDocumentation.AssetApireplaceDeliveriesOfAssetPATCH /assets/{asset_id}/deliveriesReplace the deliveries of an asset
NetilionApiDocumentation.AssetApireplaceDocumentsOfAssetPATCH /assets/{asset_id}/documentsReplace the documents of an asset
NetilionApiDocumentation.AssetApireplaceInstrumentationsOfAssetPATCH /assets/{asset_id}/instrumentationsReplace the instrumentations of an asset
NetilionApiDocumentation.AssetApireplaceNodesOfAssetPATCH /assets/{asset_id}/nodesReplace the nodes of an asset
NetilionApiDocumentation.AssetApireplaceSoftwaresOfAssetPATCH /assets/{asset_id}/softwaresReplace the software of an asset
NetilionApiDocumentation.AssetApiupdateAssetPATCH /assets/{id}Update an asset
NetilionApiDocumentation.AssetApiupdateAssetPicturePATCH /assets/{asset_id}/pictures/{id}Update an asset picture
NetilionApiDocumentation.AssetApiupdateAssetPictureLinkPATCH /assets/{asset_id}/pictures/links/{id}Update an asset picture link
NetilionApiDocumentation.AssetApiupdateSpecificationsOfAssetPATCH /assets/{asset_id}/specificationsUpdate specifications of an asset
NetilionApiDocumentation.AssetApiuploadAssetPicturePOST /assets/{id}/picturesUpload an asset picture
NetilionApiDocumentation.AssetHealthConditionApiaddHealthConditionsToAssetPOST /assets/{asset_id}/health_conditionsAdd health conditions to an asset
NetilionApiDocumentation.AssetHealthConditionApicalculateAssetHealthConditionsGET /assets/{asset_id}/health_conditions/calculateCalculate health conditions of an asset
NetilionApiDocumentation.AssetHealthConditionApicalculateAssetHealthConditionsAndUpdateAssetPATCH /assets/{asset_id}/health_conditions/calculateCalculate health conditions of an asset and update asset with this health conditions
NetilionApiDocumentation.AssetHealthConditionApigetAssetHealthConditionsGET /assets/{asset_id}/health_conditionsGet all health conditions assigned to an asset
NetilionApiDocumentation.AssetHealthConditionApigetHealthConditionsOfAssetTimemachineGET /assets/{asset_id}/health_conditions/timemachineGet all health_conditions historical evolution the given asset had assigned
NetilionApiDocumentation.AssetHealthConditionApireaplaceHealthConditionsOfAssetPATCH /assets/{asset_id}/health_conditionsReplace health conditions of an asset
NetilionApiDocumentation.AssetHealthConditionApiremoveHealthConditionsOfAssetDELETE /assets/{asset_id}/health_conditionsRemove health conditions of an asset
NetilionApiDocumentation.AssetStatusApicreateAssetStatusPOST /asset/statusesCreate a new asset status
NetilionApiDocumentation.AssetStatusApideleteAssetStatusDELETE /asset/statuses/{id}Delete an asset status
NetilionApiDocumentation.AssetStatusApigetAssetIdStatusGET /assets/{asset_id}/statusGet the status of the specific asset
NetilionApiDocumentation.AssetStatusApigetAssetStatusByIdGET /asset/statuses/{id}Get a single asset status
NetilionApiDocumentation.AssetStatusApigetAssetStatusesGET /asset/statusesGet a range of asset statuses
NetilionApiDocumentation.AssetStatusApigetAssetStatusesOptionsGET /assets/{asset_id}/status-optionsGet all possible statuses of the specified assets
NetilionApiDocumentation.AssetStatusApiupdateAssetStatusPATCH /asset/statuses/{id}Update an asset status
NetilionApiDocumentation.AssetValuesApicreateAssetValuesPOST /assets/{asset_id}/valuesCreate asset values
NetilionApiDocumentation.AssetValuesApigetAssetValuesGET /assets/{asset_id}/valuesGet latest values for the asset.
NetilionApiDocumentation.AssetValuesApigetAssetValuesForKeyGET /assets/{asset_id}/values/{key}Get asset values for a specific key.
NetilionApiDocumentation.AttachmentApicreateLinkAttachmentPOST /attachments/linksCreate a new link as attachment
NetilionApiDocumentation.AttachmentApideleteAttachmentDELETE /attachments/{id}Delete an attachment and the file
NetilionApiDocumentation.AttachmentApidownloadAttachmentGET /attachments/{id}/downloadDownload the attachments file
NetilionApiDocumentation.AttachmentApigetAttachmentByIdGET /attachments/{id}Get a single attachment
NetilionApiDocumentation.AttachmentApigetAttachmentsGET /attachmentsGet a range of attachments
NetilionApiDocumentation.AttachmentApiupdateAttachmentPATCH /attachments/{id}Update an attachment and especially its file
NetilionApiDocumentation.AttachmentApiupdateLinkAttachmentPATCH /attachments/links/{id}Update an attachment with a link
NetilionApiDocumentation.AttachmentApiuploadAttachmentPOST /attachmentsCreate and upload a new attachment
NetilionApiDocumentation.BillOfMaterialApiaddDocumentsToBillOfMaterialPOST /bill_of_materials/{bill_of_material_id}/documentsAdd documents to a bill of material
NetilionApiDocumentation.BillOfMaterialApiaddInstrumentationsToBillOfMaterialPOST /bill_of_materials/{bill_of_material_id}/instrumentationsAdd instrumentations to a bill of material
NetilionApiDocumentation.BillOfMaterialApiaddRequestForQuotationsToBillOfMaterialPOST /bill_of_materials/{bill_of_material_id}/request_for_quotationsAdd request for quotations to a bill of material
NetilionApiDocumentation.BillOfMaterialApicreateBillOfMaterialPOST /bill_of_materialsCreate a new bill of material
NetilionApiDocumentation.BillOfMaterialApideleteBillOfMaterialDELETE /bill_of_materials/{id}Delete a bill of material
NetilionApiDocumentation.BillOfMaterialApigetBillOfMaterialByIdGET /bill_of_materials/{id}Get a single bill of material
NetilionApiDocumentation.BillOfMaterialApigetBillOfMaterialsGET /bill_of_materialsGet a range of bill of materials
NetilionApiDocumentation.BillOfMaterialApigetDocumentsOfBillOfMaterialGET /bill_of_materials/{bill_of_material_id}/documentsGet all documents of a bill of material
NetilionApiDocumentation.BillOfMaterialApigetInstrumentationsOfBillOfMaterialGET /bill_of_materials/{bill_of_material_id}/instrumentationsGet all instrumentations of a bill of material
NetilionApiDocumentation.BillOfMaterialApigetRequestForQuotationsOfBillOfMaterialGET /bill_of_materials/{bill_of_material_id}/request_for_quotationsGet all request for quotations of a bill of material
NetilionApiDocumentation.BillOfMaterialApiremoveDocumentsFromBillOfMaterialDELETE /bill_of_materials/{bill_of_material_id}/documentsRemove documents from a bill of material
NetilionApiDocumentation.BillOfMaterialApiremoveInstrumentationsFromBillOfMaterialDELETE /bill_of_materials/{bill_of_material_id}/instrumentationsRemove instrumentations from a bill of material
NetilionApiDocumentation.BillOfMaterialApiremoveRequestForQuotationsOfBillOfMaterialDELETE /bill_of_materials/{bill_of_material_id}/request_for_quotationsRemove request for quotations from a bill of material
NetilionApiDocumentation.BillOfMaterialApireplaceDocumentsOfBillOfMaterialPATCH /bill_of_materials/{bill_of_material_id}/documentsReplace the documents of a bill of material
NetilionApiDocumentation.BillOfMaterialApireplaceInstrumentationsOfBillOfMaterialPATCH /bill_of_materials/{bill_of_material_id}/instrumentationsReplace the instrumentations of a bill of material
NetilionApiDocumentation.BillOfMaterialApireplaceRequestForQuotationsOfBillOfMaterialPATCH /bill_of_materials/{bill_of_material_id}/request_for_quotationsReplace the request for quotations of a bill of material
NetilionApiDocumentation.BillOfMaterialApiupdateBillOfMaterialPATCH /bill_of_materials/{id}Update a bill of material
NetilionApiDocumentation.ClientApplicationApiaddClientApplicationsToEdgeApplicationPOST /edge_device/applications/{edge_device_application_id}/client_applicationsAdd client applications to an edge device application
NetilionApiDocumentation.ClientApplicationApiaddUsersToClientApplicationUserRolePOST /client_applications/{client_application_id}/roles/{userrole_id}/usersAdd users to a client application user role
NetilionApiDocumentation.ClientApplicationApicreateClientApplicationPOST /client_applicationsCreate a new client_application
NetilionApiDocumentation.ClientApplicationApideleteClientApplicationDELETE /client_applications/{id}Delete an client_application
NetilionApiDocumentation.ClientApplicationApideleteUsersFromClientApplicationUserRoleDELETE /client_applications/{client_application_id}/roles/{userrole_id}/usersRemove users from a client application user role
NetilionApiDocumentation.ClientApplicationApigetAPIKeysOfClientApplicationGET /client_applications/{client_application_id}/api_keysGetAPI Keys of Client Application
NetilionApiDocumentation.ClientApplicationApigetClientApplicationByIdGET /client_applications/{id}Get a single client_application
NetilionApiDocumentation.ClientApplicationApigetClientApplicationsGET /client_applicationsGet a range of client_applications
NetilionApiDocumentation.ClientApplicationApigetClientApplicationsOfEdgeDeviceApplicationGET /edge_device/applications/{edge_device_application_id}/client_applicationsGet all client applications of one edge device application
NetilionApiDocumentation.ClientApplicationApigetCurrentClientApplicationGET /client_applications/currentGet current client_application
NetilionApiDocumentation.ClientApplicationApigetEdgeDeviceApplicationsOfClientApplicationGET /client_applications/{client_application_id}/edge_device/applicationsGet all edge devices applications for an client application
NetilionApiDocumentation.ClientApplicationApigetUsersOfClientApplicationUserRoleGET /client_applications/{client_application_id}/roles/{userrole_id}/usersGet all users of a user role assigned to a client application
NetilionApiDocumentation.ClientApplicationApiremoveClientApplicationsOfEdgeDeviceApplicationDELETE /edge_device/applications/{edge_device_application_id}/client_applicationsRemove client applications from an edge device application
NetilionApiDocumentation.ClientApplicationApireplaceClientApplicationsOfEdgeDeviceApplicationPATCH /edge_device/applications/{edge_device_application_id}/client_applicationsReplace the client applications of an edge device application
NetilionApiDocumentation.ClientApplicationApiupdateClientApplicationPATCH /client_applications/{id}Update an client_application
NetilionApiDocumentation.CompanyApicreateCompanyPOST /companiesCreate a new company
NetilionApiDocumentation.CompanyApideleteCompanyDELETE /companies/{id}Delete a company
NetilionApiDocumentation.CompanyApigetAssetCompanyOptionsGET /assets/{asset_id}/company-optionsGet all possible companies of the specified assets
NetilionApiDocumentation.CompanyApigetCompaniesGET /companiesGet a range of companies
NetilionApiDocumentation.CompanyApigetCompanyByIdGET /companies/{id}Get a single company
NetilionApiDocumentation.CompanyApigetDeliveriesReceivedOfCompanyGET /companies/{company_id}/deliveries_receivedGet all deliveries received of one company
NetilionApiDocumentation.CompanyApigetDeliveriesSentOfCompanyGET /companies/{company_id}/deliveries_sentGet all deliveries sent of one company
NetilionApiDocumentation.CompanyApigetProductsOfCompanyGET /companies/{company_id}/productsGet all products of a company
NetilionApiDocumentation.CompanyApiupdateCompanyPATCH /companies/{id}Update a company
NetilionApiDocumentation.DeliveryApiaddAssetsToDeliveryPOST /deliveries/{delivery_id}/assetsAdd assets to a delivery
NetilionApiDocumentation.DeliveryApiaddDocumentsToDeliveryPOST /deliveries/{delivery_id}/documentsAdd documents to a delivery
NetilionApiDocumentation.DeliveryApiaddPurchaseOrdersToDeliveryPOST /deliveries/{delivery_id}/purchase_ordersAdd all purchase oders to a delivery
NetilionApiDocumentation.DeliveryApicreateDeliveryPOST /deliveriesCreate a new delivery
NetilionApiDocumentation.DeliveryApideleteDeliveryDELETE /deliveries/{id}Delete a delivery
NetilionApiDocumentation.DeliveryApigetAssetsOfDeliveryGET /deliveries/{delivery_id}/assetsGet all assets of one delivery
NetilionApiDocumentation.DeliveryApigetDeliveriesGET /deliveriesGet a range of deliveries
NetilionApiDocumentation.DeliveryApigetDeliveryByIdGET /deliveries/{id}Get a single delivery
NetilionApiDocumentation.DeliveryApigetDeliveryIdStatusGET /deliveries/{delivery_id}/statusGet the status of the specific delivery
NetilionApiDocumentation.DeliveryApigetDocumentsOfDeliveryGET /deliveries/{delivery_id}/documentsGet all documents of one delivery
NetilionApiDocumentation.DeliveryApigetPurchaseOrdersOfDeliveryGET /deliveries/{delivery_id}/purchase_ordersGet all purchase orders of one delivery
NetilionApiDocumentation.DeliveryApiremoveAssetsFromDeliveryDELETE /deliveries/{delivery_id}/assetsRemove assets from a delivery
NetilionApiDocumentation.DeliveryApiremoveDocumentsFromDeliveryDELETE /deliveries/{delivery_id}/documentsRemove documents from a delivery
NetilionApiDocumentation.DeliveryApiremovePurchaseOrdersFromDeliveryDELETE /deliveries/{delivery_id}/purchase_ordersRemove purchase orders from a delivery
NetilionApiDocumentation.DeliveryApireplaceAssetsOfDeliveryPATCH /deliveries/{delivery_id}/assetsReplace the assets of a delivery
NetilionApiDocumentation.DeliveryApireplaceDocumentsOfDeliveryPATCH /deliveries/{delivery_id}/documentsReplace the documents of a delivery
NetilionApiDocumentation.DeliveryApireplacePurchaseOrdersOfDeliveryPATCH /deliveries/{delivery_id}/purchase_ordersReplace the purchase orders of a delivery
NetilionApiDocumentation.DeliveryApiupdateDeliveryPATCH /deliveries/{id}Update a delivery
NetilionApiDocumentation.DeliveryStatusApicreateDeliveryStatusPOST /delivery/statusesCreate a new delivery status
NetilionApiDocumentation.DeliveryStatusApideleteDeliveryStatusDELETE /delivery/statuses/{id}Delete a delivery status
NetilionApiDocumentation.DeliveryStatusApigetDeliveryIdStatusGET /deliveries/{delivery_id}/statusGet the status of the specific delivery
NetilionApiDocumentation.DeliveryStatusApigetDeliveryStatusByIdGET /delivery/statuses/{id}Get a single delivery status
NetilionApiDocumentation.DeliveryStatusApigetDeliveryStatusesGET /delivery/statusesGet a range of delivery statuses
NetilionApiDocumentation.DeliveryStatusApiupdateDeliveryStatusesPATCH /delivery/statuses/{id}Update an delivery status
NetilionApiDocumentation.DocumentApiaddCategoriesToDocumentPOST /documents/{document_id}/categoriesAdd categories to a document
NetilionApiDocumentation.DocumentApicreateDocumentPOST /documentsCreate a new document
NetilionApiDocumentation.DocumentApideleteDocumentDELETE /documents/{id}Delete a document
NetilionApiDocumentation.DocumentApidownloadDocumentGET /documents/{id}/downloadDownload multiple attachments of a document
NetilionApiDocumentation.DocumentApigetAssetsOfDocumentGET /documents/{document_id}/assetsGet all assets of one document
NetilionApiDocumentation.DocumentApigetAttachmentsOfDocumentGET /documents/{document_id}/attachmentsGet all attachments of one document
NetilionApiDocumentation.DocumentApigetBillOfMaterialsOfDocumentGET /documents/{document_id}/bill_of_materialsGet all bill of materials of one document
NetilionApiDocumentation.DocumentApigetCategoriesOfDocumentGET /documents/{document_id}/categoriesGet all categories of one document
NetilionApiDocumentation.DocumentApigetCategoriesOptionsOfDocumentGET /documents/{document_id}/categories-optionsGet all possible categories for the specified document
NetilionApiDocumentation.DocumentApigetDeliveriesOfDocumentGET /documents/{document_id}/deliveriesGet all deliveries of one document
NetilionApiDocumentation.DocumentApigetDocumentByIdGET /documents/{id}Get a single document
NetilionApiDocumentation.DocumentApigetDocumentClassificationsOptionsGET /documents/{document_id}/classification-optionsGet all possible classifications for the specified document
NetilionApiDocumentation.DocumentApigetDocumentIdClassificationGET /documents/{document_id}/classificationGet the classification of a specific document
NetilionApiDocumentation.DocumentApigetDocumentIdStatusGET /documents/{document_id}/statusGet the status of a specific document
NetilionApiDocumentation.DocumentApigetDocumentStatusesOptionsGET /documents/{document_id}/status-optionsGet all possible statuses for the specified document
NetilionApiDocumentation.DocumentApigetDocumentsGET /documentsGet a range of documents
NetilionApiDocumentation.DocumentApigetEventsOfDocumentGET /documents/{document_id}/eventsGet all events of one document
NetilionApiDocumentation.DocumentApigetInstrumentationsOfDocumentGET /documents/{document_id}/instrumentationsGet all instrumentations of one document
NetilionApiDocumentation.DocumentApigetNodesOfDocumentGET /documents/{document_id}/nodesGet all nodes of one document
NetilionApiDocumentation.DocumentApigetProductsOfDocumentGET /documents/{document_id}/productsGet all products of one document
NetilionApiDocumentation.DocumentApigetPurchaseOrdersOfDocumentGET /documents/{document_id}/purchase_ordersGet all purchase orders of one document
NetilionApiDocumentation.DocumentApigetQuotationsOfDocumentGET /documents/{document_id}/quotationsGet all quotations of one document
NetilionApiDocumentation.DocumentApigetRequestForQuotationsOfDocumentGET /documents/{document_id}/request_for_quotationsGet all request for quotations of one document
NetilionApiDocumentation.DocumentApiremoveCategoriesFromDocumentDELETE /documents/{document_id}/categoriesRemove categories from a document
NetilionApiDocumentation.DocumentApireplaceCategoriesOfDocumentPATCH /documents/{document_id}/categoriesReplace the categories of a document
NetilionApiDocumentation.DocumentApiupdateDocumentPATCH /documents/{id}Update a document
NetilionApiDocumentation.DocumentCategoryApiaddDocumentsToDocumentCategoryPOST /document/categories/{category_id}/documentsAdd documents to a category
NetilionApiDocumentation.DocumentCategoryApicreateDocumentCategoryPOST /document/categoriesCreate a new document category
NetilionApiDocumentation.DocumentCategoryApideleteDocumentCategoryDELETE /document/categories/{id}Delete a document category
NetilionApiDocumentation.DocumentCategoryApigetCategoriesOfDocumentGET /documents/{document_id}/categoriesGet all categories of one document
NetilionApiDocumentation.DocumentCategoryApigetCategoriesOptionsOfDocumentGET /documents/{document_id}/categories-optionsGet all possible categories for the specified document
NetilionApiDocumentation.DocumentCategoryApigetDocumentCategoriesGET /document/categoriesGet a range of document categories
NetilionApiDocumentation.DocumentCategoryApigetDocumentCategoryByIdGET /document/categories/{id}Get a single document category
NetilionApiDocumentation.DocumentCategoryApigetDocumentsOfDocumentCategoryGET /document/categories/{category_id}/documentsGet all documents of one category
NetilionApiDocumentation.DocumentCategoryApiremoveDocumentsFromDocumentCategoryDELETE /document/categories/{category_id}/documentsRemove documents from a category
NetilionApiDocumentation.DocumentCategoryApireplaceDocumentsOfDocumentCategoryPATCH /document/categories/{category_id}/documentsReplace documents of a category
NetilionApiDocumentation.DocumentCategoryApiupdateDocumentCategoryPATCH /document/categories/{id}Update a document category
NetilionApiDocumentation.DocumentClassificationApicreateDocumentClassificationPOST /document/classificationsCreate a new document classification
NetilionApiDocumentation.DocumentClassificationApideleteDocumentClassificationDELETE /document/classifications/{id}Delete a document classification
NetilionApiDocumentation.DocumentClassificationApigetDocumentClassificationByIdGET /document/classifications/{id}Get a single document classification
NetilionApiDocumentation.DocumentClassificationApigetDocumentClassificationsGET /document/classificationsGet a range of document classifications
NetilionApiDocumentation.DocumentClassificationApigetDocumentClassificationsOptionsGET /documents/{document_id}/classification-optionsGet all possible classifications for the specified document
NetilionApiDocumentation.DocumentClassificationApigetDocumentIdClassificationGET /documents/{document_id}/classificationGet the classification of a specific document
NetilionApiDocumentation.DocumentClassificationApiupdateDocumentClassificationPATCH /document/classifications/{id}Update a document classification
NetilionApiDocumentation.DocumentStatusApicreateDocumentStatusPOST /document/statusesCreate a new document status
NetilionApiDocumentation.DocumentStatusApideleteDocumentStatusDELETE /document/statuses/{id}Delete a document status
NetilionApiDocumentation.DocumentStatusApigetDocumentIdStatusGET /documents/{document_id}/statusGet the status of a specific document
NetilionApiDocumentation.DocumentStatusApigetDocumentStatusByIdGET /document/statuses/{id}Get a single document status
NetilionApiDocumentation.DocumentStatusApigetDocumentStatusesGET /document/statusesGet a range of document statuses
NetilionApiDocumentation.DocumentStatusApigetDocumentStatusesOptionsGET /documents/{document_id}/status-optionsGet all possible statuses for the specified document
NetilionApiDocumentation.DocumentStatusApiupdateDocumentStatusPATCH /document/statuses/{id}Update a document status
NetilionApiDocumentation.EventApiaddDocumentsToEventPOST /events/{event_id}/documentsAdd documents to an event
NetilionApiDocumentation.EventApicreateEventPOST /eventsCreate a new event
NetilionApiDocumentation.EventApicreateEventForAssetPOST /assets/{asset_id}/eventsCreate a new event for an asset
NetilionApiDocumentation.EventApicreateEventForInstrumentationPOST /instrumentations/{instrumentation_id}/eventsCreate a new event for an instrumentation
NetilionApiDocumentation.EventApideleteEventDELETE /events/{id}Delete an event
NetilionApiDocumentation.EventApigetAssetsOfEventGET /events/{event_id}/assetsGet all assets of one event
NetilionApiDocumentation.EventApigetDocumentsOfEventGET /events/{event_id}/documentsGet all documents of an event
NetilionApiDocumentation.EventApigetEventByIdGET /events/{id}Get a single event
NetilionApiDocumentation.EventApigetEventIdStatusGET /events/{event_id}/statusGet the status of a specific event
NetilionApiDocumentation.EventApigetEventIdTypeGET /events/{event_id}/typeGet the type of a specific event
NetilionApiDocumentation.EventApigetEventStatusesOptionsGET /events/{event_id}/status-optionsGet all possible statuses for the specified event
NetilionApiDocumentation.EventApigetEventTypeesOptionsGET /events/{event_id}/type-optionsGet all possible types for the specified event
NetilionApiDocumentation.EventApigetEventsGET /eventsGet a range of events
NetilionApiDocumentation.EventApigetEventsOfAssetGET /assets/{asset_id}/eventsGet all events of one asset
NetilionApiDocumentation.EventApigetEventsOfInstrumentationGET /instrumentations/{instrumentation_id}/eventsGet all events of one instrumentation
NetilionApiDocumentation.EventApigetInstrumentationsOfEventGET /events/{event_id}/instrumentationsGet all instrumentations of one event
NetilionApiDocumentation.EventApigetSpecificationsOfEventGET /events/{event_id}/specificationsGet specifications of an event
NetilionApiDocumentation.EventApiremoveAssetsFromEventDELETE /events/{event_id}/assetsRemove assets from an event
NetilionApiDocumentation.EventApiremoveDocumentsFromEventDELETE /events/{event_id}/documentsRemove documents from an event
NetilionApiDocumentation.EventApiremoveEventFromAssetDELETE /assets/{asset_id}/eventsRemove events from an asset
NetilionApiDocumentation.EventApiremoveEventFromInstrumentationDELETE /instrumentations/{instrumentation_id}/eventsRemove events from an instrumentation
NetilionApiDocumentation.EventApiremoveInstrumentationsFromEventDELETE /events/{event_id}/instrumentationsRemove instrumentations from an event
NetilionApiDocumentation.EventApiremoveSpecificationsFromEventDELETE /events/{event_id}/specificationsDelete specifications of an event
NetilionApiDocumentation.EventApirenameSpecificationsOfEventPATCH /events/{event_id}/specifications/renameRename a specification key
NetilionApiDocumentation.EventApireplaceDocumentsOfEventPATCH /events/{event_id}/documentsReplace the documents of an event
NetilionApiDocumentation.EventApiupdateEventPATCH /events/{id}Update an event
NetilionApiDocumentation.EventApiupdateSpecificationsOfEventPATCH /events/{event_id}/specificationsUpdate specifications of an event
NetilionApiDocumentation.EventStatusApicreateEventStatusPOST /event/statusesCreate a new event status
NetilionApiDocumentation.EventStatusApideleteEventStatusDELETE /event/statuses/{id}Delete an event status
NetilionApiDocumentation.EventStatusApigetEventIdStatusGET /events/{event_id}/statusGet the status of a specific event
NetilionApiDocumentation.EventStatusApigetEventStatusByIdGET /event/statuses/{id}Get a single event status
NetilionApiDocumentation.EventStatusApigetEventStatusesGET /event/statusesGet a range of event statuses
NetilionApiDocumentation.EventStatusApigetEventStatusesOptionsGET /events/{event_id}/status-optionsGet all possible statuses for the specified event
NetilionApiDocumentation.EventStatusApiupdateEventStatusPATCH /event/statuses/{id}Update an event status
NetilionApiDocumentation.EventTypeApicreateEventTypePOST /event/typesCreate a new event type
NetilionApiDocumentation.EventTypeApideleteEventTypeDELETE /event/types/{id}Delete an event type
NetilionApiDocumentation.EventTypeApigetEventIdTypeGET /events/{event_id}/typeGet the type of a specific event
NetilionApiDocumentation.EventTypeApigetEventTypeByIdGET /event/types/{id}Get a single event type
NetilionApiDocumentation.EventTypeApigetEventTypeesOptionsGET /events/{event_id}/type-optionsGet all possible types for the specified event
NetilionApiDocumentation.EventTypeApigetEventTypesGET /event/typesGet a range of event types
NetilionApiDocumentation.EventTypeApiupdateEventTypePATCH /event/types/{id}Update an event type
NetilionApiDocumentation.HealthConditionApicreateHealthConditionPOST /health_conditionsCreate a new health condition
NetilionApiDocumentation.HealthConditionApideleteHealthConditionDELETE /health_conditions/{id}Delete a health condition
NetilionApiDocumentation.HealthConditionApigetHealthConditionByIdGET /health_conditions/{id}Get a single health condition
NetilionApiDocumentation.HealthConditionApigetHealthConditionsGET /health_conditionsGet a range of health conditions
NetilionApiDocumentation.HealthConditionApiupdateHealthConditionPATCH /health_conditions/{id}Update a health condition
NetilionApiDocumentation.HealthConditionCauseApicreateHealthConditionCausePOST /health_conditions/{health_condition_id}/causesCreate a health condition cause
NetilionApiDocumentation.HealthConditionCauseApideleteCauseDELETE /health_conditions/{health_condition_id}/causes/{id}Delete a health condition cause
NetilionApiDocumentation.HealthConditionCauseApigetHealthConditionCauseByIdGET /health_conditions/{health_condition_id}/causes/{id}Get a single health condition cause
NetilionApiDocumentation.HealthConditionCauseApigetHealthConditionCausesGET /health_conditions/{health_condition_id}/causesGet all causes of a health condition
NetilionApiDocumentation.HealthConditionCauseApiupdateHealthConditionCausePATCH /health_conditions/{health_condition_id}/causes/{id}Update a health condition cause
NetilionApiDocumentation.HealthConditionRemedyApicreateHealthConditionRemedyPOST /health_conditions/{health_condition_id}/causes/{cause_id}/remediesCreate a remedy
NetilionApiDocumentation.HealthConditionRemedyApideleteHealthConditionRemedyDELETE /health_conditions/{health_condition_id}/causes/{cause_id}/remedies/{id}Delete a remedy
NetilionApiDocumentation.HealthConditionRemedyApigetHealthConditionRemediesGET /health_conditions/{health_condition_id}/causes/{cause_id}/remediesGet all remedies of a cause
NetilionApiDocumentation.HealthConditionRemedyApigetHealthConditionRemedyByIdGET /health_conditions/{health_condition_id}/causes/{cause_id}/remedies/{id}Get a single remedy
NetilionApiDocumentation.HealthConditionRemedyApiupdateHealthConditionRemedyPATCH /health_conditions/{health_condition_id}/causes/{cause_id}/remedies/{id}Update a remedy
NetilionApiDocumentation.InstrumentationApiaddAssetsToInstrumentationPOST /instrumentations/{instrumentation_id}/assetsAdd assets to an instrumentation
NetilionApiDocumentation.InstrumentationApiaddBillOfMaterialsToInstrumentationPOST /instrumentations/{instrumentation_id}/bill_of_materialsAdd bill of materials to an instrumentation
NetilionApiDocumentation.InstrumentationApiaddDocumentsToInstrumentationPOST /instrumentations/{instrumentation_id}/documentsAdd documents to an instrumentation
NetilionApiDocumentation.InstrumentationApiaddInstrumentationPictureLinkPOST /instrumentations/{id}/pictures/linksAdd a link as instrumentation picture
NetilionApiDocumentation.InstrumentationApiaddNodesToInstrumentationPOST /instrumentations/{instrumentation_id}/nodesAdd nodes to an instrumentation
NetilionApiDocumentation.InstrumentationApicreateEventForInstrumentationPOST /instrumentations/{instrumentation_id}/eventsCreate a new event for an instrumentation
NetilionApiDocumentation.InstrumentationApicreateInstrumentationPOST /instrumentationsCreate a new instrumentation
NetilionApiDocumentation.InstrumentationApicreateInstrumentationThresholdPOST /instrumentations/{instrumentation_id}/thresholdsCreate an instrumentation threshold
NetilionApiDocumentation.InstrumentationApideleteInstrumentationDELETE /instrumentations/{id}Delete an instrumentation
NetilionApiDocumentation.InstrumentationApideleteInstrumentationPictureDELETE /instrumentations/{instrumentation_id}/pictures/{id}Delete an instrumentation picture
NetilionApiDocumentation.InstrumentationApideleteInstrumentationThresholdDELETE /instrumentations/{instrumentation_id}/thresholds/{id}Delete an instrumentation threshold
NetilionApiDocumentation.InstrumentationApidownloadInstrumentationPictureGET /instrumentations/{instrumentation_id}/pictures/{id}/downloadDownload an instrumentation picture
NetilionApiDocumentation.InstrumentationApigetAssetsOfInstrumentationGET /instrumentations/{instrumentation_id}/assetsGet all assets of one instrumentation
NetilionApiDocumentation.InstrumentationApigetAssetsOfInstrumentationHistoryGET /instrumentations/{instrumentation_id}/assets/historyGet all assets an instrumentation was assigned to
NetilionApiDocumentation.InstrumentationApigetBillOfMaterialsOfInstrumentationGET /instrumentations/{instrumentation_id}/bill_of_materialsGet all bill of materials of an instrumentation
NetilionApiDocumentation.InstrumentationApigetDocumentsOfInstrumentationGET /instrumentations/{instrumentation_id}/documentsGet all documents of an instrumentation
NetilionApiDocumentation.InstrumentationApigetEventsOfInstrumentationGET /instrumentations/{instrumentation_id}/eventsGet all events of one instrumentation
NetilionApiDocumentation.InstrumentationApigetInstrumentationByIdGET /instrumentations/{id}Get a single instrumentation
NetilionApiDocumentation.InstrumentationApigetInstrumentationIdStatusGET /instrumentations/{instrumentation_id}/statusGet the status of the specific instrumentation
NetilionApiDocumentation.InstrumentationApigetInstrumentationIdTypeGET /instrumentations/{instrumentation_id}/typeGet the type of the specific instrumentation
NetilionApiDocumentation.InstrumentationApigetInstrumentationPictureGET /instrumentations/{instrumentation_id}/pictures/{id}Get an instrumentation picture
NetilionApiDocumentation.InstrumentationApigetInstrumentationPicturesGET /instrumentations/{id}/picturesGet instrumentation pictures
NetilionApiDocumentation.InstrumentationApigetInstrumentationStatusesOptionsGET /instrumentations/{instrumentation_id}/status-optionsGet all possible statuses of the specified instrumentation
NetilionApiDocumentation.InstrumentationApigetInstrumentationThresholdGET /instrumentations/{instrumentation_id}/thresholds/{id}Get an instrumentation threshold
NetilionApiDocumentation.InstrumentationApigetInstrumentationThresholdsGET /instrumentations/{instrumentation_id}/thresholdsGet instrumentation thresholds
NetilionApiDocumentation.InstrumentationApigetInstrumentationTypesOptionsGET /instrumentations/{instrumentation_id}/type-optionsGet all possible types of the specified instrumentation
NetilionApiDocumentation.InstrumentationApigetInstrumentationsGET /instrumentationsGet a range of instrumentations
NetilionApiDocumentation.InstrumentationApigetNodesOfInstrumentationGET /instrumentations/{instrumentation_id}/nodesGet all nodes of one Instrumentation
NetilionApiDocumentation.InstrumentationApigetSpecificationHistoryOfInstrumentationGET /instrumentations/{instrumentation_id}/specifications/{key}/historyGet the history of one specification attribute of an instrumentation.
NetilionApiDocumentation.InstrumentationApigetSpecificationsOfInstrumentationGET /instrumentations/{instrumentation_id}/specificationsGet specifications of an instrumentation
NetilionApiDocumentation.InstrumentationApiremoveAssetsFromInstrumentationDELETE /instrumentations/{instrumentation_id}/assetsRemove assets from an instrumentation
NetilionApiDocumentation.InstrumentationApiremoveBillOfMaterialsFromInstrumentationDELETE /instrumentations/{instrumentation_id}/bill_of_materialsRemove bill of materials from an instrumentation
NetilionApiDocumentation.InstrumentationApiremoveDocumentsFromInstrumentationDELETE /instrumentations/{instrumentation_id}/documentsRemove documents from an instrumentation
NetilionApiDocumentation.InstrumentationApiremoveEventFromInstrumentationDELETE /instrumentations/{instrumentation_id}/eventsRemove events from an instrumentation
NetilionApiDocumentation.InstrumentationApiremoveNodesFromInstrumentationDELETE /instrumentations/{instrumentation_id}/nodesRemove nodes from an instrumentation
NetilionApiDocumentation.InstrumentationApiremoveSpecificationsFromInstrumentationDELETE /instrumentations/{instrumentation_id}/specificationsDelete specifications of an instrumentation
NetilionApiDocumentation.InstrumentationApirenameSpecificationsOfInstrumentationPATCH /instrumentations/{instrumentation_id}/specifications/renameRename a specification key
NetilionApiDocumentation.InstrumentationApireplaceAssetsOfInstrumentationPATCH /instrumentations/{instrumentation_id}/assetsReplace the assets of an instrumentation
NetilionApiDocumentation.InstrumentationApireplaceBillOfMaterialsOfInstrumentationPATCH /instrumentations/{instrumentation_id}/bill_of_materialsReplace the bill of materials of an instrumentation
NetilionApiDocumentation.InstrumentationApireplaceDocumentsOfInstrumentationPATCH /instrumentations/{instrumentation_id}/documentsReplace the documents of an instrumentation
NetilionApiDocumentation.InstrumentationApireplaceNodesOfInstrumentationPATCH /instrumentations/{instrumentation_id}/nodesReplace the nodes of an instrumentation
NetilionApiDocumentation.InstrumentationApiupdateInstrumentationPATCH /instrumentations/{id}Update an instrumentation
NetilionApiDocumentation.InstrumentationApiupdateInstrumentationPicturePATCH /instrumentations/{instrumentation_id}/pictures/{id}Update an instrumentation picture
NetilionApiDocumentation.InstrumentationApiupdateInstrumentationPictureLinkPATCH /instrumentations/{instrumentation_id}/pictures/links/{id}Update an instrumentation p
1.0.3

4 years ago

1.0.2

4 years ago