Skip to main content
POST
/
registrants
/
{registrant_id}
/
trigger-email
/
{email_type}
Email Registrant
curl --request POST \
  --url https://api.swoogo.com/api/v1/registrants/{registrant_id}/trigger-email/{email_type} \
  --header 'Authorization: Bearer <token>'

Authorizations

Authorization
string
header
required

OAuth 2.0 bearer token obtained from POST /oauth2/token. Tokens expire after 30 minutes. Include in the Authorization header as Bearer {access_token}.

Path Parameters

registrant_id
integer
required

The ID of the registrant to send the email to.

Example:

26361060

email_type
enum<string>
required

The type of email to trigger. Must be one of: registration_created (confirmation), registration_abandoned (reminder to complete), registration_modified (update notice), registration_cancelled (cancellation notice).

Available options:
registration_created,
registration_abandoned,
registration_modified,
registration_cancelled
Example:

"registration_created"

Response

200

Email triggered successfully.