POST

Ticket.AssignCustomer

Set tickets.cust_id and customer_name from a contactus row (customer-tickets assign customer). Both ticket_id and cust_id are required.

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 Ticket.AssignCustomer 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

  • ticket_id and cust_id are both required.
  • Customer must belong to the same org (contactus.user_id = owner).
  • Updates tickets.customer_name from the contactus name.
  • Aliases: customer_id → cust_id; ticket aliases id, data_id, t_id.
  • tab_saved is always 0 in the Node API (dashboard Mongo tab side-effect is not run).

Required Parameters

NameTypeSampleExplanation
ticket_id
post
int900Ticket id. Aliases: id, data_id, t_id.
cust_id
post
int100Customer (contactus) id. Alias: customer_id.

Optional Parameters

No optional body parameters are defined for this function.

Authentication

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

Authorization: Bearer YOUR TOKEN

Sample Request

{
    "url": "\/app\/Ticket.AssignCustomer",
    "method": "POST",
    "headers": {
        "Authorization": "Bearer YOUR TOKEN"
    },
    "body": {
        "ticket_id": "900",
        "cust_id": "100"
    },
    "url_user": "https:\/\/{user}.bull36.com\/app\/Ticket.AssignCustomer",
    "url_domain": "https:\/\/{domain}\/app\/Ticket.AssignCustomer"
}

Endpoint

POST /app/Ticket.AssignCustomer
POST https://{user}.bull36.com/app/Ticket.AssignCustomer
POST https://{domain}/app/Ticket.AssignCustomer

Sample Output

{
    "success": 1,
    "message": "Success",
    "cust_id": 100,
    "customer_name": "Dana Cohen",
    "tab_saved": 0
}

JavaScript Example

const token = 'YOUR TOKEN';
const body = new URLSearchParams({ ticket_id: '900', cust_id: '100' });
const res = await fetch('/app/Ticket.AssignCustomer', { method: 'POST', headers: { Authorization: 'Bearer ' + token }, body });
console.log(await res.json());

Error Example

{
    "success": 0,
    "message": "Failed"
}