> For the complete documentation index, see [llms.txt](https://docs.nymcard.com/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.nymcard.com/get-started/webhooks/webhook-changes-for-simulation.md).

# Webhook changes for simulation

We have added the ability to simulate (pre-defined successful) user’s status and to proceed for completing the user verification process ( for KYC and IDV) on the test environments (DEV, Staging, Sandbox, UAT). Below you can find respective webhook changes - the new fields in USER\_STATUS\_CHANGE & KYC\_RESULT webhooks.

Changes in USER\_STATUS\_CHANGE webhook - new "note" field:

```
// { 
"event": "USER_STATUS_CHANGE", 
"user_id": "muhaysaaduser18JAN23", 
"old_status": "PENDINGKYC", 
"old_status_reason_code": "I0", 
"new_status": "ACTIVE", 
"new_status_reason_code": "A0", 
"user_type": "INDIVIDUAL", 
"note": "service.kyc.simulation", 
"created": "2023-01-18T11:55:23.976Z" 
} 
```

Changes in KYC\_RESULT webhook - new "status\_description" field:

```
// { 
"event": "KYC_RESULT", 
"kyc_policy": "UAE_INDIVIDUAL_PRIMARY", 
"kyc_id": "performkyca18JAN2301", 
"user_id": "muhaysaaduser18JAN23", 
"note": "Some note", 
"old_status": "SUBMITTED", 
"status": "PASS", 
"status_code": "P0", 
"status_description": "service.kyc.simulation", 
"created": "2023-01-18T11:55:23.840Z", 
"modified": "2023-01-18T11:55:23.946Z" 
}
```
