search repositories
Get a list with all the repositories of customer Use filter params to search among the various repositories
Query Parameters
- id string
- selected boolean
- source string
- repoOwner string
- repoName string
- limit int32
Possible values:
>= 1
and<= 100
- offset int32
Responses
- 200
- 422
repositories search
- application/json
- Schema
- Example (from schema)
- Example 1
Schema
data object[] required
Array [creationDate stringcustomerName string requireddefaultBranch stringid string requiredisPublic booleanlastScanDate stringowner string requiredrepository string requiredselected boolean requiredPossible values: [
true
]source string requiredurl string]- hasNext boolean required
{
"data": [
{
"creationDate": "string",
"customerName": "string",
"defaultBranch": "string",
"id": "string",
"isPublic": true,
"lastScanDate": "string",
"owner": "string",
"repository": "string",
"selected": true,
"source": "string",
"url": "string"
}
],
"hasNext": true
}
{
"data": [
{
"creationDate": "2021-11-02T10:19:56.643Z",
"customerName": "mock_customer",
"defaultBranch": "main",
"id": "aaaaaaaa-bbbbbbbb-ccccccc-ddddddd",
"isPublic": false,
"lastScanDate": "2021-11-02T10:19:56.643Z",
"owner": "repo_owner",
"repository": "repo_name",
"selected": true,
"source": "Github",
"url": "https://github.com/repo_owner/repo_name"
}
],
"hasNext": true
}
Request arguments validation error
Loading...