WellnessLiving API (UAT) - v1.2026-02
  1. purchase
WellnessLiving API (UAT) - v1.2026-02
  • WellnessLiving API - [Feb-2026]
  • Auth
    • Authentication
  • appointment
    • /v1/appointment/book/asset/category
    • /v1/appointment/book/asset/list
    • /v1/appointment/book/asset/service
    • /v1/appointment/book/finish
    • /v1/appointment/book/finish
    • /v1/appointment/book/payment/paymentPost
    • /v1/appointment/book/product
    • /v1/appointment/book/schedule/calendar
    • /v1/appointment/book/schedule/day-time
    • /v1/appointment/book/service/category
    • /v1/appointment/book/service/list
    • /v1/appointment/book/staff/list
  • book-process
    • /v1/book/process/info
    • /v1/book/process/payment
    • /v1/book/process/purchase
    • /v1/book/process/purchase/element/list
  • business-data
    • /v1/business
    • /v1/business/franchise/location
    • /v1/business/skin
  • catalog
    • /v1/catalog/list
    • /v1/catalog/staff/catalog/list
  • classes
    • /v1/classes/list
    • /v1/classes/promotion
    • /v1/classes/view/element
  • collector-debt
    • /v1/collector/debt/list
    • /v1/collector/debt/pay
    • /v1/collector/debt/transaction
  • drive
    • /v1/drive/product/image/upload
  • ecommerce
    • /v1/ecommerce/order/sync
  • event
    • /v1/event/book/list
    • /v1/event/book/view/element
    • /v1/event/list
  • lead
    • /v1/lead/info
    • /v1/lead/info
  • location
    • /v1/location/list
    • /v1/location/view
  • login
    • /v1/login/attendance/list
    • /v1/login/search/settings
    • /v1/login/search/settings
    • /v1/login/search/staff-app/list
  • member
    • /v1/member/info
  • profile
    • /v1/profile/contract
    • /v1/profile/create
    • /v1/profile/fields
    • /v1/profile/purchase/list
    • /v1/profile/purchase/list/element
  • promotion
    • /v1/promotion
    • /v1/promotion/list
  • purchase
    • /v1/purchase/receipt
      GET
  • report
    • /v1/report/data
    • /v1/report/query
  • report-dev
    • /v1/report/customization-form
    • /v1/report/filter-info
  • schedule
    • /v1/schedule/class/list
    • /v1/schedule/class/view
    • /v1/schedule/class/view
    • /v1/schedule/page/element
    • /v1/schedule/page/list
    • /v1/schedule/tab
  • shop
    • /v1/shop/category
  • staff
    • /v1/staff/list
    • /v1/staff/view
  • user
    • /v1/user
  • visit
    • /v1/visit/status
  1. purchase

/v1/purchase/receipt

GET
/v1/purchase/receipt
Fetches detailed receipt information for a specific purchase.

Overview#

This endpoint returns the full receipt details for a completed purchase in WellnessLiving, including business, customer, payment, pricing, and item-level information. It is typically used to display or re-print a receipt in client or staff applications.

Authentication#

This request uses the existing authentication setup in this collection. Ensure that the TOKEN variable is populated (via the existing auth flow/environment variables) before calling this endpoint.

Request#

Method: GET
Path: /v1/purchase/receipt
Query parameters:
id_region – Numeric region identifier.
k_business – Business key (ID) for which the purchase was made.
k_purchase – Purchase key (ID) whose receipt details should be retrieved.

Key Response Fields (200 OK)#

The successful response is a JSON object that includes (non‑exhaustive):
a_business – Business information for the seller, e.g.:
text_title – Business name.
text_address – Business address.
text_phone – Business phone number.
text_mail – Business email.
a_logo – Logo metadata (text_url, dimensions, etc.).
a_customer – Customer (buyer) details, e.g.:
text_name – Customer full name.
text_address – Customer billing address.
text_phone – Customer phone.
text_mail – Customer email.
a_pay_method – One or more payment method entries used for the purchase, each including e.g.:
m_amount – Amount charged using this payment method.
text_currency – Currency code (e.g. usd).
text_pay_method – Payment method label (e.g. Cash1, card, etc.).
a_price – Aggregated price information:
m_sum – Subtotal before tax/discounts.
m_discount – Total discount amount.
m_tax – Total tax amount.
m_tip – Tip amount.
m_total – Grand total paid.
text_currency – Currency code.
a_purchase_item – Array of purchased items, each with e.g.:
text_title – Item title (e.g. membership or product name).
text_category – Category (e.g. Membership).
i_count – Quantity purchased.
m_price_total – Total price for this line item.
text_currency – Currency code.
a_logo – Optional item logo metadata.
Other key fields:
dtl_purchase – Purchase date/time.
text_purchase_id – Purchase/receipt identifier.
has_signature – Indicates whether a digital signature is stored.
html_receipt – Full HTML representation of the receipt (for rendering in a web view).
url_print – URL for a printable version of the purchase.
url_print_receipt – URL for printing the receipt specifically.
status – Request status (e.g. ok on success).

Usage Notes#

Use html_receipt, url_print, or url_print_receipt when you need to show or print the formatted receipt.
Monetary fields (m_*) are strings representing decimal values; convert as needed in your client.
This endpoint is read‑only and has no request body.

Request

Query Params

Responses

🟢200
application/json
Body

Request Request Example
Shell
JavaScript
Java
Swift
curl --location -g --request GET '/v1/purchase/receipt?id_region={{id_region}}&k_business={{k_business}}&k_purchase=undefined' \
--header 'Content-Type: text/plain' \
--data-raw ''
Response Response Example
{}
Modified at 2026-02-26 17:13:05
Previous
/v1/promotion/list
Next
/v1/report/data
Built with