## Ensure Payroll Integration Email `employers.ensure_payroll_integration_email(stremployer_id) -> EmployerEnsurePayrollIntegrationEmailResponse` **put** `/v1/employers/{employer_id}/payroll-integration-email` Provision and return the employer's payroll integration email. ### Parameters - `employer_id: str` Unique employer identifier (empr_*) ### Returns - `class EmployerEnsurePayrollIntegrationEmailResponse: …` Response containing a single payroll integration email resource. - `data: Data` - `integration_email: str` ### Example ```python import os from vitable_connect import VitableConnect client = VitableConnect( api_key=os.environ.get("VITABLE_CONNECT_API_KEY"), # This is the default and can be omitted ) response = client.employers.ensure_payroll_integration_email( "empr_abc123def456", ) print(response.data) ``` #### Response ```json { "data": { "integration_email": "dev@stainless.com" } } ```