getOrgRepoList
getOrgRepoList
Path Parameters
- orgPath requiredThe path of the organization to which the code repository belongs, which is not case sensitive. 
Query Parameters
- per_pageper_page 
- pagepage 
- searchquery-search,fuzzy query repo name 
Header Parameters
- Authorization requiredOauth2 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 booleanis it a private repository 
- id longrepo id 
- full_name stringabsolute path of the repo 
- name stringrepo name 
- description stringrepo description 
- default_branch stringrepo default branch 
- git_url stringrepo ssh clone url 
- html_url stringrepo http clone url 
- ]
[
  {
    "private": true,
    "full_name": "string",
    "name": "string",
    "description": "string",
    "default_branch": "string",
    "git_url": "string",
    "html_url": "string"
  }
]
Loading...