Wallet Resource

🚧

Beta testing phase

If you are interested in early access to this feature please contact support@paymongo.com!


{
  "data": {
    "id": "wallet_xxxxxxxxxxxxxxxxxxxxxxxx",
    "type": "wallet",
    "attributes": {
      "account_number": "000000000000",
      "available_balance": 0,
      "limits": {
        "balance": 5000000,
        "transactions": {
          "batch_transfer": {
            "paymongo": {
              "daily": 999999999999999999,
              "monthly": 5000000
            }
          },
          "cash_in": {
            "daily": 999999999999999999,
            "monthly": 1000000
          },
          "send_money": {
            "paymongo": {
              "daily": 999999999999999999,
              "monthly": 5000000
            }
          }
        }
      },
      "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

Attribute

Description

daily.cash_in

Daily cash in limit of wallet in cents 999999999999999999 - default

daily.send_money

Daily send money limit of wallet in cents 999999999999999999 - default

daily.withdrawal

Daily withdrawal limit of wallet in cents 999999999999999999 - default

monthly.cash_in

Monthly cash in limit of wallet in cents 999999999999999999 - default

monthly.send_money

Monthly send money limit of wallet in cents 999999999999999999 - default

monthly.withdrawal

Monthly 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