POST

AppointmentCoupon.Get

Get one appointment coupon by id (JSON, not HTML). Used before edit like the dashboard edit icon on the coupon report.

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

  • Returns AppointmentCoupon information as JSON for the UI.

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

  • Staff/org token required. Customer portal alias: Customer.Appointments.Coupon.Get.

Required Parameters

NameTypeSampleExplanation
coupon_id
post
int388Coupon id. Aliases: id, data_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\/AppointmentCoupon.Get",
    "method": "POST",
    "headers": {
        "Authorization": "Bearer YOUR TOKEN"
    },
    "body": {
        "coupon_id": "388"
    },
    "url_user": "https:\/\/{user}.bull36.com\/app\/AppointmentCoupon.Get",
    "url_domain": "https:\/\/{domain}\/app\/AppointmentCoupon.Get"
}

Endpoint

POST /app/AppointmentCoupon.Get
POST https://{user}.bull36.com/app/AppointmentCoupon.Get
POST https://{domain}/app/AppointmentCoupon.Get

Sample Output

{
    "success": 1,
    "message": "Success",
    "data": {
        "id": 388,
        "coupon_code": "12345",
        "customer_id": 108545,
        "customer_name": "bhavesh test 123",
        "appointment_type_id": 697,
        "amount": "100",
        "left_amount": "50",
        "status_label": "unused",
        "can_edit": true,
        "can_delete": true
    }
}

JavaScript Example

const token = 'YOUR TOKEN';
const body = new URLSearchParams({ coupon_id: '388' });
const res = await fetch('/app/AppointmentCoupon.Get', { method: 'POST', headers: { Authorization: 'Bearer ' + token }, body });
console.log(await res.json());

Error Example

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