> ## Documentation Index
> Fetch the complete documentation index at: https://docs.blinkops.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Retrieve Scan Results For All Scanners

Retrieve scan results for all scanners. A separate summary is returned for each scan.

<Note>
  External Documentation

  To learn more, visit the [Checkmarx One documentation](https://checkmarx.stoplight.io/docs/checkmarx-one-api-reference-guide/whqbw17zn6rg1-retrieve-scan-results-all-scanners).
</Note>

## Basic Parameters

<div className="integrations-table">
  | Parameter            | Description                                                                                                                                                                                                   |
  | -------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
  | Exclude Result Types | Select `DEV_AND_TEST` to exclude dev and test dependencies.                                                                                                                                                   |
  | Return All Pages     | Automatically fetch all resources, page by page.                                                                                                                                                              |
  | Scan ID              | The scan ID.                                                                                                                                                                                                  |
  | Severity             | The severity level to filter results by.                                                                                                                                                                      |
  | Sort                 | The field to sort the results by.<br /><br />\* Use `+` for ascending order and `-` for descending order. <br />\* The maximum number of fields to sort by is **3**.<br />\* Default: `+severity`, `+status`. |
  | State                | The scan review status to filter results by.                                                                                                                                                                  |
  | Status               | The scan occurrence status to filter results by.                                                                                                                                                              |
</div>

## Advanced Parameters

<div className="integrations-table">
  | Parameter | Description                                            |
  | --------- | ------------------------------------------------------ |
  | Limit     | The maximum number of items to return per page.        |
  | Offset    | The offset of the item at which to begin the response. |
</div>

## Example Output

```json theme={"dark"}
{
	"value": {
		"results": [
			{
				"type": "sast",
				"id": "1bb31sbYSVLxEDzwTfnlVAtj/qg=",
				"similarityId": "-70323986",
				"status": "NEW",
				"state": "TO_VERIFY",
				"severity": "HIGH",
				"confidenceLevel": 0,
				"created": "2024-11-10T14:00:55Z",
				"firstFoundAt": "2024-11-10T13:36:04Z",
				"foundAt": "2024-11-10T14:00:55Z",
				"firstScanId": "a08b682b-a425-49cc-8503-d881102cfc50",
				"description": "The JWT is not properly verified at the decode in 12 at the file /packages/plugins/users-permissions/server/services/providers-registry.js.\n",
				"data": {
					"queryId": "5199072880887211000a",
					"queryName": "JWT_No_Signature_Verification",
					"group": "JavaScript_Server_Side_Vulnerabilities",
					"resultHash": "1bb31sbYSVLxEDzwTfnlVAtj/qg=",
					"languageName": "JavaScript",
					"nodes": [
						{
							"id": "eppp0lOl2xHFRv9NHXEsId7H9N0=",
							"line": 12,
							"name": "decode",
							"column": 11,
							"length": 6,
							"method": "Cx78ef2149",
							"nodeID": 199240,
							"domType": "MethodInvokeExpr",
							"fileName": "/packages/plugins/users-permissions/server/services/providers-registry.js",
							"fullName": "CxJSNS_55a30431.jwt.decode",
							"typeName": "decode",
							"methodLine": 8,
							"definitions": "0"
						}
					]
				},
				"comments": {},
				"vulnerabilityDetails": {
					"cweId": "CWE-287",
					"compliances": [
						"OWASP Top 10 2021",
						"OWASP Top 10 API",
						"SANS top 25",
						"ASA Premium",
						"CWE top 25",
						"MOIS(KISA) Secure Coding 2021",
						"OWASP ASVS"
					]
				}
			}
		],
		"totalCount": 1
	}
}
```

## Workflow Library Example

[Retrieve Scan Results for All Scanners with Checkmarx One and Send Results Via Email](https://library.blinkops.com/workflows/retrieve-scan-results-for-all-scanners-with-checkmarx-one-and-send-results-via-email)

<div className="iframe-wrapper">
  <div className="iframe-media">
    <img src="https://mintcdn.com/blinkops-2/ojHYuDeYX5FWuN8a/img/Icons/play-box.svg?fit=max&auto=format&n=ojHYuDeYX5FWuN8a&q=85&s=b8af968e71438a9499c3223c9bd29fb2" alt="Workflow Library" width="16" height="16" data-path="img/Icons/play-box.svg" />

    Preview this Workflow on desktop
  </div>

  <iframe className="iframe" src="https://library.blinkops.com/workflows/retrieve-scan-results-for-all-scanners-with-checkmarx-one-and-send-results-via-email/canvas" />
</div>
