action nexmo_retrieve_apisecrets { label: "Retrieve API Secrets" provider: nexmo method: GET path: "/accounts/{api_key}/secrets" encoding: json input: { type: "object" properties: { api_key: { type: "string" } } required: ["api_key"] additionalProperties: false } output: { properties: { _embedded: { type: "object" description: "The single `secrets` key returns an array of API secrets" properties: { secrets: { type: "array" description: "Array of API secrets" items: { 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" } } } } } } _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" } } } } } } } }