POST
Chat.SendMission
Add an internal message connected to a mission.
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 mission.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 |
|---|---|---|---|
mission_idpost | int | 500 | Mission id. |
messagepost | string | Mission note text | Message text. You may also send msg. |
Optional Parameters
| Name | Type | Sample | What it gives |
|---|---|---|---|
customer_idpost | int | 123 | Related customer id. |
project_idpost | int | 700 | Related project id. You may also send data_project. |
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.SendMission",
"method": "POST",
"headers": {
"Authorization": "Bearer YOUR TOKEN"
},
"body": {
"mission_id": "500",
"message": "Mission note text"
},
"url_user": "https:\/\/{user}.bull36.com\/app\/Chat.SendMission",
"url_domain": "https:\/\/{domain}\/app\/Chat.SendMission"
}Endpoint
POST /app/Chat.SendMission
POST https://{user}.bull36.com/app/Chat.SendMission
POST https://{domain}/app/Chat.SendMissionSample Output
{
"success": 1,
"message": "Success",
"id": 3283714,
"message_id": 3283714,
"mission_id": 500,
"customer_id": 123,
"socket_event": "mission.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.SendMission', { method: 'POST', headers: { Authorization: 'Bearer ' + token }, body });
const data = await res.json();
console.log(data);Error Example
{
"success": 0,
"message": "Missing required parameter: mission_id"
}