POST

Customer.Appointments.Coupon.Update

Alias of Customer.Appointments.Coupon.Edit. Update an unused appointment coupon owned by the logged-in customer.

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.Update 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. Same body as Customer.Appointments.Coupon.Edit.

Required Parameters

NameTypeSampleExplanation
coupon_id
post
int388Coupon id. Aliases: id, data_id.

Optional Parameters

NameTypeSampleWhat it gives
amount
post
number120Any editable coupon field (see Coupon.Edit).

Authentication

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

Authorization: Bearer YOUR TOKEN

Sample Request

{
    "url": "\/app\/Customer.Appointments.Coupon.Update",
    "method": "POST",
    "headers": {
        "Authorization": "Bearer YOUR TOKEN"
    },
    "body": {
        "coupon_id": "388",
        "amount": "120"
    },
    "url_user": "https:\/\/{user}.bull36.com\/app\/Customer.Appointments.Coupon.Update",
    "url_domain": "https:\/\/{domain}\/app\/Customer.Appointments.Coupon.Update"
}

Endpoint

POST /app/Customer.Appointments.Coupon.Update
POST https://{user}.bull36.com/app/Customer.Appointments.Coupon.Update
POST https://{domain}/app/Customer.Appointments.Coupon.Update

Sample Output

{
    "success": 1,
    "message": "Success",
    "coupon_id": 388
}

JavaScript Example

const token = 'YOUR TOKEN';
const body = new URLSearchParams();
body.set('coupon_id', '388');
body.set('amount', '120');

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

Error Example

{
    "success": 0,
    "message": "Coupon not found"
}