Skip to main content
POST
/
v4
/
attendee
/
quick-mail
Send quick email to attendee
curl --request POST \
  --url https://api.example.com/v4/attendee/quick-mail \
  --header 'Content-Type: application/json' \
  --header 'x-meetergo-api-user-id: <api-key>' \
  --data '
{
  "attendeeId": "<string>",
  "title": "<string>",
  "content": "<string>"
}
'

Authorizations

x-meetergo-api-user-id
string
header
required

User ID to act as when using API Key authentication (required with API Key)

Body

application/json

Email details including attendee ID, title and content

attendeeId
string
required

The unique identifier of the attendee to send email to

title
string
required

Email subject line

content
string
required

Email message content/body

Response

201 - undefined