post https://api.sandbox.midtrans.com/v2//approve
Approve transaction is triggered to accept the card payment transaction with fraud_status:challenge
.
Approve Transaction Method
See sample on the right -- try it yourself!
HTTP Method | Endpoint | Definition |
---|---|---|
POST | BASE_URL/v2/{order_id OR transaction_id}/approve | Approve challenged transaction |
Approve Transaction Response
{
"status_code" : "200",
"status_message" : "Success, transaction is approved",
"transaction_id" : "ca297170-be4c-45ed-9dc9-be5ba99d30ee",
"masked_card" : "45111111-1117",
"order_id" : "testing-0.4555-1414741517",
"payment_type" : "credit_card",
"transaction_time" : "2014-10-31 14:46:44",
"transaction_status" : "capture",
"fraud_status" : "accept",
"bank" : "bni",
"gross_amount" : "30000.00"
}
{
"status_code" : "412",
"status_message" : "Merchant cannot modify the status of the transaction"
}
JSON Attribute | Description | Type |
---|---|---|
transaction_id | Transaction ID given by Midtrans. | String |
order_id | Order ID specified by you. | String |
gross_amount | Total amount of transaction in IDR. | String |
payment_type | The payment method used by the customer. | String |
transaction_time | Timestamp of transaction in ISO 8601 format. Time Zone: GMT+7. | String |
transaction_status | Transaction status after charge credit card transaction. Possible values arecapture : Transaction is accepted by the bank and ready for settlement. deny : Transaction is denied by the bank or FDS.authorize : Credit card is authorized in pre-authorization feature. | String |
fraud_status | Detection result by Fraud Detection System (FDS). Possible values areaccept : Approved by FDS.challenge : Questioned by FDS. Note: Approve transaction to accept it or transaction gets automatically canceled during settlement. deny : Denied by FDS. Transaction automatically failed. | String |
masked_card | First 8-digits and last 4-digits of customer's credit card number. | String |
status_code | Status code of transaction charge result. | String |
bank | The name of the acquiring bank. | String |
status_message | Description of transaction charge result. | String |