API Reference

Send member referral invitations

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

NameInTypeRequiredDescription
AuthorizationheaderstringYesPanda API token (without Bearer prefix).

Request Body

Schema: SendInviteRequest

NameTypeRequiredDescription
emailsarray of string (email)YesList of recipient email addresses. Constraints: minItems=1, maxItems=100.
languagestringYesLanguage 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).
Language
Credentials
Header
URL
Click Try It! to start a request and see the response here!