> ## Documentation Index
> Fetch the complete documentation index at: https://doc.raliopay.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Requirement In Review

> Webhook event fired when your response to a requirement is received and under compliance review

<Info>
  **Event Name:** `requirement_in_review`
</Info>

Your submission was received and the requirement is now being reviewed by compliance. No action is needed from you at this point — you will receive the outcome as [`requirement_approved`](/webhooks-events/order-requirement/requirement-approved), [`requirement_rejected`](/webhooks-events/order-requirement/requirement-rejected) or [`requirement_more_info`](/webhooks-events/order-requirement/requirement-more-info).

## Event Payload

The webhook payload contains the following structure:

<CodeGroup>
  ```json Example Payload theme={null}
  {
    "eventId": "a3b6c9d2-1e4f-7a8b-9c0d-1e2f3a4b5c6d",
    "eventType": "requirement_in_review",
    "timestamp": "2026-07-11T14:20:05.112Z",
    "data": {
      "requirementId": "1f2e3d4c-5b6a-4789-8abc-def012345678",
      "orderId": "e5f6a7b8-c9d0-4e1f-2a3b-4c5d6e7f8a9b",
      "merchantId": "7a1f3c5b-2d8e-4f0a-9b6c-1e3d4f5a6b7c",
      "previousState": "CREATED",
      "newState": "IN_REVIEW"
    }
  }
  ```
</CodeGroup>

<Note>
  `previousState` is `CREATED` on the first submission, or `MORE_INFO` when you responded to a request for additional information.
</Note>
