POST
Customer.Appointments.Coupon.Edit
Update an unused appointment coupon owned by the logged-in customer. Alias: Customer.Appointments.Coupon.Update. Staff equivalent: AppointmentCoupon.Edit.
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.Appointments.Coupon.Edit 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
- Requires Customer.Login token. Coupon must belong to JWT c_id. Partial updates supported (send only fields to change).
Required Parameters
| Name | Type | Sample | Explanation |
|---|---|---|---|
coupon_idpost | int | 388 | Coupon id. Aliases: id, data_id. |
Optional Parameters
| Name | Type | Sample | What it gives |
|---|---|---|---|
coupon_codepost | string | 12345 | Coupon code. |
appointment_type_idpost | int | 697 | Alias: coupon_appo_type_id. |
insurancepost | int | 2 | Alias: coupon_insurance_company. |
amountpost | number | 100 | Alias: coupon_amount. |
left_amountpost | number | 50 | Alias: coupon_left_amount. |
notespost | string | updated note | Alias: coupon_note. |
coupon_datepost | date | 2026-02-17 | Coupon date Y-m-d. Send date filters and date values as UTC Y-m-d H:i:s when the route accepts date/time; date-only table columns store the Y-m-d date part. |
order_idpost | int | 0 | Optional order id. |
Authentication
Send the bearer token returned by Login in the request header.
Authorization: Bearer YOUR TOKEN
Sample Request
{
"url": "\/app\/Customer.Appointments.Coupon.Edit",
"method": "POST",
"headers": {
"Authorization": "Bearer YOUR TOKEN"
},
"body": {
"coupon_id": "388",
"amount": "120",
"left_amount": "60",
"notes": "updated note"
},
"url_user": "https:\/\/{user}.bull36.com\/app\/Customer.Appointments.Coupon.Edit",
"url_domain": "https:\/\/{domain}\/app\/Customer.Appointments.Coupon.Edit"
}Endpoint
POST /app/Customer.Appointments.Coupon.Edit
POST https://{user}.bull36.com/app/Customer.Appointments.Coupon.Edit
POST https://{domain}/app/Customer.Appointments.Coupon.EditSample Output
{
"success": 1,
"message": "Success",
"coupon_id": 388,
"data": {
"id": 388,
"coupon_code": "12345",
"amount": "120"
}
}JavaScript Example
const token = 'YOUR TOKEN';
const body = new URLSearchParams();
body.set('coupon_id', '388');
body.set('amount', '120');
body.set('left_amount', '60');
body.set('notes', 'updated note');
const res = await fetch('/app/Customer.Appointments.Coupon.Edit', {
method: 'POST',
headers: { Authorization: `Bearer ${token}` },
body
});
const data = await res.json();
console.log(data);Error Example
{
"success": 0,
"message": "Coupon not found"
}