v5

latestOpenAPI 3.1.02026-07-262421791.5 MB
spend-limits

Retrieve profile limits

Retrieves the spend limits that are configured for a profile.

get/v4/spend/profiles/{profileId}/spend-limits

Path parameters

profileIdinteger required

The profile ID.

Headers

X-External-Correlation-Idstring uuid

Optional UUID for correlating requests across systems. If provided, Wise echoes it back in the response. Maximum 36 characters. Learn more.

Response

Profile spend limits.

Example response

{
  "spendLimits": [
    {
      "aggregateWindow": {
        "daily": {
          "value": {
            "amount": 20000,
            "currency": "GBP"
          },
          "usage": {
            "currency": "GBP"
          },
          "max": {
            "amount": 30000,
            "currency": "GBP"
          },
          "resetAt": "2023-07-31T22:59:59.999999999Z"
        },
        "monthly": {
          "value": {
            "amount": 20000,
            "currency": "GBP"
          },
          "usage": {
            "currency": "GBP"
          },
          "max": {
            "amount": 30000,
            "currency": "GBP"
          },
          "resetAt": "2023-07-31T22:59:59.999999999Z"
        }
      }
    }
  ]
}