Skip to main content
PUT
/
api
/
v1
/
appointments
/
{uuid}
Update an appointment
curl --request PUT \
  --url https://{subdomain}.mindhunters.ai/api/v1/appointments/{uuid} \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "title": "<string>",
  "description": "<string>",
  "start_time": "2023-11-07T05:31:56Z",
  "end_time": "2023-11-07T05:31:56Z",
  "status": "<string>"
}
'

Authorizations

Authorization
string
header
required

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

Path Parameters

uuid
string<uuid>
required

Body

application/json
title
string
description
string
start_time
string<date-time>
end_time
string<date-time>
status
string

Response

200

Appointment updated successfully