Response
Less than 1 minute
HTTP Request
Area | Field | Attribute | Type | Description |
---|---|---|---|---|
Header | Content-Type | M | String | application/json |
X-TIMESTAMP | M | String | yyyy-MM-ddTHH:mm:ss[zoneOffset] eg: 2020-12-17T10:55:00+07:00 |
Body Parameters
Area | Field | Attribute | Type | Description |
---|---|---|---|---|
Body | code | M | String | success = "00" |
message | M | String | Response message | |
orderNo | M | String | transaction unique no | |
merchant | M | Merchant | Merchant | |
disbursementTime | M | String | yyyy-MM-ddTHH:mm:ss+07:00 eg: 2020-12-17T10:55:00+07:00 | |
money | M | Money | Money | |
channel | M | Payer | CashChannel | |
tradeNo | O | String | smilepayz order no | |
status | O | String | TransactionStatus |
Example Body – Transaction Request:
Content-type: application/json
X-TIMESTAMP: 2020-12-17T10:55:00+07:00
{
"code": "00",
"message": "successful",
"orderNo": "2000102900000000000001",
"tradeNo": "20231032432400001",
"status": "PROCESSING",
"disbursementTime": "2020-12-17T10:55:00+07:00",
"merchant": {
"merchantId": "10002",
"merchantName": "Betty",
"accountNo": "2033924234782342"
},
"money": {
"currency": "IDR",
"amount": 10000
},
"channel": {
"paymentMethod": "BRI",
"cashAccount": "78120011629261665",
"accountName": "Betty"
}
}