Skip to main content
GET
/
v1
/
parts
List Part
curl --request GET \
  --url https://api.example.com/v1/parts \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "view": "CONSUMER"
}
'
{
  "items": [
    {
      "id": "<string>",
      "title": "<string>",
      "serialId": 123,
      "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>"
    }
  ],
  "hasMore": true
}

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

Body

application/json
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.