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

# Verification

Verification webhooks notify you when a `member` verification is successful.

| Field          | Data Type | Definition                                                                                                                                                                                  |
| :------------- | :-------- | :------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ |
| `action`       | String    | This field should always equal member\_data\_updated.                                                                                                                                       |
| `accounts`     | String    | The unique identifiers for the accounts in which were updated or verified during verification.                                                                                              |
| `completed_at` | Integer   | The date and time at which the process that triggered the webhook was finished. Given in Unix time.                                                                                         |
| `completed_on` | String    | The date on which the process that triggered the webhook was finished.                                                                                                                      |
| `job_guid`     | String    | The unique identifier for MX's internal verification process. Defined by MX.<br /><br />This field is not relevant if you're using the Platform API and should be ignored.                  |
| `member_guid`  | String    | The unique identifier for the member this account is attached to. Defined by MX.                                                                                                            |
| `type`         | String    | The type of webhook being delivered. Current possible values are `AGGREGATION`, `BALANCE`, `HISTORY`, `STATEMENT`, and `VERIFICATION`; however, additional values may be added at any time. |
| `user_guid`    | String    | The unique identifier for the user the account is attached to. Defined by MX.                                                                                                               |
| `user_id`      | String    | The unique partner-defined identifier for the user.                                                                                                                                         |

**Example Payload**

```json JSON theme={null}
POST /admin/webhooks
HTTP/1.1
content-type: application/json; charset=utf-8
accept: application/json
User-Agent: HTTPClient/1.0 (2.7.1, ruby 2.2.2
(2015-09-02)) Date: Thu, 14 Apr 2018 04:26:04 GMT Content-Length: 231
Host: abc.com

{
  "type": "VERIFICATION",
  "accounts": [
    "ACT-6836c1bb-a651-4a16-bb41-30e3b7e20e3f"
  ],
  "action": "member_data_updated",
  "user_guid": "USR-4807288e-fe86-485f-8844-54dc9cdf96dc",
  "user_id": "cragro-postman-user",
  "member_guid": "MBR-1a78d6bd-69cc-449c-9748-f273aaeedace",
  "job_guid": "JOB-647d4f6b-a549-4b32-af48-1efaa2e143a5",
  "completed_at": 1701368571,
  "completed_on": "2023-11-30"
}
```
