action payrun_get_cis_line_from_sub_contractor { label: "Get CIS line from sub contractor" description: "Gets the specified CIS line from sub contractor." provider: payrun method: GET path: "/Employer/{EmployerId}/SubContractor/{SubContractorId}/CisLine/{CisLineId}" encoding: json input: { type: "object" properties: { "Api-Version": { type: "string" format: "string" } Authorization: { type: "string" format: "string" } CisLineId: { type: "string" } EmployerId: { type: "string" } SubContractorId: { type: "string" } } required: ["Api-Version", "Authorization", "CisLineId", "EmployerId", "SubContractorId"] additionalProperties: false } output: { type: "object" properties: { CisLine: { type: "object" properties: { CisDeduction: { type: "number" format: "double" description: "The cis lines' cis deduction" } CisLineType: { type: "string" description: "The cis lines' cis line type" } Description: { type: "string" description: "The cis lines' description" } Generated: { type: "string" format: "date-time" description: "The cis lines' generated" } GrossPay: { type: "number" format: "double" description: "The cis lines' gross pay" } NominalCodeKey: { type: "string" description: "The cis lines' nominal code key" } PayFrequency: { type: "string" description: "The cis lines' pay frequency" enum: ["Monthly", "Weekly"] } TaxMonth: { type: "integer" format: "int32" description: "The cis lines' tax month" } TaxPeriod: { type: "integer" format: "int32" description: "The cis lines' tax period" } TaxTreatment: { type: "string" description: "The cis lines' tax treatment" enum: ["Taxable", "NonTaxable", "Notional", "Materials"] } TaxYear: { type: "integer" format: "int32" description: "The cis lines' tax year" } UOM: { type: "string" description: "The cis lines' u o m" enum: ["NotSet", "Minute", "Hour", "Day", "Week", "Month", "Year", "Unit"] } UnitRate: { type: "number" format: "double" description: "The cis lines' unit rate" } Units: { type: "number" format: "double" description: "The cis lines' units" } VAT: { type: "number" format: "double" description: "The cis lines' v a t" } } } } } }