action loket_get_company_car_by_company_car_id { label: "Details of a company car record" description: "__Activity name:__ GetCompanyCarByCompanyCarId\n\n\n Get the details of a company car \n\n\nPlease note this resource is related for the registration of the company car for HRM purposes. This resource is NOT related to the registration of the fiscal company car(s) which is used in salary calculations.\n" provider: loket method: GET path: "/providers/employers/employees/employments/companycars/{companyCarId}" encoding: json input: { type: "object" properties: { Accept: { type: "string" } Authorization: { type: "string" } companyCarId: { type: "string" format: "uuid" } } required: ["Accept", "Authorization", "companyCarId"] additionalProperties: false } output: { type: "object" additionalProperties: true } }