Panorays Public API
- Get supplier's assessment report
Get company finding
Get company findings
Get supplier's report
Get supplier finding by id
Get supplier's findings
Get supplier's assessment...
papi (2)
Download OpenAPI description
Overview
Support
Languages
Servers
Mock server
https://panorays-papi-v2-documentation.redocly.app/_mock/swagger
https://api.panoraysapp.com
- Mock serverhttps://panorays-papi-v2-documentation.redocly.app/_mock/swagger/v2/suppliers/{supplierId}/findings
- https://api.panoraysapp.com/v2/suppliers/{supplierId}/findings
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X GET \
'https://panorays-papi-v2-documentation.redocly.app/_mock/swagger/v2/suppliers/{supplierId}/findings?limit=200&sortBy=status&sortDirection=ASC&next_token=string&fields=id&status=string&severity=string&asset_name=string&id=string&sub_category=string&segments=string&test_name=string' \
-H 'Authorization: Bearer <YOUR_JWT_HERE>'Response
application/json
[ { "status": "OPEN", "severity": "LOW", "id": "string", "metadata": {}, "cves": [ … ], "asset_name": "string", "category": "string", "sub_category": "string", "test_text": "string", "finding_text": "string", "description": "string", "insert_ts": "string", "update_ts": "string", "test_name": "string", "segments": [ … ] } ]
- Mock serverhttps://panorays-papi-v2-documentation.redocly.app/_mock/swagger/v2/suppliers/{supplierId}/report/summary
- https://api.panoraysapp.com/v2/suppliers/{supplierId}/report/summary
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X GET \
'https://panorays-papi-v2-documentation.redocly.app/_mock/swagger/v2/suppliers/{supplierId}/report/summary?lang=en&postureOnly=true' \
-H 'Authorization: Bearer <YOUR_JWT_HERE>'Getting Started
The following steps will walk you through the process of registering and reacting to webhooks.
If you don’t already have an API token, you can generate one through Panorays platform or contact Panorays Support at support@panorays.com.
Before you can start receiving events, register your application with Panorays using the Handshake API call.
You will only receive event calls for events you subscribe to using the Subscribe API call.
Note: You can unsubscribe at any time using the Unsubscribe API call.
You're done! From now on, you will receive notifications for every event you subscribed to.
To learn how to secure your app and ensure you handle events only from Panorays, read about Verifying requests.