## Retrieve Payroll Access Setup **get** `/v1/employers/{employer_id}/payroll-access-setup` Return whether the employer has submitted payroll access setup. ### Path Parameters - `employer_id: string` Unique employer identifier (empr_*) ### Returns - `data: { completed, submitted_at }` - `completed: boolean` - `submitted_at: string` ### Example ```http curl https://api.vitablehealth.com/v1/employers/$EMPLOYER_ID/payroll-access-setup \ -H "Authorization: Bearer $VITABLE_CONNECT_API_KEY" ``` #### Response ```json { "data": { "completed": true, "submitted_at": "2019-12-27T18:11:19.117Z" } } ```