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" } } }
Schedules a meeting using the Signals voice agent system
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Bearer <token>
<token>
Schedule Meeting request
Show child attributes
Meeting scheduled successfully