Skip to main content
GET
/
user
/
account
/
limit
Get Account Daily Spending Limit
const options = {method: 'GET'};

fetch('https://gp-auth-module.prod.gnosispay.com/user/account/limit', options)
  .then(res => res.json())
  .then(res => console.log(res))
  .catch(err => console.error(err));
{
  "amount": 123,
  "currency": "<string>",
  "decimals": 123,
  "updatedAt": "2023-11-07T05:31:56Z"
}

Documentation Index

Fetch the complete documentation index at: https://gnosispay-feat-v2-auth-module.mintlify.app/llms.txt

Use this file to discover all available pages before exploring further.

Response

Account limit retrieved successfully

amount
integer
required

Daily limit in the currency's smallest unit (e.g. cents for USD). Divide by 10^decimals to get the major-unit value. For USD (decimals=2): amount=1000 means $10.00, amount=1000000 means $10,000.00.

currency
string
required

ISO-4217 currency code, e.g. USD.

decimals
integer
required

Number of decimal places for this currency (e.g. 2 for USD).

syncStatus
enum<string>
required

Replication state of the limit. 'pending' immediately after an update, 'synced' once the change has been applied downstream, 'failed' if the change could not be applied after retries.

Available options:
pending,
synced,
failed
updatedAt
string<date-time>
required

Last time this limit was modified.