action loket_get_employment_by_employment_id { label: "Details of an employment" description: "__Activity name :__ GetEmploymentByEmploymentId\n\nGet the details for an employment\n" provider: loket method: GET path: "/providers/employers/employees/employments/{employmentId}" encoding: json input: { type: "object" properties: { Accept: { type: "string" } Authorization: { type: "string" } employmentId: { type: "string" format: "uuid" } } required: ["Accept", "Authorization", "employmentId"] additionalProperties: false } output: { type: "object" additionalProperties: true } }