Review Notes
Get Review Notes
Section titled “Get Review Notes”This endpoint retrieves all review notes for a specific review type. Currently only supports “reggora” as the review_type. Only returns notes with review_note_type='lender' that are associated with lender-visible submissions.
HTTP Request
Section titled “HTTP Request”GET https://sandbox.reggora.io/lender/review/<review_type>/notes
URL Parameters
Section titled “URL Parameters”| Parameter | Description |
|---|---|
| review_type | The type of review notes to retrieve. Currently only supports “reggora”. |
Query Parameters
Section titled “Query Parameters”| Parameter | Default | Description |
|---|---|---|
| order_id | None | Filter notes by order ID (required). |
| submission_version | None | Filter notes by submission version (optional). |
Response Fields
Section titled “Response Fields”| Field | Description |
|---|---|
| id | The unique identifier for the review note. |
| body | The text content of the review note. |
| order_id | The ID of the order associated with the note. |
| submission_version | The submission version the note is associated with. |
| last_edited | The timestamp when the note was last edited (if applicable). |
Example Request
Section titled “Example Request”import requests
headers = { 'Authorization': 'Bearer {}'.format(REGGORA_AUTH_TOKEN), 'integration': '{}'.format(REGGORA_INTEGRATION_KEY)}
# Example query parametersquery_params = { 'order_id': '688d421b2bfb82f7c92d4982', 'submission_version': '1'}
response = requests.get('https://sandbox.reggora.io/lender/review/reggora/notes', params=query_params, headers=headers)Example Response
Section titled “Example Response”{ "status": 200, "data": { "count": 1, "results": [ { "id": "688d46fe148f8c02179954f5", "body": "This is a review note for the lender.", "order_id": "688d421b2bfb82f7c92d4982", "submission_version": 1, "last_edited": "2025-08-01 23:00:14.024000" } ] }}