action nexmo_top_up_account_balance { label: "Top Up Account Balance" description: "You can top up your account using this API when you have enabled auto-reload in the dashboard. The amount added by the top-up operation will be the same amount as was added in the payment when auto-reload was enabled.\nYour account balance is checked every 5-10 minutes and if it falls below the threshold and auto-reload is enabled, then it will be topped up automatically. Use this endpoint if you need to top up at times when your credit may be exhausted more quickly than the auto-reload may occur." provider: nexmo method: POST path: "/account/top-up" encoding: form input: { type: "object" properties: { api_key: { type: "string" } api_secret: { type: "string" } } required: ["api_key", "api_secret"] additionalProperties: false } output: { type: "object" properties: { "error-code": { type: "object" } "error-code-label": { type: "object" } } } }