POST

Customer.Tickets.Reply

Append a customer reply to tickets.messages, same as Clientproject::insert_message. Saved object: time d.m.Y H:i:s, message, direction=0, cust_id, msg_type. Ticket must belong to token c_id.

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.Tickets.Reply 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

  • Send the bearer token on protected calls with Authorization: Bearer YOUR TOKEN.
  • Send parameters as POST body fields exactly as documented.

Required Parameters

NameTypeSampleExplanation
t_id
post
int900tickets.ticket_id. Aliases: ticket_id, id, data_id.
message
post
stringThanks, still waitingReply text. Alias: messages.

Optional Parameters

NameTypeSampleWhat it gives
data_type
post
stringtextStored as msg_type on the message object.

Authentication

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

Authorization: Bearer YOUR TOKEN

Sample Request

{
    "url": "\/app\/Customer.Tickets.Reply",
    "method": "POST",
    "headers": {
        "Authorization": "Bearer YOUR TOKEN"
    },
    "body": {
        "t_id": "900",
        "message": "Thanks, still waiting"
    },
    "url_user": "https:\/\/{user}.bull36.com\/app\/Customer.Tickets.Reply",
    "url_domain": "https:\/\/{domain}\/app\/Customer.Tickets.Reply"
}

Endpoint

POST /app/Customer.Tickets.Reply
POST https://{user}.bull36.com/app/Customer.Tickets.Reply
POST https://{domain}/app/Customer.Tickets.Reply

Sample Output

{
    "success": 1,
    "output": 1,
    "ticket_id": 900
}

JavaScript Example

const token = 'YOUR TOKEN';
const body = new URLSearchParams();
body.set('t_id', '900');
body.set('message', 'Thanks, still waiting');

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

Error Example

{
    "success": 0,
    "output": 0,
    "message": "Ticket was not found."
}