Group Products with Parts
Add a part
curl https://api.interlynk.io/lynkapi \
-H "Authorization: Bearer $INTERLYNK_SECURITY_TOKEN" \
-H "Content-Type: application/json" \
-d '{
"query": "mutation AddPart($parent: Uuid!, $part: Uuid!) { sbomPartCreate(input: { parentSbomId: $parent, partSbomId: $part }) { sbomPart { id } errors } }",
"variables": {
"parent": "b5c023fe-1def-4204-8d5f-f6d277c6fe2f",
"part": "e55baffc-5b30-4071-acc2-9792a4a682bc"
}
}'{
"data": {
"sbomPartCreate": {
"sbomPart": { "id": "cbf8c489-d752-46a9-b4ca-a548351f23c5" },
"errors": null
}
}
}Input
Type
Required
List the parts on a version
Remove a part
Notes
Last updated