Get account payment limits

Returns the authenticated account payment-order limits and remaining headroom. Per-transaction maxTxUsd is a ceiling, so its used value is always 0. Limits are shared across an account and its subaccounts: the ceilings belong to the parent and the usage counts every subaccount, so subaccountId changes which account the response names but not the numbers.

Query Parameters
  • subaccountId
    Type: string Format: uuid

    Scope this read to one of your subaccounts instead of the authenticated account. Must be a direct child of the authenticated account.

Responses
  • application/json
  • application/json
  • application/json
  • application/json
  • application/json
Request Example for get/api/v1/account/limits
curl https://api.bettermoney.com/api/v1/account/limits
{
  "accountId": "123e4567-e89b-12d3-a456-426614174000",
  "maxTxUsd": {
    "limit": 1,
    "used": 1,
    "remaining": 1
  },
  "maxCountPerEpoch": {
    "limit": 1,
    "used": 1,
    "remaining": 1
  },
  "maxValuePerEpochUsd": {
    "limit": 1,
    "used": 1,
    "remaining": 1
  },
  "maxCountPerDay": {
    "limit": 1,
    "used": 1,
    "remaining": 1
  },
  "maxValuePerDayUsd": {
    "limit": 1,
    "used": 1,
    "remaining": 1
  }
}