Cardless ATM cash-out allows users to cash-out funds without the need of an ATM card or a bank account.

Philippines

Cardless cash outs within the Philippines are possible through the eGiveCash payout outlet . Users will be able to claim their cash out in any of the 450+ Security Bank ATMs across the Philippines, 24/7.

Thailand

Cardless cash outs within Thailand are possible through Krungthai ATM Cardless, 7-11, BBL, and BAY payout outlets. Users will be able to claim their cash out in 9000+ ATMs, and 8000+ 7-11 outlets, 24/7.

You can use the Coins API to disburse cash to your customers via the cardless ATM option. As an example, let's use the Philippine cardless ATM option.

Prerequisites

  • Your account must be ID verified
  • Your account must be business verified. For more information, you may contact [email protected].
  • Your recipient should have a phone number

Creating the Cash Out

Creating cash outs for cardless ATM options is the same as creating cash outs using other outlets. We'll use the sellorder API to disburse cash to our customer.

import requests

TOKEN = 'YOUR TOKEN'  #OAuth2
url = 'https://coins.ph/api/v2/sellorder'

headers = {
    'Authorization': 'Bearer {}'.format(TOKEN),
    'Content-Type': 'application/json;charset=UTF-8',
    'Accept': 'application/json'
}

body = {
    'amount': 10000,
    'currency': 'PHP',
    'payment_outlet': 'egivecash',
    'pay_with_wallet': 'PBTC',
    'recipient_full_name': 'Bob Alice',
    'recipient_mobile': '+639981234567'
}

requests.post(url, headers=headers, data=body)

A successful request will yield the following result:

{
  "order": {
    "btc_amount": 1,
    "confirmation_code": "9d6eb",
    "expires_epoch": "1402483355",
    "fields": {
      "recipient_full_name": "Bob Alice",
      "recipient_mobile": "+639981234567"
    },
    "id": "9d6eb8f98b754cd7aa9d8d930054cda1",
    "payment_outlet_id": "egivecash",
    "qr_img_uri": "https://some.url",
    "user_uri": "https://coins.ph/sellorder/9d6eb8f98b754cd7aa9d8d930054cda1",
    "wallet_address": "1234fasdf134"
  },
  "success": true
}

Your recipient should now receive an SMS message that contains claiming instructions.