# Get an employer by id Endpoint: GET /api/v1/employers/{id} Version: 0.0.1 Security: bearerAuth ## Path parameters: - `id` (string, required) ## Response 200 fields (application/json): - `id` (string, required) - `name` (string, required) - `ein` (string,null) - `dba_name` (string,null) - `phone` (string,null) - `employee_count` (number,null) - `entity_structure` (string,null) Enum: "sole_proprietorship", "partnership", "llc", "corporation", "nonprofit", "cooperative", "professional_corporation" - `naics_code` (string,null) - `address` (object,null) - `address.street` (string, required) - `address.secondary` (string,null) - `address.city` (string, required) - `address.state` (string, required) - `address.zip` (string,null) - `address.country` (string, required) 3 letter country code - `address.full_address` (string,null) - `custom_attributes` (object, required) Custom attribute values - `active_theme_id` (string,null) - `created_at` (string, required) - `updated_at` (string, required) ## Response 401 fields (application/json): - `message` (string, required) Enum: "Not authorized" ## Response 404 fields (application/json): - `message` (string, required) Enum: "Employer not found"