action payrun_get_journal_line_from_employer { label: "Gets the specified journal Line from the employer" description: "Returns the specified journal Line from employer" provider: payrun method: GET path: "/Employer/{EmployerId}/JournalLine/{JournalLineId}" encoding: json input: { type: "object" properties: { "Api-Version": { type: "string" format: "string" } Authorization: { type: "string" format: "string" } EmployerId: { type: "string" } JournalLineId: { type: "string" } } required: ["Api-Version", "Authorization", "EmployerId", "JournalLineId"] additionalProperties: false } output: { type: "object" properties: { JournalLine: { type: "object" properties: { Credit: { type: "number" format: "double" description: "The journal lines' credit" } Debit: { type: "number" format: "double" description: "The journal lines' debit" } Description: { type: "string" description: "The journal lines' description" } Employee: { type: "object" description: "The journal lines' employee" properties: { "@href": { type: "string" description: "The links' href" } "@rel": { type: "string" description: "The links' target type" } "@title": { type: "string" description: "The links' title" } } } Generated: { type: "string" format: "date-time" description: "The journal lines' generated" } Grouping: { type: "string" description: "The journal lines' grouping" } LedgerTarget: { type: "string" description: "The journal lines' ledger target" } NomCode: { type: "string" description: "The journal lines' nom code" } PayFrequency: { type: "string" description: "The journal lines' pay frequency" enum: ["Weekly", "Monthly", "TwoWeekly", "FourWeekly", "Yearly"] } PayRun: { type: "object" description: "The journal lines' 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" } } } SubContractor: { type: "object" description: "The journal lines' sub contractor" properties: { "@href": { type: "string" description: "The links' href" } "@rel": { type: "string" description: "The links' target type" } "@title": { type: "string" description: "The links' title" } } } SubNomCode: { type: "string" description: "The journal lines' sub nom code" } TaxPeriod: { type: "integer" format: "int32" description: "The journal lines' tax period" } TaxYear: { type: "integer" format: "int32" description: "The journal lines' tax year" } } } } } }