cURL
curl --request GET \ --url http://localhost:3000/api/models/{modelId}/parts \ --header 'Authorization: Bearer <token>'
[ { "label": "<string>", "requirements": [ "<string>" ], "documents": [ { "id": "<string>", "name": "<string>", "url": "<string>", "type": "pdf" } ], "attributeIds": [ "<string>" ], "notes": "<string>" } ]
Retrieves all parts associated with a specific model
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Bearer <token>
<token>
ID of the model
Filter parts by type
List of parts
The response is of type object[].
object[]