Skip to main content
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
JSON
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"
}