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": "[email protected]",
"start_time": "1716489600"
}
}
}
'