Skip to main content
POST
/
core
/
book_meeting
cURL
curl --request POST \
  --url http://sandbox.mintlify.com/core/book_meeting \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '{
  "data": {
    "attributes": {
      "team_id": 123,
      "agent_id": 123,
      "meeting_type_id": 123,
      "attendee_email": "john.doe@example.com",
      "start_time": "1716489600"
    }
  }
}'
{
  "data": {
    "id": "abc",
    "attributes": {
      "meeting_id": "abc",
      "team_id": 123,
      "agent_id": 123,
      "meeting_type_id": 123,
      "attendee_email": "john.doe@example.com",
      "start_time": "1716489600"
    }
  }
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Body

application/json

Schedule Meeting request

data
object
required

Response

Meeting scheduled successfully

data
object
required