POST

Customer.Appointments.Doctors

List doctors for the client appointment page sidebar (client/doctor-appointment). Same source as application/views/client/doctor_appointment. Hours are hardcoded 08:00 - 21:30 like the dashboard. Also returns unique places from working_day.place and working_by_date.place_month (the All / place filter buttons). Staff Calendar.* is unchanged.

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

  • Requires Customer.Login token. This is not Calendar.List and not Public.AppointmentBuilder.
  • doctor_id / team_member_id is user_detail.id, the value the New appointment Team member dropdown posts.

Required Parameters

No body parameters are required for this function.

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.Doctors",
    "method": "POST",
    "headers": {
        "Authorization": "Bearer YOUR TOKEN"
    },
    "body": [],
    "url_user": "https:\/\/{user}.bull36.com\/app\/Customer.Appointments.Doctors",
    "url_domain": "https:\/\/{domain}\/app\/Customer.Appointments.Doctors"
}

Endpoint

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

Sample Output

{
    "success": 1,
    "count": 1,
    "places": [
        "test"
    ],
    "data": [
        {
            "id": 12,
            "doctor_id": 211,
            "team_member_id": 211,
            "name": "pratik",
            "color": "#000000",
            "hours": "08:00 - 21:30",
            "profile_image_url": "https:\/\/files.biz1.co.il\/biz1upload\/upload\/images\/photo.png"
        }
    ]
}

JavaScript Example

const token = 'YOUR TOKEN';
const body = new URLSearchParams();

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

Error Example

{
    "success": 0,
    "error": "customer_login_required"
}