POST

Meeting.Add

Create a customer meeting. This is for customer combo meetings, not doctor appointments.created automation, and sends realtime meeting.created.

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

  • Creates a Meeting record or sends the requested data after validation.

Push Service

Pushes event meeting.created to users who should see this change.

Automation

Runs automation event meeting.created with the record id and submitted parameters after the action succeeds.

Special Instructions

  • Send the bearer token on protected calls with Authorization: Bearer YOUR TOKEN.
  • Send parameters as POST body fields exactly as documented.
  • Send date/time values in UTC Y-m-d H:i:s format when a date or datetime field is used.

Required Parameters

NameTypeSampleExplanation
cust_id
post
int123Main customer id.
second_cust_id
post
int124Second customer id for the meeting.
date
post
date2026-07-20Meeting date in YYYY-MM-DD format. Send date filters and date values as UTC Y-m-d H:i:s when the route accepts date/time; date-only table columns store the Y-m-d date part.
start_time
post
time10:00Meeting start time. Send time values as H:i:s. If the route also has a date field, send that date as UTC Y-m-d H:i:s.
duration
post
int30Duration in minutes.

Optional Parameters

NameTypeSampleWhat it gives
address
post
stringMain officeMeeting address.
note
post
stringBring contractMeeting note.
team_member
post
array47,48Team member ids.

Authentication

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

Authorization: Bearer YOUR TOKEN

Sample Request

{
    "url": "\/app\/Meeting.Add",
    "method": "POST",
    "headers": {
        "Authorization": "Bearer YOUR TOKEN"
    },
    "body": {
        "cust_id": "123",
        "second_cust_id": "124",
        "date": "2026-07-20",
        "start_time": "10:00",
        "duration": "30"
    },
    "url_user": "https:\/\/{user}.bull36.com\/app\/Meeting.Add",
    "url_domain": "https:\/\/{domain}\/app\/Meeting.Add"
}

Endpoint

POST /app/Meeting.Add
POST https://{user}.bull36.com/app/Meeting.Add
POST https://{domain}/app/Meeting.Add

Sample Output

{
    "success": 1,
    "message": "Combo meeting add Successfully",
    "meeting_id": "55",
    "automation_event": "meeting.created",
    "socket_event": "meeting.created"
}

JavaScript Example

const token = 'YOUR TOKEN';
const body = new URLSearchParams({});
// Fill body fields from the Sample Request JSON above.
const res = await fetch('/app/Meeting.Add', { method: 'POST', headers: { Authorization: 'Bearer ' + token }, body });
const data = await res.json();
console.log(data);

Error Example

{
    "success": 0,
    "message": "Please select customer"
}