action payrun_get_journal_instruction_from_employer { label: "Gets the specified journal instruction from the employer" description: "Returns the specified journal instruction from employer" provider: payrun method: GET path: "/Employer/{EmployerId}/JournalInstruction/{JournalInstructionId}" encoding: json input: { type: "object" properties: { "Api-Version": { type: "string" format: "string" } Authorization: { type: "string" format: "string" } EmployerId: { type: "string" } JournalInstructionId: { type: "string" } } required: ["Api-Version", "Authorization", "EmployerId", "JournalInstructionId"] additionalProperties: false } output: { type: "object" properties: { JournalInstruction: { type: "object" properties: { AccountingType: { type: "string" description: "The journal instructions' accounting type" enum: ["Credit", "Debit"] } Description: { type: "string" description: "The journal instructions' description" } EndDate: { type: "string" format: "date" description: "The journal instructions' end date" } Expression: { type: "string" description: "The journal instructions' expression" } JournalLineTag: { type: "string" description: "The journal instructions' journal line tag" } LedgerTarget: { type: "string" description: "The journal instructions' ledger target" } NomCode: { type: "string" description: "The journal instructions' nom code" } StartDate: { type: "string" format: "date" description: "The journal instructions' start date" } SubNomCode: { type: "string" description: "The journal instructions' sub nom code" } } } } } }