-
Notifications
You must be signed in to change notification settings - Fork 3
Reports
purr106 edited this page Aug 9, 2019
·
3 revisions
| URL | Require Auth | HTTP Method |
|---|---|---|
| "/parse_report" | NO | POST |
| Argument | Example | Description | Type |
|---|---|---|---|
| "username " | "cats" | username | String |
| "password " | "meow" | password | String |
| "projectId" | "3" | id of the tracked project | String |
| "buildNumber" | "25" | version number of CI build | String |
| "testingReport" | "Aseessment-build-25.xml" | testing report file fetched from CI tool | File |
Security issues in the testing report are parsed out.
| URL | Require Auth | HTTP Method |
|---|---|---|
| "/get_reports" | Yes | POST |
| Argument | Example | Description |
|---|---|---|
| "id " | "3" | id of the tracked project |
All reports of selected project.
Example:
{"reports": [{"id": 24, "project_id": 3, "version": "8", "date": "2019-08-07T19:02:08.274Z"}, {"id": 25, "project_id": 3, "version": "8", "date": "2019-08-07T19:04:23.765Z"}, {"id": 20, "project_id": 3, "version": "8", "date": "2019-08-06T15:33:20.774Z"}, {"id": 21, "project_id": 3, "version": "8", "date": "2019-08-06T15:35:05.885Z"}]}