Wallet Account Resource

🚧

This is an early access feature.

If you would like your account to be configured, please contact [email protected]

{
  "data": {
    "id": "wallet_xxxxxxxxxxxxxxxxxxxxxxxx",
    "type": "wallet",
    "attributes": {
      "account_number": "000000000000",
      "available_balance": 0,
      "transaction_limits": {
        "daily": {
            "cash_in": 999999999999999999,
            "send_money": 999999999999999999,
            "withdrawal": 999999999999999999
        },
        "monthly": {
            "cash_in": 999999999999999999,
            "send_money": 999999999999999999,
            "withdrawal": 999999999999999999
        }
      },
      "livemode": true,
      "status": "deactivated",
      "type": "basic",
      "created_at": 1693385812,
      "updated_at": 1693385812
    }
  }
}

data.id string
Unique ID of the resource.


data.type string
Represents the resource type. Value is account for account resources.


data.attributes.account_number string
Account number of wallet


data.attributes.available_balance integer
A number representing how much money, in cents, an account has, in Philippine Pesos. A balance of 10000 means that the account has PHP 100 stored within it.


data.attributes.transaction_limits dictionary

AttributeDescription
daily.cash_inDaily cash in limit of wallet in cents
999999999999999999 - default
daily.send_moneyDaily send money limit of wallet in cents
999999999999999999 - default
daily.withdrawalDaily withdrawal limit of wallet in cents
999999999999999999 - default
monthly.cash_inMonthly cash in limit of wallet in cents
999999999999999999 - default
monthly.send_moneyMonthly send money limit of wallet in cents
999999999999999999 - default
monthly.withdrawalMonthly withdrawal limit of wallet in cents
999999999999999999 - default

data.attributes.livemode boolean

Determines whether or not the wallet account is a test or live mode account. The account is live and uses real money when livemode is true, and otherwise, it is in test mode when false.


data.attributes.status string
Status of the wallet

Possible values:
activated - wallet is active
deactivated - default status, wallet is not active


data.attributes.type string
Identifier of the merchant wallet transaction limits

Possible values:
basic- default
fully_verified - verified merchants


data.attributes.created_at date
Created date of the wallet


data.attributes.updated_at date
Updated date of the wallet