POST

Customer.Appointments.Delete

Cancel/delete one doctor_appointment_for_cust row owned by the logged-in customer. Same action as the client modal Cancel Meeting button (Clientproject::delete_doctor_appointment_for_cust). id must belong to token c_id.

Permissions

  • User must be logged in with a valid bearer token.
  • Returned or changed records are limited by the user permissions, team access, folder access, and account settings.

Action

  • Runs the Customer.Appointments.Delete function and returns JSON.

Push Service

No push is sent because this function only reads data or returns helper information.

Automation

No automation is run for this function.

Special Instructions

  • Does not change staff Calendar.Delete.
  • id aliases: data_id, appointment_id, doctor_appointment_for_cust_id.

Required Parameters

NameTypeSampleExplanation
id
post
int901doctor_appointment_for_cust.id. Aliases: data_id, appointment_id, doctor_appointment_for_cust_id.

Optional Parameters

No optional body parameters are defined for this function.

Authentication

Send the bearer token returned by Login in the request header.

Authorization: Bearer YOUR TOKEN

Sample Request

{
    "url": "\/app\/Customer.Appointments.Delete",
    "method": "POST",
    "headers": {
        "Authorization": "Bearer YOUR TOKEN"
    },
    "body": {
        "id": "901"
    },
    "url_user": "https:\/\/{user}.bull36.com\/app\/Customer.Appointments.Delete",
    "url_domain": "https:\/\/{domain}\/app\/Customer.Appointments.Delete"
}

Endpoint

POST /app/Customer.Appointments.Delete
POST https://{user}.bull36.com/app/Customer.Appointments.Delete
POST https://{domain}/app/Customer.Appointments.Delete

Sample Output

{
    "success": 1,
    "id": 901,
    "message": "Appointment cancel successfully"
}

JavaScript Example

const token = 'YOUR TOKEN';
const body = new URLSearchParams();
body.set('id', '901');

const res = await fetch('/app/Customer.Appointments.Delete', {
  method: 'POST',
  headers: { Authorization: `Bearer ${token}` },
  body
});
const data = await res.json();
console.log(data);

Error Example

{
    "success": 0,
    "message": "No_data_found"
}