Search K
Appearance
Appearance
The Get Inventor File Data node extracts detailed metadata and user-defined parameters from an Autodesk Inventor file (.ipt, .iam, or .idw).
It retrieves both Inventor Parameters and iProperties from the file, making them available to other workflow nodes for automation, reporting, or validation.
This node is commonly used for:
When executed, this node:
invService).| Field | Type | Description | Required |
|---|---|---|---|
| Local File Full Path | Text | Full path to the local Inventor file to analyze. | ✅ |
⚙️ Supported file types:
.ipt(Part),.iam(Assembly),.idw(Drawing),.ipn(Presentation)
| Output Variable | Type | Description |
|---|---|---|
| Parameters | Dictionary<string, object> | All User Parameters defined in the Inventor file, including values and units. |
| iProperties | Dictionary<string, object> | All iProperties extracted from the file (both standard and custom). |
| taskMessage | String | Message summarizing the operation (e.g., “Data extraction completed”). |
| statusReturn | String | "Completed" on success or "Fail" on error. |
{
"Parameters": {
"Width": { "Value": 120.0, "Units": "mm", "Expression": "120 mm" },
"Length": { "Value": 200.0, "Units": "mm", "Expression": "200 mm" },
"Material": { "Value": "Steel", "Units": "", "Expression": "\"Steel\"" }
},
"iProperties": {
"Part Number": "BRKT-001",
"Description": "Mounting Bracket - 120mm",
"Author": "John Smith",
"Revision Number": "B",
"Creation Date": "2025-10-07T09:32:00Z"
},
"taskMessage": "Data extraction completed - 3 parameters and 5 properties retrieved",
"statusReturn": "Completed"
}Revision = Current.| Step | Action |
|---|---|
| 1 | Validates the file exists. |
| 2 | Opens the file using the Inventor COM API via the MinuteView Publisher Service. |
| 3 | Reads all user parameters (numeric, text, or boolean). |
| 4 | Reads all iProperties (title, part number, revision, author, etc.). |
| 5 | Adds extracted data to workflow outputs. |
| Setting | Example |
|---|---|
| Local File Full Path | C:\Vault\Designs\Bracket.ipt |
Result: The node extracts all Inventor parameters (e.g., Width, Thickness, Material) and iProperties (e.g., Part Number, Description, Revision).
| Status | Description |
|---|---|
| Completed | The Inventor file was successfully read and data extracted. |
| Fail | The file could not be found or opened. |
If the task fails:
taskSuccess = false and statusReturn = "Fail".Common causes:
graph LR
A[Vault Get File] --> B[Get Inventor File Data]
B --> C[Evaluate Decision Table]
C -->|Revision OK| D[Export Inventor File (PDF)]
C -->|Revision Invalid| E[Email Notification]Category: CAD → Autodesk Inventor Task Name: GetInventorFileData