Skip to main content
GET
/
v1
/
parts
List Part
curl --request GET \
  --url https://api.lab.fieldnode.dev/v1/parts \
  --header 'Authorization: Bearer <token>'
{
  "items": [
    {
      "id": "<string>",
      "title": "<string>",
      "serialId": "<string>",
      "ipOwnerId": "<string>",
      "internal": true,
      "published": true,
      "requireSubscription": true,
      "keywords": [
        "<string>"
      ],
      "createdTime": "2023-11-07T05:31:56Z",
      "modifiedTime": "2023-11-07T05:31:56Z",
      "parentId": "<string>",
      "versionName": "<string>",
      "externalRef": "<string>",
      "description": "<string>",
      "processId": "<string>",
      "materialId": "<string>",
      "standardIds": [
        "<string>"
      ],
      "criticalityIds": [
        "<string>"
      ],
      "categoryIds": [
        "<string>"
      ],
      "dimensions": {
        "width": 123,
        "height": 123,
        "depth": 123,
        "innerDiameter": 123,
        "outerDiameter": 123
      }
    }
  ],
  "hasMore": true
}

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.

Query Parameters

page
integer<int32>
default:1

Page number for pagination, starting at 1.

Required range: x >= 1
pageSize
integer<int32>
default:10

Page size for pagination.

Required range: 1 <= x <= 50
view
enum<string>
default:CONSUMER

View mode for listing parts.

Available options:
CONSUMER,
IP_OWNER

Response

The request has succeeded.

items
object[]
required

List of items.

hasMore
boolean
required

Whether there are more items to fetch.