diff --git a/apps/dafa-web/src/app/services/api/employee.service.ts b/apps/dafa-web/src/app/services/api/employee.service.ts index 6428a96..a0a01ff 100644 --- a/apps/dafa-web/src/app/services/api/employee.service.ts +++ b/apps/dafa-web/src/app/services/api/employee.service.ts @@ -50,7 +50,7 @@ export class EmployeeService { public getDetailedEmployeeData(id: string): Observable { return this.httpClient - .get(`${this._employeeApiUrl}/${id}`, API_HEADERS) + .get(`${this._employeeApiUrl}`, { ...API_HEADERS, params: { OperatorId: id } }) .pipe(map(({ pxResults }) => mapEmployeeReponseToEmployee(pxResults[0]))); }