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,
      "livemode": true,
      "limits_profile": {
        "balance_limit": 999999999999999999,
        "daily": {
            "inward_limit": 999999999999999999,
            "outward_limit": 10000000
        },
        "monthly": {
            "inward_limit": 50000000,
            "outward_limit": 999999999999999999
        }
      },
      "status": "deactivated",
      "created_at": 1693385812,
      "statement_of_acceptance_signed_at": null,
      "updated_at": 1693385812
    }
  }
}

id string
Unique ID of the resource.


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


account _number string
Account number of wallet


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.


limits_profile.attibutes dictionary

AttributeDescription
balance_limitHow much an account is able to carry at any given point, in cents and PHP currency. Balance must always be at or below this set limit, but above or at zero. A positive integer with a default value of 999999999999999999
daily.inward_limitHow much an account is able to receive in a day in cents and PHP currency. A positive integer with a default value of 999999999999999999
daily.outward_limitHow much an account is able to send in a day in cents and PHP currency. A positive integer with a default value of 10000000
monthly.inward_limitHow much an account is able to receive in a month in cents and PHP currency. A positive integer with a default value of 50000000
monthly.outward_limitHow much an account is able to send in a month in cents and PHP currency. A positive integer with a default value of 999999999999999999

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.


statement_of_acceptance_signed_at string
Timestamp when the merchant signs the SOA. The default value is null .


status string
Status of the wallet

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


type string
Identifier of the merchant wallet transaction limits

Possible values:
basic- default
fully_verified - verified merchants


created_at date
Created date of the wallet


updated_at date
Updated date of the wallet