action exavault_send_welcome_email { label: "Resend welcome email to specific user" description: "Send a welcome email to a user. The contents of the welcome email can be set by [PATCH /accounts](#operation/updateAccount)." provider: exavault method: POST path: "/email/welcome/{username}" encoding: json input: { type: "object" properties: { "ev-access-token": { type: "string" } "ev-api-key": { type: "string" } username: { type: "string" } } required: ["ev-access-token", "ev-api-key", "username"] additionalProperties: false } output: { type: "object" properties: { data: { type: "array" items: { type: "string" } } responseStatus: { type: "integer" description: "Http status code of the response. " } } } }