action exavault_send_referral_email { label: "Send referral email to a given address" description: "Invite a friend to sign up for a free trial of ExaVault. Send a [referral](/lp/referafriend/) email to an email address. If the recipient signs up for ExaVault, we'll apply a credit to your account for the referral. " provider: exavault method: POST path: "/email/referral" encoding: json input: { type: "object" properties: { emails: { type: "array" items: { type: "string" format: "email" } } "ev-access-token": { type: "string" } "ev-api-key": { type: "string" } message: { type: "string" } } required: ["emails", "ev-access-token", "ev-api-key", "message"] additionalProperties: false } output: { type: "object" properties: { data: { type: "array" items: { type: "string" } } responseStatus: { type: "integer" description: "Http status code of the response. " } } } }