Parameters
The page number of the results you want to retrieve (the first page is 1). See Pagination for more information.
The number of users to be returned per page (max is 100). See Pagination for more information.
Response
The current page being returned (used for pagination purposes).
The number of results being returned per page (used for pagination purposes).
The total number of team groups (used for pagination purposes).
List of team group objects
The team groups’s identifier
The team group’s creation date (in ISO 8601
format)
The team group’s monthly allocated budget
The team group’s one time budget
Whether or not the monthly budget rolls over to the next month or not.
The team group’s organization id
The team group’s last updated date (in ISO 8601
format)
{
"current_page": 1,
"per_page": 1,
"total_groups": 20,
"groups": [
{
"id": 1234,
"budget": 50,
"created_at": "2020-05-01T13:53:05.000-07:00",
"monthly_budget": "50000",
"name": "Field Marketing",
"one_time_budget": 0,
"rollover": true,
"team_id": 5678,
"updated_at": "2022-09-26T11:49:50.000-07:00"
}
]
}