Demographics Data Change Webhook
Summary
This webhook will trigger when an underwriter has clicked the Save and Close button on the Merchant Details modal in an application, or when an application is submitted. All custom fields in the application are sent in the response.
If an underwriter clicks Save and Close without changing any information in the application, the webhook is still triggered.
Response Schema
| Field | Type | Description |
|---|---|---|
| Type | Integer | 7 |
| EventIdentifier | String | DemographicsDataChange |
| EventData | Object | |
| Id | Integer | |
| MerchantApplicationId | Integer | The merchant application id |
| MerchantIdentifier | String | The merchant application id |
| ApplicationStatusLabel | String | Values include Incomplete, Approved, Acquirer Review, New Pend, Follow Up, Re-Pend, Approved and Boarded, and Pre-Generated. |
| ApplicationStatus | Integer | The integer value of the merchant application's status. Values include 0 = Incomplete, 1 = Approved, 2 = Acquirer Review, 3 = New Pend, 4 = Follow Up, 5 = Re-Pend, 7 = Approved and Boarded, and 12 = Pre-Generated. |
| ExternalApplicationIdentifier | String | The unique id created by the Payfac and set when the merchant application is created via API. |
| EventData.Custom.Fields | Array | |
| CustomFields | Object | Each custom field is its own object |
| Id | Integer | The id of the custom field. |
| UserDefinedId | String | The id of the custom field defining display order. |
| Value | Object | |
| Value | String | The values of the custom field provided in the merchant application. |
Example Response
{
"Type": 7,
"EventIdentifier": "DemographicDataChange",
"EventData": {
"Id": 82908,
"MerchantApplicationId": 82908,
"MerchantIdentifier": "82908",
"ApplicationStatusLabel": "NewPend",
"ApplicationStatus": 3,
"ExternalApplicationIdentifier": null,
"CustomFields": [
{
"Id": 17185,
"UserDefinedId": "legal.name",
"Value": {
"Value": "Main Location"
}
},
{
"Id": 17186,
"UserDefinedId": "legal.dba",
"Value": {
"Value": "Main Location"
}
},
{
"Id": 17270,
"UserDefinedId": "owner1.title",
"Value": {
"Value": "Prez"
}
},
{
"Id": 17198,
"UserDefinedId": "owner1.name",
"Value": {
"FirstName": "M",
"MiddleName": "I",
"LastName": "Link"
}
},
{
"Id": 17266,
"UserDefinedId": "owner1.perc",
"Value": {
"Value": "100"
}
},
{
"Id": 17202,
"UserDefinedId": "owner1.ssn",
"Value": {
"Value": "123456789"
}
},
{
"Id": 17199,
"UserDefinedId": "owner1.dob",
"Value": {
"Month": "12",
"Day": "17",
"Year": "1962"
}
},
{
"Id": 17200,
"UserDefinedId": "owner1.address",
"Value": {
"Country": "US",
"Street1": "123 Easy St",
"Street2": "",
"City": "Denver",
"State": "CO",
"Zip": "80228"
}
},
{
"Id": 17201,
"UserDefinedId": "owner1.phone",
"Value": {
"Value": "8005551234"
}
},
{
"Id": 17240,
"UserDefinedId": "owner1.email",
"Value": {
"Value": "[email protected]"
}
}
],
"InfiniceptMerchantIdentifier": "413d739f-d8ee-445d-a12d-208d04d3ba91",
"Created": "2021-06-21T18:18:33.687",
"Completed": "2021-06-21T18:30:20.693"
}
}Updated 5 months ago
