action loket_get_journal_run_results_by_journal_run_id { label: "Get journal results for a journal run" description: "__Activity name :__ GetJournalRunResultsByJournalRunId\n\nReturns the journal run results for the journal run. Journal runs with journalRunStatus = 0,1,2,3 dont have results and this endpoint will return an error if called for a journal run with that status.\n" provider: loket method: GET path: "/providers/employers/payrolladministrations/journalruns/{journalrunId}/results" encoding: json input: { type: "object" properties: { Accept: { type: "string" } Authorization: { type: "string" } journalrunId: { type: "string" format: "uuid" } } required: ["Accept", "Authorization", "journalrunId"] additionalProperties: false } output: { type: "object" additionalProperties: true } }