Skip to main content
GET
/
combined-data
/
forTeam
/
allIntakes
/
:teamDataId
Get All Intakes for Team
curl --request GET \
  --url https://www.api.baselink.tech/combined-data/forTeam/allIntakes/:teamDataId \
  --header 'bearer: <api-key>'
{
  "intakes": [
    {}
  ],
  "intakes[].id": "<string>",
  "intakes[].teamDataId": "<string>",
  "intakes[].repoDataId": "<string>",
  "intakes[].eventType": "<string>",
  "intakes[].hookType": "<string>",
  "intakes[].workflowAction": "<string>",
  "intakes[].workflowConclusion": "<string>",
  "intakes[].addedDate": "<string>",
  "intakes[].rawData": {}
}
Retrieve all intake data for a specific team.
intakes
array
Array of intake data objects for all repositories in the team.
intakes[].id
string
The unique identifier of the intake record.
intakes[].teamDataId
string
The ID of the team.
intakes[].repoDataId
string
The ID of the repository.
intakes[].eventType
string
The type of GitHub event (push, pull_request, issues, etc.).
intakes[].hookType
string
The type of webhook that triggered the intake.
intakes[].workflowAction
string
The workflow action (if applicable).
intakes[].workflowConclusion
string
The workflow conclusion (if applicable).
intakes[].addedDate
string
The timestamp when the intake was created.
intakes[].rawData
object
The raw GitHub webhook payload data.