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