Panorays Public API
papi (2)
Name of the field to sort by
The direction of the field sort specified by sort_by
- Mock serverhttps://panorays-papi-v2-documentation.redocly.app/_mock/swagger/v2/suppliers/{supplierId}/segment/{segmentId}/questionnaires
- https://api.panoraysapp.com/v2/suppliers/{supplierId}/segment/{segmentId}/questionnaires
- 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}/segment/{segmentId}/questionnaires?limit=20&sortBy=questionnaire_id&sortDirection=ASC&next_token=string&questionnaire_type=external&fields=questionnaire_id&template_names=string' \
-H 'Authorization: Bearer <YOUR_JWT_HERE>'[ { "questionnaire_id": "string", "template_name": "string", "completion_rate": 1, "status": "SENT", "ttl": "string", "questionnaire_type": "external", "status_update_date": "string", "created_by": "string", "score": 0, "weight": 0, "questionnaire_submit_date": "string", "questionnaire_sent_date": "string" } ]
- Mock serverhttps://panorays-papi-v2-documentation.redocly.app/_mock/swagger/v2/suppliers/{supplierId}/questionnaires/{questionnaireId}
- https://api.panoraysapp.com/v2/suppliers/{supplierId}/questionnaires/{questionnaireId}
- 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}/questionnaires/{questionnaireId}?questionnaire_type=external&fields=score&language=en&out_of_policy_only=true' \
-H 'Authorization: Bearer <YOUR_JWT_HERE>'{ "status": "SENT", "score": 0, "ttl": "string", "questions": [ { … } ], "questionnaire_type": "external", "id": "string", "template_name": "string" }
ttl is the due date specified by the the evaluator. defaults to 30 days from now
- Mock serverhttps://panorays-papi-v2-documentation.redocly.app/_mock/swagger/v2/suppliers/{supplierId}/questionnaires/{questionnaireId}
- https://api.panoraysapp.com/v2/suppliers/{supplierId}/questionnaires/{questionnaireId}
- 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}/questionnaires/{questionnaireId}' \
-H 'Authorization: Bearer <YOUR_JWT_HERE>' \
-H 'Content-Type: application/json' \
-d '{
"note": "string",
"ttl": "2026-02-11T08:41:54.837Z",
"questionnaire_type": "internal"
}'{ "questionnaire_id": {}, "status": "string", "ttl": "2019-08-24T14:15:22Z", "template_name": "string", "weight": 0, "created_by": "string", "status_update_date": "2019-08-24T14:15:22Z", "completion_rate": 0, "questionnaire_type": "string" }
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.