action loket_get_actual_wages_by_employer_id { label: "List of actual wages for an employer" description: "__Activity name:__ GetActualWagesByEmployerId\n \n\nGet the list of actual wages for an employer\n" provider: loket method: GET path: "/providers/employers/{employerId}/actualwages" encoding: json input: { type: "object" properties: { Accept: { type: "string" } Authorization: { type: "string" } employerId: { type: "string" format: "uuid" } filter: { type: "string" } orderBy: { type: "string" } pageNumber: { type: "integer" format: "int32" } pageSize: { type: "integer" format: "int32" } referenceDate: { type: "string" format: "date" } } required: ["Accept", "Authorization", "employerId"] additionalProperties: false } output: { type: "object" additionalProperties: true } }