Skip to main content
GET
/
budget_alerts
Get all budget alerts
curl --request GET \
  --url https://api.vantage.sh/v2/budget_alerts \
  --header 'Authorization: Bearer <token>'
{
  "links": {},
  "budget_alerts": [
    {
      "token": "<string>",
      "budget_tokens": [
        ""
      ],
      "created_at": "2024-03-19T00:00:00Z",
      "workspace_token": "<string>",
      "user_token": "<string>",
      "user_tokens": [
        ""
      ],
      "duration_in_days": "<string>",
      "threshold": "75",
      "period_to_track": "start_of_the_month",
      "integration_provider": "slack",
      "recipient_channels": ""
    }
  ]
}

Authorizations

Authorization
string
header
required

The access token received from the authorization server in the OAuth 2.0 flow.

Query Parameters

page
integer<int32>

The page of results to return.

limit
integer<int32>

The number of results to return. The maximum is 1000.

Response

200 - application/json

BudgetAlerts model

budget_alerts
object[]