Posting Orders Through Hang
The Orders API allows partners to post transactions to Hang via the Partner API. These orders can be tied to users via a program membership to accrue points based on spend and process redemptions of rewards, or can be used without a program membership to store a historical record of orders. This API is intended for orders outside of platforms that Hang already integrates with (Square, Toast, etc.) as those orders are automatically processed.
Request Parameters
The top level parameter is payload
The payload
object contains
program_membership_id
- The Id of the Program Membership if applicableexternal_location_id
- The identifier of the location for the orderexternal_location_type
- The type of the external locationexternal_order_guid
(required) - Unique identifier of the order from the external systemmerchant_pos_system
(required) - Type of system that the order originates fromtype
(required) - The type of orderpayment.created
payment.updated
refund.created
refund.updated
order_source
(required) - The source of the order (for example your company's name)order
(required) - The contents of the order, outlined below
The order
object contains
amount
(required) - The total amount spent or refundedsubtotal
(required) - The amount before fees, taxes etc. but net of discountstax
(required) - The total tax on the ordertip
- The total tip on the orderapplied_discounts
- The UUIDs of the discounts (if any) applied to the check at the order levelline_items
(required) - An array ofline_item
objects, outlined belowfees
- An array offee
objects, outlined below
The payment
object contains
provider
- string - The name of the payment provider used to process paymentspayment_token
- string - The unique payment identifier token returned from the payment processor.
The line_item
object contains
tax
(required) - The tax for the line itemquantity
(required) - Quantity of the itemprice
(required) - The price per unit of the itemexternal_item_guid
(required) - The GUID of the itemexternal_multi_location_item_id
- The multi location ID of the item, if applicableexternal_group_guid
- The GUID of the group the item belongs to, if applicableexternal_multi_location_group_id
- The multi location ID of the group, if applicableapplied_discounts
- The UUIDs of the discounts (if any) applied at the item level
The fee
object contains
name
(required) - The name of the fee (delivery, service charge, etc.)amount
(required) - The amount for the fee, in cents
Example Request
Here's an example of a valid POST
request to the orders endpoint:
Example Response
Success
Failure
On failure, a response will be returned with error messages outlining the cause of the error.
Posting Orders
Error Handling
The API provides error messages for guidance in case of issues. This assists in rapid resolution and smooth operation.
Parameters and Responses
Each endpoint requires specific parameters. For full details on request parameters and expected responses, please refer to the individual endpoint documentation in our API reference.
Last updated