post https://api-v2.pandavideo.com/member-referrals/invite
Sends referral invitations to a list of email addresses
POST /member-referrals/invite
Detailed Description
Sends referral invitations to a list of email addresses in the specified language. Use this endpoint to invite potential members and track individual invitation outcomes.
HTTP Method & Path
POST /member-referrals/invite
Authentication Requirements
- Security Scheme:
PandaAuth(apiKey) - Header:
Authorization: <your_api_token>(no Bearer prefix)
Parameters
| Name | In | Type | Required | Description |
|---|---|---|---|---|
| Authorization | header | string | Yes | Panda API token (without Bearer prefix). |
Request Body
Schema: SendInviteRequest
| Name | Type | Required | Description |
|---|---|---|---|
| emails | array of string (email) | Yes | List of recipient email addresses. Constraints: minItems=1, maxItems=100. |
| language | string | Yes | Language for the invitation email. Enum: pt, en, es. |
Example Request Body
{
"emails": ["[email protected]", "[email protected]"],
"language": "en"
}
Notes
- The API returns per-email results indicating success or specific failure reasons (e.g., already registered, recently sent).
