Local Payment Methods

Pix

Is an instant payment system created by the Central Bank of Brazil. This electronic money transfer is available 24/7 for end-users and can occur within seconds.

curl https://core.spreedly.com/v1/payment_methods.json \
 -u 'C7cRfNJGODKh4Iu5Ox3PToKjniY:4UIuWybmdythfNGPqAqyQnYha6s451ri0fYAo4p3drZUi7q2Jf4b7HKg8etDtoKJ' \
 -H 'Content-Type: application/xml' \
 -d '{
    "payment_method": {
      "email": "test@test.com",
      "payment_method_type": "pix",
      "full_name": "Full Name",
      "document_id": "71575743221",
      "country": "BR",
      "zip": "12345",
      "address1": "1234 test ave",
      "city": "Rio",
      "state": "CE",
      "phone_number": "8522847035"
    }
  }'

Boleto Bancario

Is a Brazilian voucher payment that can be used in two ways. The consumers can print it and pay it in cash at more than 200 thousand payment locations, or it can be paid electronically through internet banking. Payment confirmation in one business day.

curl https://core.spreedly.com/v1/payment_methods.json \
 -u 'C7cRfNJGODKh4Iu5Ox3PToKjniY:4UIuWybmdythfNGPqAqyQnYha6s451ri0fYAo4p3drZUi7q2Jf4b7HKg8etDtoKJ' \
 -H 'Content-Type: application/xml' \
 -d '{
    "payment_method": {
      "email": "test@test.com",
      "payment_method_type": "boleto_bancario",
      "full_name": "Full Name",
      "document_id": "71575743221",
      "country": "BR",
      "zip": "12345",
      "address1": "1234 test ave",
      "city": "Rio",
      "state": "CE",
      "phone_number": "8522847035"
    }
  }'

OXXO

Is Mexico’s preferred voucher payment, where consumers can pay in cash for online purchases in over 18,000 stores across the country. Payment confirmation takes up to one business day.

curl https://core.spreedly.com/v1/payment_methods.json \
 -u 'C7cRfNJGODKh4Iu5Ox3PToKjniY:4UIuWybmdythfNGPqAqyQnYha6s451ri0fYAo4p3drZUi7q2Jf4b7HKg8etDtoKJ' \
 -H 'Content-Type: application/xml' \
 -d '{
    "payment_method": {
      "email": "test@test.com",
      "payment_method_type": "oxxo",
      "full_name": "Full Name",
      "document_id": "71575743221",
      "country": "MX"
      "phone_number": "0405777687"
    }
  }'