action payrun_get_journal_instruction_template { label: "Gets the Journal instructions template for the application" description: "Retrurns the specified journal instruction from the application" provider: payrun method: GET path: "/JournalInstruction/{JournalInstructionId}" encoding: json input: { type: "object" properties: { "Api-Version": { type: "string" format: "string" } Authorization: { type: "string" format: "string" } JournalInstructionId: { type: "string" } } required: ["Api-Version", "Authorization", "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" } } } } } }