The following configuration options of the common machine configuration model apply to Markforged machines.
Obtaining access credentials:
Create an API token. See https://eiger-api.readme.io/docs/getting-started#adding-api-tokens for instructions.
Use the API Access Key as
username
and the API Secret Key aspassword
in the below configuration.
Aggregator version 1.6+
Configuration | Data | Description | Required |
---|---|---|---|
|
| The machine's interface type. | ✓ |
|
| Eiger API base url. | ✓ |
|
| The custom machine name to be displayed in the Agile MES. Will be read identical to the machine name if unset. | ✗ |
|
| Name of the printer as shown on https://www.eiger.io/devices. | ✓ |
|
| Secrets for Http Basic Authentication (see below). For files, the path can be absolute or relative to the Aggregator. | ✓ |
|
| 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 ] }