AurionAI Docs

Send Booking Link Email

Send a plain email with a booking link — no meeting record, no iCal. The meeting is created later when the contact picks a slot through the link.

POST
/api/v2/meetings/send-booking-link-email

Send a plain email with a booking link — no meeting record, no iCal.

The meeting is created later when the contact picks a slot through the link.

Authorization

AuthorizationBearer <token>

In: header

Request Body

application/json

TypeScript Definitions

Use the request body type in TypeScript.

Response Body

application/json

application/json

curl -X POST "https://loading/api/v2/meetings/send-booking-link-email" \  -H "Content-Type: application/json" \  -d '{    "booking_url": "string",    "contact_email": "user@example.com",    "title": "string"  }'
{
  "sent": true
}
{
  "detail": [
    {
      "loc": [
        "string"
      ],
      "msg": "string",
      "type": "string"
    }
  ]
}