2017-01-16 3 views
0

인도에서 웹 응용 프로그램에 대해 VT-Direct 통합 (Mandiri Bill Payment)을 사용하면 고객이 직면 한 문제는 24 시간 후에 만료됩니다. Mandiri 청구서 지불으로 돈을 지불하지 못했습니다. 이걸 Veritans로 48 시간으로 변경하고 싶습니까? 응답은 높이 평가했다.VT- 직접 통합 (Mandiri 청구서 결제) 24 시간 만료

여기 API를 URL입니다 :

https://docs.midtrans.com/en/vtdirect/integration_mbill.html

transaction = { 
    payment_type: 'echannel', 
    transaction_details: { 
     order_id: id_order, 
     gross_amount: total_paid 
    }, 
    item_details: txn_products, 
    echannel: { 
     bill_info1: "Payment For: " + id_order, 
     bill_info2: "debt" 
    } 
}; 

답변

0
transaction = { 
       payment_type: 'echannel', 
       transaction_details: { 
        order_id: id_order, 
        gross_amount: total_paid 
       }, 
       item_details: txn_products, 
       echannel: { 
        bill_info1: "Payment For: " + id_order, 
        bill_info2: "debt" 
       }, 
       custom_expiry: { 
        expiry_duration: 2, 
        unit: 'day' 
       } 
      }; 

추가 custom_expiry 당신은 좋다!