action payrun_get_dps_job_info { label: "Get the DPS job information" description: "Return the the DPS job information" provider: payrun method: GET path: "/Jobs/Dps/{JobId}/Info" 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" properties: { JobInfo: { type: "object" properties: { Created: { type: "string" format: "date-time" description: "The job infos' created" } EmployerKey: { type: "string" description: "The job infos' employer key" } Errors: { type: "object" description: "The job infos' errors" properties: { Error: { type: "array" items: { type: "string" } } } } HoldingDate: { type: "string" format: "date-time" description: "The job infos' holding date" } JobId: { type: "string" description: "The job infos' job id" } JobStatus: { type: "string" description: "The job infos' job status" enum: ["New", "Pending", "InProgress", "Success", "Failed", "OnHold"] } JobType: { type: "string" description: "The job infos' job type" } LastUpdated: { type: "string" format: "date-time" description: "The job infos' last updated" } Progress: { type: "number" format: "double" description: "The job infos' progress" } } } } } }