action nexmo_create_apisecret { label: "Create API Secret" provider: nexmo method: POST path: "/accounts/{api_key}/secrets" encoding: json input: { type: "object" properties: { api_key: { type: "string" } secret: { type: "string" description: "The new secret must follow these rules:\n\n* minimum 8 characters\n* maximum 25 characters\n* minimum 1 lower case character\n* minimum 1 upper case character\n* minimum 1 digit\n" } } required: ["api_key", "secret"] 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" } } } }