Boxo Payments
Introduction
Boxo Payments is an in-app payment functionality that enables host app users to complete payments for orders within the miniapp.
Boxo Payments flow
Here is a diagram illustrating the payment process for a miniapp order using the host app’s payment system.
- The user navigates to the payment page in the miniapp and initiates the creation of an order.
- The miniapp server creates the order and sends a createOrderPayment request to the Boxo Platform.
- The Boxo Platform initiates the order payment process on the host app server.
- The host app server returns an orderPaymentID to the Boxo Platform.
- The Boxo Platform then forwards the orderPaymentID to the miniapp server.
- The miniapp server passes the orderPaymentID to the miniapp.
- The miniapp forwards the orderPaymentID to the Boxo JS SDK’s
pay
method. - The Boxo Native SDK captures the Boxo JS SDK’s pay event (with the orderPaymentID) and displays a payment confirmation page to the user.
- The user confirms the payment.
- The host app processes the payment and sends the payment status as a response to the Boxo JS SDK pay event.
- During this process, the host app server sends a callback to the Boxo Platform, which updates the order status in the miniapp backend.
- The miniapp processes the payment status received from the Boxo JS SDK event and confirms the order payment status on its server.
- The miniapp finalizes the order payment status.
- If the order is still processing at this stage, the miniapp will request the payment status from the Boxo Platform, which, in turn, will query the host app server for an update.
- Finally, the miniapp displays the order payment status page to the user.
Setting up the backend
*Note: Feature must be enabled in Dashboard Partnership
Data format
Currently, JSON is used for data exchange. Decimal values can be represented as floats, numbers, or strings, with a maximum of 20 digits in total and up to 2 digits after the decimal point. String size limits are defined within the data type specifications.
1. “Create Order Payment” Endpoint
This endpoint allows the Boxo Platform to create an order payment (refer to Step 3 in the diagram).
URL and METHOD:
This endpoint must handle a HTTPS POST request URL to endpoint must be provided in Dashboard
Headers:
Key | Value |
---|---|
Authorization | <prefix> <base64 encoded(hostapp_client_id:hostapp_secret_key)> |
Content-type | application/json |
-
Default
<prefix>
:Token
. Access token prefix can be set in Boxo Connect. -
To use user access token from Boxo Connect as authorization token enable
Use access token
in Dashboard. -
hostapp_client_id
andhostapp_secret_key
must be provided in Dashboard
Body
Field | Data type | Description |
---|---|---|
app_id | String | Miniapp identifier |
order | OrderDetails | Order info (amount, currency and etc.) |
OrderDetails:
Field | Data type | Optional | Description |
---|---|---|---|
product_name | String(250) | Yes | Product name |
product_variant_name | String(250) | Yes | Product variant name |
product_sku | String(250) | Yes | Product SKU |
product_image_url | String(250) | Yes | Product image url |
quantity | Integer | Yes | |
price | Decimal | Yes | |
discount | Decimal | Yes | Discount applied on a product |
OrderShippingAddress:
Field | Data type | Optional | Description |
---|---|---|---|
address1 | String(1000) | Yes | |
address2 | String(1000) | Yes | |
first_name | String(250) | Yes | |
last_name | String(250) | Yes | |
phone | String(250) | Yes | |
region_name | String(100) | Yes | |
region_code | String(100) | Yes | |
province_name | String(250) | Yes | |
province_code | String(250) | Yes | |
city | String(250) | Yes | |
country | String(250) | Yes | |
postal_code | String(250) | Yes | |
latitude | Decimal | Yes | Decimal limits: max 17 digits, 15 digits after decimal point. Max value: 90, Min value: -90 |
longitude | Decimal | Yes | Decimal limits: max 18 digits, 15 digits after decimal point. Max value: 180, Min value: -180 |
Response:
-
Response status must be
200
in all cases -
Response body:
Field | Data type | Optional | Description |
---|---|---|---|
order_payment_id | String(250) | Yes | Order payment identifier |
error_code | String | Yes | If some error is occured error code should be provided. Example: {"error_code": "INVALID_ORDER_DATA"} All error codes can be found here |
Request Example:
2. “Get Order Payment Status” Endpoint
This endpoint is for Boxo platform to get order payment status
URL and METHOD
This endpoint must handle a HTTPS POST request URL to endpoint must be provided in Dashboard
Headers
Key | Value |
---|---|
Authorization | <prefix> <base64 encoded(hostapp_client_id:hostapp_secret_key)> |
Content-type | application/json |
Default <prefix>
: Token. Access token prefix can be set in Boxo Connect.
To use user access token from Boxo Connect as authorization token enable Use access token
in Dashboard.
hostapp_client_id
and hostapp_secret_key
must be provided in Dashboard
Body
Field | Data type | Description |
---|---|---|
app_id | String | Miniapp identifier |
client_id | String | Hostapp identifier |
order_payment_id | String | Order payment identifier |
Response
-
Response status must be
200
in all cases -
Response body
Field | Data type | Description |
---|---|---|
app_id | String | Miniapp identifier |
client_id | String | Hostapp identifier |
order_payment_id | String | Order payment identifier |
Request Example
3. Webhook “Complete Order Payment”
This endpoint is part of the Boxo Platform. It sends a request to the miniapp server to complete the order payment after the payment has been processed (refer to the step after 10 in the diagram).
URL and METHOD
This is HTTPS POST /api/v1/orders/complete-order/
endpoint
IP address of requesting services must be provided in Dashboard for whitelisting or Request Signaturing must be enabled
Headers
Key | Value |
---|---|
Content-type | application/json |
Body
Field | Data type | Optional | Description | |||
---|---|---|---|---|---|---|
order_payment_id | String(250) | Yes, in case error_code passed | Order payment identifier | |||
app_id | String | Yes, in case error_code passed | Miniapp identifier | |||
client_id | String | Yes, in case error_code passed | Hostapp identifier | |||
payment_status | String(100) | Yes, in case error_code passed | Order payment status: ```in_process | paid | cancelled | failed``` |
payment_fail_reason | String | Yes | Order payment fail reason | |||
error_code | String | Yes | If some error is occured error code should be provided. Example: {"error_code": "ORDER_NOT_FOUND"} All error codes can be found here |
Response:
-
Response status will be
400
in case there is error_code -
Response body:
Field | Data type | Description |
---|---|---|
code | String | Request result code example: SUCCESS |
message | String | Result message |
error_code | String | Error code |
error_message | String | Result error message. All error codes can be found here |
Request Example
Response Example
Setting up the SDK
Listening for Payment event
iOS
Android
Kotlin
Flutter
Appboxo.setConfig('[CLIENT_ID]', multitaskMode: true);
React Native
appboxosdk.setConfig('[CLIENT_ID]', { enableMultitaskMode: true })