action payrun_get_dps_message_from_employer { label: "Gets the DPS message" description: "Gets the DPS message" provider: payrun method: GET path: "/Employer/{EmployerId}/DpsMessage/{DpsMessageId}" encoding: json input: { type: "object" properties: { "Api-Version": { type: "string" format: "string" } Authorization: { type: "string" format: "string" } DpsMessageId: { type: "string" } EmployerId: { type: "string" } } required: ["Api-Version", "Authorization", "DpsMessageId", "EmployerId"] additionalProperties: false } output: { type: "object" properties: { DpsMessage: { type: "object" properties: { FormType: { type: "string" description: "The dps messages' form type" } IssueDate: { type: "string" format: "date" description: "The dps messages' issue date" } LastUpdated: { type: "string" format: "date-time" description: "The dps messages' last updated" } Message: { type: "string" description: "The dps messages' message" } MessageStatus: { type: "string" description: "The dps messages' message status" enum: ["Retrieved", "Applied", "Unresolved", "Ignored", "Information"] } MessageType: { type: "string" description: "The dps messages' message type" } ProcessingResult: { type: "string" description: "The dps messages' processing result" } RetrieveDate: { type: "string" format: "date-time" description: "The dps messages' retrieve date" } SequenceNumber: { type: "integer" format: "int32" description: "The dps messages' sequence number" } } } } } }