action loket_get_journal_run_errors_by_journal_run_id { label: "Errors of a journal run" description: "__Activity name :__ GetJournalRunErrorsByJournalRunId\n\nErrors that occured while processing the journalrun can be obtained via this endpoint.\n" provider: loket method: GET path: "/providers/employers/payrolladministrations/journalruns/{journalrunId}/errors" 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 } }