action nexmo_revoke_apisecret { label: "Revoke an API Secret" provider: nexmo method: DELETE 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" additionalProperties: true } }