cURL
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 }
List multiple parts with pagination.
Page number for pagination, starting at 1.
x >= 1
Page size for pagination.
1 <= x <= 50
View mode for listing parts.
CONSUMER
IP_OWNER
The request has succeeded.
List of items.
Show child attributes
Whether there are more items to fetch.