## Ensure Payroll Integration Email `employers.ensure_payroll_integration_email(employer_id) -> EmployerEnsurePayrollIntegrationEmailResponse` **put** `/v1/employers/{employer_id}/payroll-integration-email` Provision and return the employer's payroll integration email. ### Parameters - `employer_id: String` Unique employer identifier (empr_*) ### Returns - `class EmployerEnsurePayrollIntegrationEmailResponse` Response containing a single payroll integration email resource. - `data: { integration_email}` - `integration_email: String` ### Example ```ruby require "vitable_connect" vitable_connect = VitableConnect::Client.new( api_key: "My API Key", environment: "environment_1" # defaults to "production" ) response = vitable_connect.employers.ensure_payroll_integration_email("empr_abc123def456") puts(response) ``` #### Response ```json { "data": { "integration_email": "dev@stainless.com" } } ```