Skip to main content
GET
/
github-intake
/
getGeneralIntake
/
:githubIntakeId
Get General Intake Data
curl --request GET \
  --url https://www.api.baselink.tech/github-intake/getGeneralIntake/:githubIntakeId \
  --header 'bearer: <api-key>'
{
  "intake": {},
  "intake.id": "<string>",
  "intake.repoDataId": "<string>",
  "intake.eventType": "<string>",
  "intake.hookType": "<string>",
  "intake.workflowAction": "<string>",
  "intake.workflowConclusion": "<string>",
  "intake.addedDate": "<string>",
  "intake.rawData": {},
  "intake.processed": true
}
Retrieve general intake data for a specific GitHub intake record.
intake
object
The intake data object.
intake.id
string
The unique identifier of the intake record.
intake.repoDataId
string
The ID of the associated repository.
intake.eventType
string
The type of GitHub event (push, pull_request, issues, etc.).
intake.hookType
string
The type of webhook that triggered the intake.
intake.workflowAction
string
The workflow action (if applicable).
intake.workflowConclusion
string
The workflow conclusion (if applicable).
intake.addedDate
string
The timestamp when the intake was created.
intake.rawData
object
The raw GitHub webhook payload data.
intake.processed
boolean
Whether the intake data has been processed.