action loket_get_wage_by_wage_id { label: "Details of a single wage" description: "__Activity name :__ GetWageByWageId\n\nGet the details of a single wage\n" provider: loket method: GET path: "/providers/employers/employees/employments/wages/{wageId}" encoding: json input: { type: "object" properties: { Accept: { type: "string" } Authorization: { type: "string" } wageId: { type: "string" format: "uuid" } } required: ["Accept", "Authorization", "wageId"] additionalProperties: false } output: { type: "object" additionalProperties: true } }