Skip to content

Teams

Manage workspaces (teams). Each team has its own contacts, automations, and sender profiles.

List teams

Request

List all teams (workspaces) the authenticated user has access to.

Security
bearerAuth
Query
limitinteger, (int32)

Items per page (default 20).

Default:20
Example:limit=20
offsetinteger, (int32)

Items to skip (default 0).

Default:0
Example:offset=0
GET
/id/api/teams
curl -i -X GET \
  'https://leadgen.grinfi.io/id/api/teams?limit=20&offset=0' \
  -H 'Authorization: Bearer <YOUR_JWT_HERE>'

Responses

Paginated list of teams.

Bodyapplication/json
dataArray of objects(team)
limitinteger
Example:20
offsetinteger
Example:0
totalinteger
Example:3
has_moreboolean
Response
{ "data": [ {} ], "limit": 20, "offset": 0, "total": 3, "has_more": true }