Skip to main content

Verification

Verification webhooks notify you when a member verification is successful.

FieldData TypeDefinition
actionStringThis field should always equal member_data_updated.
accountsStringThe unique identifiers for the accounts in which were updated or verified during verification.
completed_atIntegerThe date and time at which the process that triggered the webhook was finished. Given in Unix time.
completed_onStringThe date on which the process that triggered the webhook was finished.
job_guidStringThe 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_guidStringThe unique identifier for the member this account is attached to. Defined by MX.
typeStringThe 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_guidStringThe unique identifier for the user the account is attached to. Defined by MX.
user_idStringThe unique partner-defined identifier for the user.

Example Payload


_21
POST /admin/webhooks
_21
HTTP/1.1
_21
content-type: application/json; charset=utf-8
_21
accept: application/json
_21
User-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
_21
Host: 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
}