Skip to main content
GET
/
combined-data
/
paginated
/
forTeam
/
allIntakes
/
:teamDataId
Get Paginated Intakes for Team
curl --request GET \
  --url https://www.api.baselink.tech/combined-data/paginated/forTeam/allIntakes/:teamDataId \
  --header 'bearer: <api-key>'
{
  "intakes": [
    {}
  ],
  "pagination": {},
  "pagination.total": 123,
  "pagination.limit": 123,
  "pagination.offset": 123,
  "pagination.hasMore": true,
  "teamInfo": {},
  "teamInfo.teamId": "<string>",
  "teamInfo.teamName": "<string>",
  "teamInfo.repositoryCount": 123
}
Retrieve paginated intake data for a specific team.
intakes
array
Array of paginated intake data objects for the team.
pagination
object
Pagination information.
pagination.total
number
Total number of records available.
pagination.limit
number
Number of records per page.
pagination.offset
number
Current offset.
pagination.hasMore
boolean
Whether there are more records available.
teamInfo
object
Information about the team.
teamInfo.teamId
string
The ID of the team.
teamInfo.teamName
string
The name of the team.
teamInfo.repositoryCount
number
The number of repositories in the team.