v1

latestOpenAPI 3.1.02026-07-2416666272.6 KB
Member Referrals

Send member referral invitations

Sends referral invitations to a list of email addresses

post/member-referrals/invite

Request body

emailsstring[] required

List of email addresses to send invitations to

language'pt' | 'en' | 'es' required

Language for the invitation email

Example request

{
  "emails": [
    "user1@example.com",
    "user2@example.com"
  ],
  "language": "en"
}

Response

Invitations sent successfully

messagestring

Example response

{
  "data": {
    "results": [
      {
        "email": "user@example.com",
        "status": "success",
        "message": "Invitation sent successfully"
      }
    ]
  },
  "message": "Success"
}