Skip to main content
POST
/
v1
/
parts
Create Part
curl --request POST \
  --url https://api.lab.fieldnode.dev/v1/parts \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "title": "<string>",
  "externalRef": "<string>",
  "description": "<string>",
  "requireSubscription": true,
  "materialType": "metal",
  "materialId": "<string>",
  "processId": "<string>",
  "materialNote": "<string>",
  "processNote": "<string>",
  "standardIds": [
    "<string>"
  ],
  "criticalityIds": [
    "<string>"
  ],
  "categoryIds": [
    "<string>"
  ],
  "keywords": [
    "<string>"
  ],
  "internal": true,
  "rapidManufacturingMaterial": "<string>",
  "exemptionsNotes": "<string>",
  "documentationRequirementNotes": "<string>",
  "otherRequirementNotes": "<string>",
  "descriptionManufacturer": "<string>",
  "unitSystem": "METRIC",
  "businessUnitIds": [
    "<string>"
  ]
}
'
{
  "partUrl": "<string>",
  "id": "<string>"
}

Documentation Index

Fetch the complete documentation index at: https://developer.fieldnode.com/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Body

application/json
title
string

Title of the part.

externalRef
string

External reference for the part.

description
string

Description of the part.

requireSubscription
boolean

Whether the part requires a subscription.

materialType
enum<string>

Material type of the part.

Available options:
metal,
polymer,
ceramic,
composite,
sand,
wax,
other
materialId
string

Material ID.

processId
string

Process ID.

materialNote
string

Material note.

processNote
string

Process note.

standardIds
string[]

Standard IDs.

criticalityIds
string[]

Criticality IDs.

categoryIds
string[]

Category IDs.

keywords
string[]

Keywords.

internal
boolean

Whether the part is internal.

rapidManufacturingMaterial
string

Rapid manufacturing material.

exemptionsNotes
string

Exemptions notes.

documentationRequirementNotes
string

Documentation requirement notes.

otherRequirementNotes
string

Other requirement notes.

descriptionManufacturer
string

Description for manufacturer.

unitSystem
enum<string>

Unit system.

Available options:
METRIC,
IMPERIAL
businessUnitIds
string[]

Business unit IDs.

Response

The request has succeeded.

partUrl
string
required

Absolute or root-relative URL to the part in the web app (e.g. {webapp_origin}/app/parts/{part_id}).

id
string
required

ID of the created part.