Skip to end of metadata
Go to start of metadata

You are viewing an old version of this page. View the current version.

Compare with Current View Page History

« Previous Version 3 Current »

The following configuration options of the common machine configuration model apply to Markforged machines.

Obtaining access credentials:

Aggregator version 1.6+

Configuration

Data

Description

Required

type

MARKFORGED

The machine's interface type.

url

https://www.eiger.io/

Eiger API base url.

custom_name

my_markforged_machine

The custom machine name to be displayed in the Agile MES. Will be read identical to the machine name if unset.

unique_name

MyPrinter

Name of the printer as shown on https://www.eiger.io/devices.

authentication_file_path

./secret.json or

JSON object

Secrets for Http Basic Authentication (see below). For files, the path can be absolute or relative to the Aggregator.

mes_id

[1]

The MES instance(s) of your organization.

Markforged machine example:

{
  "type": "MARKFORGED",
  "url": "https://www.eiger.io/",
  "custom_name": "my_markforged_machine",
  "unique_name": "MyPrinter",
  "authentication_file_path": "./secret.json", // contents as shown below
  "mes_id": [
    1
  ]
}

OR

{
  "type": "MARKFORGED",
  "url": "https://www.eiger.io/",
  "custom_name": "my_markforged_machine",
  "unique_name": "MyPrinter",
  "authentication_file_path": {
    "username": "7de1125117a312c2e0b249fafd7ed0eecc7c450a", // API Access Key
    "password": "5948782c80abcf1fd682a1c7a2b1db65b194c2ff1c39fdce664a32591743f2c74ddcf7b7"  // API Secret Key
  },
  "mes_id": [
    1
  ]
}
  • No labels