Parsing codebase
Reminder: The github app we created earlier will need access to the repo.
Steps to Grant Access to Repositories
Go to your GitHub account.
Navigate to the GitHub app installation settings.
Select the app you created.
Update the repository access permission to repository you want to parse.
POST
/parse
This endpoint allows you to parse the codebases that the GitHub app has access to. Ensure the app has the necessary permissions to access the repositories you want to parse. You can update the app's access permissions through the GitHub app installation settings.
Headers
Name | Value |
---|---|
Content-Type |
|
Authorization |
|
Body
Name | Type | Sample |
---|---|---|
| string | username/repo-name |
| string | feature |
Response
Notes
Ensure that the
Authorization
header contains a valid token obtained during the login process.The
repo_name
should be in the formatusername/repo-name
, do not use a complete url.The
branch_name
should be a valid branch in the specified repository.
Last updated