action nexmo_register_sender { label: "Register an email sender" description: "Register an email sender with an API Key for using email with Verify V2." provider: nexmo method: POST path: "/account/register-sender" encoding: json input: { type: "object" properties: { api_key: { type: "string" } api_secret: { type: "string" } application_ids: { type: "object" description: "An optional array of additional ApplicationID's that the value is to be assigned to." items: { type: "string" } } name: { type: "string" description: "An optional name to be attached to this binding" } provider: { type: "string" format: "enum" description: "The delivery method by which the value would be assigned. Always `email`" enum: ["email"] } value: { type: "string" format: "email" description: "The email adress to attach to the application(s)" } } required: ["api_key", "api_secret", "provider", "value"] additionalProperties: false } output: { type: "object" properties: { application_ids: { type: "array" description: "An array of ApplicationID strings attached to the value provided." items: { type: "string" } } name: { type: "string" description: "An optional name to be attached to this binding" } provider: { type: "string" format: "enum" description: "Enum identifer of provider type." enum: ["email"] } value: { type: "string" description: "Value given to the provider to attach to the Application IDs." } } } }