POST
Customer.Appointments.Coupon.AddBatch
Create multiple appointment coupons for the logged-in customer in one call. Same as dashboard Add Coupons modal with coupon_code[] arrays. cust_id forced from JWT. Staff equivalent: AppointmentCoupon.AddBatch.
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.AddBatch 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. Do not send customer_id — always JWT c_id.
Required Parameters
| Name | Type | Sample | Explanation |
|---|---|---|---|
coupon_codepost | json | ["12345","67890"] | JSON array of coupon codes (or single string). |
Optional Parameters
| Name | Type | Sample | What it gives |
|---|---|---|---|
appointment_type_idpost | json | ["697","697"] | Parallel array. Alias: coupon_appo_type_id. |
insurancepost | json | ["2","2"] | Parallel array. Alias: coupon_insurance_company. |
amountpost | json | ["100","200"] | Parallel array. Alias: coupon_amount. |
left_amountpost | json | ["50","10"] | Parallel array. Alias: coupon_left_amount. |
notespost | json | ["note 1","note 2"] | Parallel array. Alias: coupon_note. |
coupon_datepost | json | ["2026-02-17","2026-02-18"] | Parallel array of Y-m-d dates. |
order_idpost | json | ["0","0"] | Parallel array. |
Authentication
Send the bearer token returned by Login in the request header.
Authorization: Bearer YOUR TOKEN
Sample Request
{
"url": "\/app\/Customer.Appointments.Coupon.AddBatch",
"method": "POST",
"headers": {
"Authorization": "Bearer YOUR TOKEN"
},
"body": {
"coupon_code": "[\"12345\",\"67890\"]",
"appointment_type_id": "[\"697\",\"697\"]",
"amount": "[\"100\",\"200\"]",
"left_amount": "[\"50\",\"10\"]"
},
"url_user": "https:\/\/{user}.bull36.com\/app\/Customer.Appointments.Coupon.AddBatch",
"url_domain": "https:\/\/{domain}\/app\/Customer.Appointments.Coupon.AddBatch"
}Endpoint
POST /app/Customer.Appointments.Coupon.AddBatch
POST https://{user}.bull36.com/app/Customer.Appointments.Coupon.AddBatch
POST https://{domain}/app/Customer.Appointments.Coupon.AddBatchSample Output
{
"success": 1,
"message": "Customer Coupon added",
"count": 2,
"coupon_ids": [
388,
389
]
}JavaScript Example
const token = 'YOUR TOKEN';
const body = new URLSearchParams();
body.set('coupon_code', '[\"12345\",\"67890\"]');
body.set('appointment_type_id', '[\"697\",\"697\"]');
body.set('amount', '[\"100\",\"200\"]');
body.set('left_amount', '[\"50\",\"10\"]');
const res = await fetch('/app/Customer.Appointments.Coupon.AddBatch', {
method: 'POST',
headers: { Authorization: `Bearer ${token}` },
body
});
const data = await res.json();
console.log(data);Error Example
{
"success": 2,
"error": "coupon_code_exists",
"message": "This coupons already exists : 12345"
}