action payrun_get_commentary_from_employee { label: "Get commentary from employee" description: "Gets the specified commentary report from the employee" provider: payrun method: GET path: "/Employer/{EmployerId}/Employee/{EmployeeId}/Commentary/{CommentaryId}" encoding: json input: { type: "object" properties: { "Api-Version": { type: "string" format: "string" } Authorization: { type: "string" format: "string" } CommentaryId: { type: "string" } EmployeeId: { type: "string" } EmployerId: { type: "string" } } required: ["Api-Version", "Authorization", "CommentaryId", "EmployeeId", "EmployerId"] additionalProperties: false } output: { type: "object" properties: { Commentary: { type: "object" properties: { Created: { type: "string" format: "date-time" description: "The commentarys' created" } Detail: { type: "string" description: "The commentarys' detail" } Employee: { type: "object" description: "The commentarys' employee" properties: { "@href": { type: "string" description: "The links' href" } "@rel": { type: "string" description: "The links' target type" } "@title": { type: "string" description: "The links' title" } } } PayRun: { type: "object" description: "The commentarys' pay run" properties: { "@href": { type: "string" description: "The links' href" } "@rel": { type: "string" description: "The links' target type" } "@title": { type: "string" description: "The links' title" } } } } } } } }