action nexmo_change_account_settings { label: "Change Account Settings" description: "Update the default webhook URLs associated with your account:\n * Callback URL for incoming SMS messages\n * Callback URL for delivery receipts\n\nNote that the URLs you provide must be valid and active. Vonage will check that they return a 200 OK response before the setting is saved." provider: nexmo method: POST path: "/account/settings" 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: { "dr-callback-url": { type: "string" format: "url" description: "The current or updated delivery receipt webhook URI" } "max-calls-per-second": { type: "integer" description: "The maximum number of API calls per second." } "max-inbound-request": { type: "integer" description: "The maximum number of inbound messages per second." } "max-outbound-request": { type: "integer" description: "The maximum number of outbound messages per second." } "mo-callback-url": { type: "string" format: "url" description: "The current or updated inbound message webhook URI" } } } }