List Products and Versions
List your products
curl https://api.interlynk.io/lynkapi \
-H "Authorization: Bearer $INTERLYNK_SECURITY_TOKEN" \
-H "Content-Type: application/json" \
-d '{
"query": "query ListProducts($first: Int) { organization { projectGroups(first: $first, enabled: true, orderBy: { field: PROJECT_GROUPS_UPDATED_AT, direction: DESC }) { totalCount nodes { id name projects { nodes { id name sboms { id projectVersion vulnRunStatus primaryComponent { name version } } } } } } } }",
"variables": { "first": 25 }
}'{
"data": {
"organization": {
"projectGroups": {
"totalCount": 3,
"nodes": [
{
"id": "26ae44b7-2f68-4cf4-a405-d5ee0177bb11",
"name": "payments-service",
"projects": {
"nodes": [
{
"id": "1fade833-0603-4139-8ca0-26592264a4c9",
"name": "default",
"sboms": [
{
"id": "4e423fe0-d089-4025-b1e4-8fe9608138d6",
"projectVersion": "3.0.2",
"vulnRunStatus": "FINISHED",
"primaryComponent": { "name": "payments-service", "version": "3.0.2" }
}
]
},
{ "id": "d845527f-f794-4120-97e3-ee350ee6638f", "name": "development", "sboms": [] },
{ "id": "0554ca34-ae9c-48f4-bc94-d14269214a43", "name": "production", "sboms": [] }
]
}
}
]
}
}
}
}Find one product by name
Pagination
Next steps
Last updated