> **Source:** https://knowledge.leegality.com/document-execution/api/review-nesl-notification > **Site:** Leegality Knowledge Base — https://knowledge.leegality.com > **About:** Leegality is a document execution platform covering eSigning, stamps, NeSL, workflows, and REST API integration. > **Navigation:** Every article on this site has a plain-text version at `.txt` (this format). To get an index of all articles with their `.txt` links, read: https://knowledge.leegality.com/llms.txt > **AI Guide:** For instructions on how to navigate this knowledge base as an AI agent, read: https://knowledge.leegality.com/ai-readable.txt --- # POST /v3.3/nesl/notification/review — Review eBG notification Approves or rejects an eBG event notification. **Authentication:** `X-Auth-Token` header required on every request. ## Request URL ``` POST https://app1.leegality.com/api/v3.3/nesl/notification/review ``` **Environments:** - Production: `https://app1.leegality.com/api/v3.3/nesl/notification/review` - Sandbox: `https://sandbox.leegality.com/api/v3.3/nesl/notification/review` --- ## Request Body **Content-Type:** `application/json` Request body for reviewing an eBG event notification. | Field | Type | Required | Description | Example | |-------|------|----------|-------------|---------| | `data` | object | No | Review details for the eBG notification. See **data** below. | — | #### data Review details for the eBG notification. | Field | Type | Required | Description | Example | |-------|------|----------|-------------|---------| | `requestId` | string | No | Unique identifier for the request. | — | | `loanNumber` | string | No | The loan number associated with the eBG notification. | — | | `reviewStatus` | string | No | Status of the review. Allowed: `Accepted`, `Rejected`. | — | | `reviewRemarks` | string | No | Remarks or comments provided during the review. | — | | `notifTxnId` | string | No | Unique transaction ID of the notification to be reviewed. | — | ### Sample Request ```json { "data": { "requestId": "string", "loanNumber": "string", "reviewStatus": "Accepted", "reviewRemarks": "string", "notifTxnId": "string" } } ``` --- ## Responses ### 200 — eBG notification review response. Response for the Review eBG Notification API. | Field | Type | Required | Description | Example | |-------|------|----------|-------------|---------| | `data` | object | No | Response data object. Empty on success. | — | | `messages` | array\ | No | Contains details about the response message. See **messages** below. | — | | `status` | integer | No | Indicates API response status. `1` means success. | `1` | #### messages | Field | Type | Required | Description | Example | |-------|------|----------|-------------|---------| | `code` | string | Yes | Response code. | `ebg.notification.review.success` | | `message` | string | Yes | Review confirmation message. | `eBG notification review success.` | ### Sample Response (200) ```json { "data": {}, "messages": [ { "code": "ebg.notification.review.success", "message": "eBG notification review success." } ], "status": 1 } ```