Skip to main content
GET
/
api
/
v3
/
groups
Get All Team Groups
curl --request GET \
  --url https://app.staging.sendo.so/api/v3/groups \
  --header 'Authorization: Bearer <token>'
{
    "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"
        }
    ]
}

Documentation Index

Fetch the complete documentation index at: https://developer.sendoso.com/llms.txt

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

Parameters

page
integer
The page number of the results you want to retrieve (the first page is 1). See Pagination for more information.
per_page
integer
The number of users to be returned per page (max is 100). See Pagination for more information.

Response

current_page
integer
required
The current page being returned (used for pagination purposes).
per_page
integer
required
The number of results being returned per page (used for pagination purposes).
total_groups
integer
required
The total number of team groups (used for pagination purposes).
groups
array
required
List of team group objects
{
    "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"
        }
    ]
}