Skip to main content
POST
/
api
/
v1
/
appointments
/
{uuid}
/
status
Update appointment status
curl --request POST \
  --url https://{subdomain}.mindhunters.ai/api/v1/appointments/{uuid}/status \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "status": "approved"
}
'

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
status
enum<string>
required
Available options:
approved,
pending,
rejected

Response

200

Status updated successfully