POST

Customer.Appointments.Get

Return one doctor_appointment_for_cust row owned by the logged-in customer, same as Clientproject::edit_doctor_appointment_for_cust but JSON-only and scoped to token c_id. Includes data_time (minutes between start and end) like the dashboard edit response.

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.Get 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

  • Send the bearer token on protected calls with Authorization: Bearer YOUR TOKEN.
  • Send parameters as POST body fields exactly as documented.

Required Parameters

NameTypeSampleExplanation
id
post
int55doctor_appointment_for_cust.id. Aliases: data_id, appointment_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.Get",
    "method": "POST",
    "headers": {
        "Authorization": "Bearer YOUR TOKEN"
    },
    "body": {
        "id": "55"
    },
    "url_user": "https:\/\/{user}.bull36.com\/app\/Customer.Appointments.Get",
    "url_domain": "https:\/\/{domain}\/app\/Customer.Appointments.Get"
}

Endpoint

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

Sample Output

{
    "success": 1,
    "data": {
        "id": 55,
        "date": "2026-08-13",
        "start_time": "09:00"
    }
}

JavaScript Example

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

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

Error Example

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