action payrun_get_cis_line_type_from_employer { label: "Get CIS line type from employer" description: "Gets the specified CIS line type from employer." provider: payrun method: GET path: "/Employer/{EmployerId}/CisLineType/{CisLineTypeId}" encoding: json input: { type: "object" properties: { "Api-Version": { type: "string" format: "string" } Authorization: { type: "string" format: "string" } CisLineTypeId: { type: "string" } EmployerId: { type: "string" } } required: ["Api-Version", "Authorization", "CisLineTypeId", "EmployerId"] additionalProperties: false } output: { type: "object" properties: { CisLineType: { type: "object" properties: { Description: { type: "string" description: "The cis line types' description" } LineType: { type: "string" description: "The cis line types' line type" } NominalCode: { type: "object" description: "The cis line types' nominal code" properties: { "@href": { type: "string" description: "The links' href" } "@rel": { type: "string" description: "The links' target type" } "@title": { type: "string" description: "The links' title" } } } TaxTreatment: { type: "string" description: "The cis line types' tax treatment" enum: ["Taxable", "NonTaxable", "Notional", "Materials"] } } } } } }