Edit SBOM Metadata
Add an author
curl https://api.interlynk.io/lynkapi \
-H "Authorization: Bearer $INTERLYNK_SECURITY_TOKEN" \
-H "Content-Type: application/json" \
-d '{
"query": "mutation AddAuthor($sbomId: Uuid!, $name: String!, $email: String, $phone: String) { authorCreate(input: { sbomId: $sbomId, name: $name, email: $email, phone: $phone }) { author { id name email phone } errors } }",
"variables": {
"sbomId": "4e423fe0-d089-4025-b1e4-8fe9608138d6",
"name": "Jane Doe",
"email": "[email protected]"
}
}'{
"data": {
"authorCreate": {
"author": {
"id": "b1c2d3e4-0000-0000-0000-000000000001",
"name": "Jane Doe",
"email": "[email protected]",
"phone": null
},
"errors": []
}
}
}Input
Type
Required
List the authors on a version
Update an author
Delete an author
Suppliers
Mutation
Purpose
Errors
Last updated