Skip to main content
POST
/
api
/
v1
/
appointments
Create a new appointment
curl --request POST \
  --url https://{subdomain}.mindhunters.ai/api/v1/appointments \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "schedule_uuid": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
  "title": "Team Meeting",
  "start_time": "2025-12-01 10:00:00",
  "end_time": "2025-12-01 11:00:00",
  "contact_uuid": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
  "description": "<string>",
  "status": "approved",
  "notes": "<string>",
  "custom_answers": {}
}
'

Authorizations

Authorization
string
header
required

Use a Bearer token to access these API endpoints. Example: "Bearer {your-token}"

Body

application/json
schedule_uuid
string<uuid>
required
title
string
required
Example:

"Team Meeting"

start_time
string<date-time>
required
Example:

"2025-12-01 10:00:00"

end_time
string<date-time>
required
Example:

"2025-12-01 11:00:00"

contact_uuid
string<uuid>
description
string
status
string
Example:

"approved"

notes
string
custom_answers
object

Response

201

Appointment created successfully