Returns the project related scans
Platform API 3.0
/- Get Security Alerts By Library
Get Project Scans
Get Scan
Get Scan Summary
Get Scan Tags
Get Scan Security Findings
Get Root Libraries Security Finding
Get Security Alerts By Li...
Mend API (3.0)
Mend's enhanced API enables automation of workflows in a REST compliant format. The API features:
- Access for any user with Mend credentials, via a user key available in the user's profile page in the Mend Platform.
- Improved security with a JWT token per organization, which expires every 30 minutes.
- Added scalability with support for cursor pagination and limiting results size.
- Broader functionality available programmatically.
- New standard API documentation for easy navigation and search.
If you have a dedicated instance of Mend, contact your Mend representative to access this API on your instance.
Note: To help you get started with the Mend API 3.0, we recommend reviewing our onboarding guide -> Getting Started with API 3.0. This resource covers initial setup, authentication instructions, and helpful tips to help you successfully begin working with the Mend API 3.0.
- Generated server urlhttps://baseUrl/api/v3.0/orgs/{orgUuid}/projects/{projectUuid}/scans
- Payload
- cURL
- JS
- Go
- Ruby
- Java 8
No request payloadResponse
application/json
{ "additionalData": { "totalItems": "422", "next": "http://someUrl?cursor=3", "cursor": 3 }, "supportToken": "1171c60d", "response": [ { … } ] }
- Generated server urlhttps://baseUrl/api/v3.0/orgs/{orgUuid}/projects/{projectUuid}/scans/{scanUuid}
- Payload
- cURL
- JS
- Go
- Ruby
- Java 8
No request payloadResponse
application/json
{ "supportToken": "1171c60d", "response": { "uuid": "string", "name": "string", "engine": "UNIFIED", "status": "RUNNING", "projectId": 0, "productId": 0, "domainId": 0, "projectUuid": "string", "processUuid": "string", "hasViolations": true, "startTime": "2019-08-24T14:15:22Z", "endTime": "2019-08-24T14:15:22Z", "lastModified": "2019-08-24T14:15:22Z", "configurationName": "string", "reference": "string", "triggeredBy": "string", "agentInfo": { … } } }
- Generated server urlhttps://baseUrl/api/v3.0/orgs/{orgUuid}/projects/{projectUuid}/scans/{scanUuid}/summary
- Payload
- cURL
- JS
- Go
- Ruby
- Java 8
No request payloadResponse
application/json
{ "supportToken": "1171c60d", "response": { "uuid": "string", "name": "string", "processUuid": "string", "scanTime": "2019-08-24T14:15:22Z", "scanStatus": "string", "engine": "UNIFIED", "scanDuration": "string", "configurationName": "string", "reference": "string", "triggeredBy": "string", "agentName": "string", "agentVersion": "string", "supportToken": "string", "projectName": "string", "projectUuid": "string", "tags": [ … ], "applicationName": "string", "applicationUuid": "string", "workflowUuids": [ … ], "workflowNames": [ … ], "statistics": { … } } }
- Generated server urlhttps://baseUrl/api/v3.0/orgs/{orgUuid}/projects/{projectUuid}/scans/{scanUuid}/dependencies/findings/security
- Payload
- cURL
- JS
- Go
- Ruby
- Java 8
No request payloadResponse
application/json
{ "additionalData": { "totalItems": "422", "next": "http://someUrl?cursor=3", "cursor": 3 }, "supportToken": "1171c60d", "response": [ { … } ] }
Request
Returns all security alerts for a given scan, including library and severity information, arranged by library
Security
bearer-key
- Generated server urlhttps://baseUrl/api/v3.0/orgs/{orgUuid}/projects/{projectUuid}/scans/{scanUuid}/dependencies/findings/security/groupBy/library
- Payload
- cURL
- JS
- Go
- Ruby
- Java 8
No request payloadResponse
application/json
{ "additionalData": { "totalItems": "422", "next": "http://someUrl?cursor=3", "cursor": 3 }, "supportToken": "1171c60d", "response": [ { … } ] }
- Generated server urlhttps://baseUrl/api/v3.0/orgs/{orgUuid}/projects/{projectUuid}/scans/{scanUuid}/dependencies/findings/security/groupBy/rootLibrary
- Payload
- cURL
- JS
- Go
- Ruby
- Java 8
No request payloadResponse
application/json
{ "additionalData": { "totalItems": "422", "next": "http://someUrl?cursor=3", "cursor": 3 }, "supportToken": "1171c60d", "response": [ { … } ] }