To indicate that an order should be charged in monthly installments the filed "monthly_installments" should be included within the charge of the order, as well as the number of months desired.
Conekta accepts 3 months, 6 months, 9 months, and 12 months.
Number of Months | Minimum Amount |
3 | $300 MXN pesos |
6 | $600 MXN pesos |
9 | $900 MXN pesos |
12 | $1200 MXN pesos |
Below an example in each of the languages we offer:
PHP charges' => array( array( payment_method' => array( type' => 'default', monthly_installments' => 3 ) ) )
NODE.js "charges": [{ "payment_method": { "type": "default", "monthly_installments": 3 } }]
Java "'charges':[{" "'payment_method': {" "'type': 'default'," "'monthly_installments': 3" "}" "}],"
.NET charges"": [{ payment_method"": { type"": ""default"", monthly_installments"": 3 } }]
RUBY :charges => [{ :payment_method => { :type => "default", :monthly_installments => 3 } }]
PYTHON charges: [{ payment_method: { type: "default", monthly_installments: 3 } }]
Comments
0 comments
Please sign in to leave a comment.