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

NameTypeSampleExplanation
mission_id
post
int500Mission id.
message
post
stringMission note textMessage text. You may also send msg.

Optional Parameters

NameTypeSampleWhat it gives
customer_id
post
int123Related customer id.
project_id
post
int700Related project id. You may also send data_project.
send_notification_id_array
post
array|string47,48Optional 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.SendMission

Sample 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"
}