Skip to main content
PUT
/
limits
/
daily-withdrawal
Set Daily Withdrawal Limit
curl --request PUT \
  --url https://api.meow.com/v1/limits/daily-withdrawal \
  --header 'Content-Type: application/json' \
  --header 'x-api-key: <api-key>' \
  --data '
{
  "daily_withdrawal_limit": "25000"
}
'
{
  "daily_withdrawal_limit": "<string>",
  "max_daily_withdrawal_limit": "100000",
  "spent_today": "<string>",
  "remaining_today": "<string>"
}

Authorizations

x-api-key
string
header
required

Your Meow API key, sent in the x-api-key header for authentication.

Headers

x-entity-id
string<uuid>

Optional entity_id to scope requests to a specific entity.

Body

application/json
daily_withdrawal_limit
required

The most, in USD, that can be withdrawn from your accounts in a single day across all transfer types. Must be a whole dollar amount from 0 up to the maximum set for your entity. Set it to 0 to block all outbound transfers while you collect funds.

Required range: 0 <= x <= 1000000000Must be a multiple of 1
Example:

"25000"

Response

Successful Response

daily_withdrawal_limit
string
required

The most, in USD, that can be withdrawn from your accounts in a single day across all transfer types. This is the limit enforced on outbound transfers today.

Pattern: ^(?!^[-+.]*$)[+-]?0*\d*\.?\d*$
Example:

"50000"

max_daily_withdrawal_limit
string | null
required

The highest daily withdrawal limit you can set, in USD. When null, no maximum is configured for your entity yet, so you can only lower the limit. Contact support@meow.com to raise it.

Pattern: ^(?!^[-+.]*$)[+-]?0*\d*\.?\d*$
Example:

"100000"

spent_today
string
required

The total, in USD, you have already withdrawn today.

Pattern: ^(?!^[-+.]*$)[+-]?0*\d*\.?\d*$
Example:

"12500"

remaining_today
string
required

How much more, in USD, you can withdraw today before reaching your daily limit.

Pattern: ^(?!^[-+.]*$)[+-]?0*\d*\.?\d*$
Example:

"37500"