Skip to main content
GET
/
combined-data
/
forUser
/
allIntakes
Get All Intakes for User
curl --request GET \
  --url https://www.api.baselink.tech/combined-data/forUser/allIntakes \
  --header 'bearer: <api-key>'
{
  "intakes": [
    {}
  ],
  "intakes[].id": "<string>",
  "intakes[].userId": "<string>",
  "intakes[].teamDataId": "<string>",
  "intakes[].repoDataId": "<string>",
  "intakes[].repoName": "<string>",
  "intakes[].eventType": "<string>",
  "intakes[].hookType": "<string>",
  "intakes[].workflowAction": "<string>",
  "intakes[].workflowConclusion": "<string>",
  "intakes[].addedDate": "<string>",
  "intakes[].isRelevant": true
}
Retrieve all intake data for the current user across all teams and repositories.
intakes
array
Array of intake data objects for the user across all accessible repositories.
intakes[].id
string
The unique identifier of the intake record.
intakes[].userId
string
The ID of the user.
intakes[].teamDataId
string
The ID of the team.
intakes[].repoDataId
string
The ID of the repository.
intakes[].repoName
string
The name 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[].isRelevant
boolean
Whether this intake is relevant to the current user.