Skip to content

Edit Group Appointment Member

Request

Security
x-api-key and a-api-key
Path
appointment_client_idintegerrequired
Bodyapplication/json
account_idinteger
appointment_status_idinteger
item_idinteger
item_group_idinteger
notesstring
sms_reminderboolean
email_reminderboolean
sms_confirmationboolean
email_confirmationboolean
sms_follow_upboolean
email_follow_upboolean
PATCH
/appointment_client/{appointment_client_id}
curl -i -X PATCH \
  'https://api.pracsuite.com/v1/appointment_client/{appointment_client_id}' \
  -H 'Content-Type: application/json' \
  -H 'a-api-key: YOUR_API_KEY_HERE' \
  -H 'x-api-key: YOUR_API_KEY_HERE' \
  -d '{
    "account_id": 0,
    "appointment_status_id": 0,
    "item_id": 0,
    "item_group_id": 0,
    "notes": "string",
    "sms_reminder": true,
    "email_reminder": true,
    "sms_confirmation": true,
    "email_confirmation": true,
    "sms_follow_up": true,
    "email_follow_up": true
  }'

Responses

Successful

Bodyapplication/json
row_numintegerread-only
total_rowsintegerread-only
tenant_idinteger
appointment_client_idinteger
client_idinteger
appointment_idinteger
appointment_status_idinteger
notesstring
item_idinteger
createdstring, (date-time)^\d{4}-\d{2}-\d{2}T\d{2}:\d{2}:\d{2}(\.\d{1,6...

RFC 3339 UTC date-time (Z) with microsecond precision.

Example:"2020-09-12T11:09:42.687393Z"
modifiedstring, (date-time)^\d{4}-\d{2}-\d{2}T\d{2}:\d{2}:\d{2}(\.\d{1,6...

RFC 3339 UTC date-time (Z) with microsecond precision.

Example:"2020-09-12T11:09:42.687393Z"
item_group_idinteger
Response
{ "row_num": 0, "total_rows": 0, "links": { "self": "https://api.pracsuite.com/v1/appointment_client/1" }, "tenant_id": 0, "appointment_client_id": 0, "client_id": 0, "appointment_id": 0, "appointment_status_id": 0, "notes": "string", "item_id": 0, "created": "2020-09-12T11:09:42.687393Z", "modified": "2020-09-12T11:09:42.687393Z", "item_group_id": 0 }