Payment
Payment notify
The notification for payment result.
Callback API
Notify the caller when the order status changes using the provided callback_url
, details for Create payment order callback_url
param
Callback event
Callback Event Name (event_name) | Callback Event Type (event_type) | Description |
---|---|---|
order | expired | Order Timeout Notification |
order | paid | Payment Completed Notification |
Request method
- Method: HTTP POST
- Content-Type: application/json
- If the response is the string “success”, the callback is successful; otherwise, it fails.
Request parameters
Name | Type | Description |
---|---|---|
event_name | string | Event name |
event_type | string | Event type |
data | JSONString | Order information |
pid | integer(int64) | Project ID |
nonce | string | 6 random string |
timestamp | integer(int64) | Timestamp |
sign | string | Signature |
data
Object
Name | Type | Description |
---|---|---|
cregis_id | string | Cregis unique id |
order_id | string | Merchant’s custom unique order ID |
receive_amount | string | The amount of the order after exchange rate conversion |
receive_currency | string | The order currency code after exchange rate conversion |
pay_amount | string | Actual Received Amount |
pay_currency | string | Received currency |
order_amount | string | Order transaction amount, defined by the merchant |
order_currency | string | Order currency code, i.e. ISO 4217 currency code, such as CNY, HKD, defined by the merchant |
exchange_rate | string | Exchange rate |
payment_address | string | Payment wallet address |
created_time | integer(int64) | Order creation timestamp in 13-digit |
cancel_time | integer(int64) | Order expiration cancel timestamp in 13-digit |
transact_time | integer(int64) | Order transaction timestamp in 13-digit |
valid_time | integer | To determine the order expiration time , if not specified, the order expiration time will be 30 minutes as default. Please input in minutes. Minimum is 10 minutes |
status | string | Order Status: new - Initial status of the order paid - The order has been successfully paid expired - The order has exceeded the valid time paid_over - Payment exceeds the order amount paid_partial - Payment is less than the order amount |
remark | string | Remarks |
tx_id | string | Transaction hash |
payer_id | string | Payer unique ID. No more than 32 characters |
payer_name | string | Payer’s name. No more than 32 characters |
payer_email | string | Payer email |