# MVS Events List
source: https://developer.mastercard.com/open-finance-us/documentation/webhooks/webhooks-connect/webhooks-events-mvs/index.md

## employerFound {#employerfound}

|     Name      |                     Mastercard Data Connect Support                     |                                                                  Description                                                                  |
|---------------|-------------------------------------------------------------------------|-----------------------------------------------------------------------------------------------------------------------------------------------|
| employerFound | Generate Data Connect Full / Fix / Data Connect Full -- Joint Borrowers | Sent when employment records matching the customer's Social Security number (SSN) and date of birth (DOB) are found in the payroll providers. |

* JSON

```JSON
{
  "customerId": "1013916100",
  "consumerId": "06a46d02b9851829ca53946be1da8200",
  "eventType": "employerFound",
  "eventId": "1602696485261-d299df6440556091e1d0531c",
  "payload": {
    "numEmployers": 1
  }
}
```

## employerNotFound {#employernotfound}

|       Name       |                     Mastercard Data Connect Support                     |                                            Description                                             |
|------------------|-------------------------------------------------------------------------|----------------------------------------------------------------------------------------------------|
| employerNotFound | Generate Data Connect Full / Fix / Data Connect Full -- Joint Borrowers | Sent when the customer's SSN and DOB don't match any employment records from the payroll provider. |

* JSON

```JSON
{
  "customerId": "1013916100",
  "consumerId": "06a46d02b9851829ca53946be1da8200",
  "eventType": "employerFound",
  "eventId": "1602696485261-d299df6440556091e1d0531c",
  "payload": {
    "numEmployers": 1
  }
}
```

## payrollAccountsAdded {#payrollaccountsadded}

|         Name         |                  Mastercard Data Connect Support                  |                                     Description                                      |
|----------------------|-------------------------------------------------------------------|--------------------------------------------------------------------------------------|
| payrollAccountsAdded | Generate Data Connect Full / Data Connect Full -- Joint Borrowers | Sent when the user completes the credentialed payroll account connection experience. |

* JSON

```JSON
{
  "customerId": "1013916100",
  "consumerId": "06a46d02b9851829ca53946be1da8200",
  "eventType": "payrollAccountsAdded",
  "eventId": "1602696485261-d299df6440556091e1d0531c",
  "payload": {
    "payrollAccountIds": [
      "0193d0ab-9473-3e6d-58d2-039d6dafda45"
    ]
  }
}
```

## payrollError {#payrollerror}

|     Name     |                     Mastercard Data Connect Support                     |                                                                     Description                                                                     |
|--------------|-------------------------------------------------------------------------|-----------------------------------------------------------------------------------------------------------------------------------------------------|
| payrollError | Generate Data Connect Full / Fix / Data Connect Full -- Joint Borrowers | Sent when an error occurs while making a request to the payroll connector service. The error code and message are included in the response payload. |

Error Codes:

* 400: The consumer record doesn't match the Social Security number (SSN) and date of birth (DOB) passed to Data Connect.
* 500: An unexpected error has occurred.

* JSON

```JSON
{
  "customerId": "1013916100",
  "consumerId": "06a46d02b9851829ca53946be1da8200",
  "eventType": "payrollError",
  "eventId": "1602696010692-ac29d9e8e1dbeee869e1b46d",
  "payload": {
    "error": 400,
    "message": "Please provide valid ssn and date of Birth for customer 1013916100"
  }
}
```

## payrollSearch {#payrollsearch}

|     Name      |                     Mastercard Data Connect Support                     |                                       Description                                        |
|---------------|-------------------------------------------------------------------------|------------------------------------------------------------------------------------------|
| payrollSearch | Generate Data Connect Full / Fix / Data Connect Full -- Joint Borrowers | Sent when the customer enters their SSN and DOB to search for their payroll information. |

* JSON

```JSON
{
  "customerId": "1013916100",
  "consumerId": "06a46d02b9851829ca53946be1da8200",
  "eventType": "employerFound",
  "eventId": "1602696485261-d299df6440556091e1d0531c",
  "payload": {
    "numEmployers": 1
  }
}
```

