action payrun_get_cis_instructions_from_sub_contractor { label: "Get CIS instructions from sub contractor." description: "Get links to all CIS instructions for the specified sub contractor." provider: payrun method: GET path: "/Employer/{EmployerId}/SubContractor/{SubContractorId}/CisInstructions" encoding: json input: { type: "object" properties: { "Api-Version": { type: "string" format: "string" } Authorization: { type: "string" format: "string" } EmployerId: { type: "string" } SubContractorId: { type: "string" } } required: ["Api-Version", "Authorization", "EmployerId", "SubContractorId"] additionalProperties: false } output: { type: "object" properties: { LinkCollection: { type: "object" properties: { Links: { type: "object" description: "The link collections' links" properties: { Link: { type: "array" items: { properties: { "@href": { type: "string" description: "The links' href" } "@rel": { type: "string" description: "The links' target type" } "@title": { type: "string" description: "The links' title" } } } } } } } } } } }