action nexmo_retrieve_apisecret { label: "Retrieve one API Secret" provider: nexmo method: GET path: "/accounts/{api_key}/secrets/{secret_id}" encoding: json input: { type: "object" properties: { api_key: { type: "string" } secret_id: { type: "string" } } required: ["api_key", "secret_id"] additionalProperties: false } output: { type: "object" properties: { _links: { type: "object" description: "Links related to this resource" properties: { self: { type: "object" description: "This resource" properties: { href: { type: "string" description: "The URI for this resource" } } } } } created_at: { type: "string" description: "Creation date/time for this secret" } id: { type: "string" description: "Secret ID" } } } }