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. 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
_21POST /admin/webhooks_21HTTP/1.1_21content-type: application/json; charset=utf-8_21accept: application/json_21User-Agent: HTTPClient/1.0 (2.7.1, ruby 2.2.2_21(2015-09-02)) Date: Thu, 14 Apr 2018 04:26:04 GMT Content-Length: 231_21Host: abc.com_21_21{_21 "type": "VERIFICATION",_21 "accounts": [_21 "ACT-6836c1bb-a651-4a16-bb41-30e3b7e20e3f"_21 ],_21 "action": "member_data_updated",_21 "user_guid": "USR-4807288e-fe86-485f-8844-54dc9cdf96dc",_21 "user_id": "cragro-postman-user",_21 "member_guid": "MBR-1a78d6bd-69cc-449c-9748-f273aaeedace",_21 "job_guid": "JOB-647d4f6b-a549-4b32-af48-1efaa2e143a5",_21 "completed_at": 1701368571,_21 "completed_on": "2023-11-30"_21}