action payrun_get_employer_secret { label: "Get employer secret" description: "Get the public visible employer secret object" provider: payrun method: GET path: "/Employer/{EmployerId}/Secret/{SecretId}" encoding: json input: { type: "object" properties: { "Api-Version": { type: "string" format: "string" } Authorization: { type: "string" format: "string" } EmployerId: { type: "string" } SecretId: { type: "string" } } required: ["Api-Version", "Authorization", "EmployerId", "SecretId"] additionalProperties: false } output: { type: "object" properties: { EmployerSecret: { type: "object" properties: { Created: { type: "string" format: "date-time" description: "The employer secrets' created" } Name: { type: "string" description: "The employer secrets' name" } Value: { type: "string" description: "The employer secrets' value" } } } } } }