Panorays Public API
papi (2)
- Mock serverhttps://panorays-papi-v2-documentation.redocly.app/_mock/swagger/v2/suppliers/{id}
- https://api.panoraysapp.com/v2/suppliers/{id}
- 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/{id}?fields=approval' \
-H 'Authorization: Bearer <YOUR_JWT_HERE>'Supplier found.
This field indicates the date of the most recent assessment conducted or updated. format is ISO 8601 GMT
{ "business_information": [ { … } ], "contacts": [ {} ], "questionnaires": [ { … } ], "evaluation_type": "Continuous 360 Evaluation", "latest_assessment_date": "string", "id": "string", "name": "string", "relationships": [ "string" ], "business_impact": 0, "insert_ts": "string", "created_by": "string", "approval": { "status": "PENDING", "by": "string", "update_ts": "string", "reason": "string" }, "risk": 0, "combined_score": 0, "posture_score": 0, "tags": [ "string" ], "questionnaire_overall_score": 0, "portfolios": [ "string" ], "segmentId": "string", "primary_domain": "string" }
- Mock serverhttps://panorays-papi-v2-documentation.redocly.app/_mock/swagger/v2/suppliers/{supplierId}
- https://api.panoraysapp.com/v2/suppliers/{supplierId}
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X PUT \
'https://panorays-papi-v2-documentation.redocly.app/_mock/swagger/v2/suppliers/{supplierId}' \
-H 'Authorization: Bearer <YOUR_JWT_HERE>' \
-H 'Content-Type: application/json' \
-d '{
"name": "Panorays",
"assets": [
"string"
],
"pocs": [
{
"email": "user@example.com",
"name": "string",
"language": "aa",
"position": "string",
"phone": "string"
}
],
"approval": {
"status": "PENDING",
"by": "string",
"update_ts": "string",
"reason": "string"
},
"relationships": [
"string"
],
"tags": [
"string"
],
"business_impact": 1,
"business_information": [
{
"answer": "string",
"question_id": "string"
}
],
"evaluation_type": "Continuous 360 Evaluation",
"portfolios": [
"string"
]
}'- Mock serverhttps://panorays-papi-v2-documentation.redocly.app/_mock/swagger/v2/suppliers/{supplierId}
- https://api.panoraysapp.com/v2/suppliers/{supplierId}
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X DELETE \
'https://panorays-papi-v2-documentation.redocly.app/_mock/swagger/v2/suppliers/{supplierId}' \
-H 'Authorization: Bearer <YOUR_JWT_HERE>' \
-H 'Content-Type: application/json' \
-d '{
"reason": "Supplier No Longer Required"
}'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.