action payrun_get_dps_job_status { label: "Get the DPS job status" description: "Return the the DPS job status" provider: payrun method: GET path: "/Jobs/Dps/{JobId}/Status" encoding: json input: { type: "object" properties: { "Api-Version": { type: "string" format: "string" } Authorization: { type: "string" format: "string" } JobId: { type: "string" } } required: ["Api-Version", "Authorization", "JobId"] additionalProperties: false } output: { type: "object" additionalProperties: true } }