POST
Chat.SendProject
Add an internal message connected to a project/customer conversation.
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 Chat record or sends the requested data after validation.
Push Service
Pushes event project.message.created to users who should see this change.
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
| Name | Type | Sample | Explanation |
|---|---|---|---|
project_idpost | int | 700 | Project id. You may also send data_project. |
messagepost | string | Project note text | Message text. You may also send msg. |
customer_idpost | int | 123 | Related customer id. The existing project chat helper requires this value. You may also send cust_id. |
Optional Parameters
| Name | Type | Sample | What it gives |
|---|---|---|---|
send_notification_id_arraypost | array|string | 47,48 | Optional user ids to notify. |
Authentication
Send the bearer token returned by Login in the request header.
Authorization: Bearer YOUR TOKEN
Sample Request
{
"url": "\/app\/Chat.SendProject",
"method": "POST",
"headers": {
"Authorization": "Bearer YOUR TOKEN"
},
"body": {
"project_id": "700",
"customer_id": "123",
"message": "Project note text"
},
"url_user": "https:\/\/{user}.bull36.com\/app\/Chat.SendProject",
"url_domain": "https:\/\/{domain}\/app\/Chat.SendProject"
}Endpoint
POST /app/Chat.SendProject
POST https://{user}.bull36.com/app/Chat.SendProject
POST https://{domain}/app/Chat.SendProjectSample Output
{
"success": 1,
"message": "Success",
"id": 3283715,
"message_id": 3283715,
"project_id": 700,
"customer_id": 123,
"socket_event": "project.message.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/Chat.SendProject', { method: 'POST', headers: { Authorization: 'Bearer ' + token }, body });
const data = await res.json();
console.log(data);Error Example
{
"success": 0,
"message": "Missing required parameter: project_id"
}