getOrgRepoList
getOrgRepoList
Path Parameters
- orgPath required
The path of the organization to which the code repository belongs, which is not case sensitive.
Query Parameters
- per_page
per_page
- page
page
- search
query-search,fuzzy query repo name
Header Parameters
- Authorization required
Oauth2 token or Privatetoken(start with Bearer and a space)
Responses
- 200
- 404
- responseBody
Success
resouce not found
- application/json
- Schema
- Example (from schema)
Schema
- Array [
- private boolean
is it a private repository
- id long
repo id
- full_name string
absolute path of the repo
- name string
repo name
- description string
repo description
- default_branch string
repo default branch
- git_url string
repo ssh clone url
- html_url string
repo http clone url
- ]
[
{
"private": true,
"full_name": "string",
"name": "string",
"description": "string",
"default_branch": "string",
"git_url": "string",
"html_url": "string"
}
]
Loading...