Skip to main content
GET
/
api
/
projects
/
v1
/
projects
/
{projectId}
/
repositories
Get all imported git repositories in this project
curl --request GET \
  --url https://api.example.com/api/projects/v1/projects/{projectId}/repositories \
  --header 'X-Domino-Api-Key: <api-key>'
{
  "metadata": {
    "notices": [
      "<string>"
    ],
    "requestId": "<string>",
    "limit": 123,
    "offset": 123,
    "totalCount": 123
  },
  "repositories": [
    {
      "defaultRef": {
        "value": "<string>"
      },
      "id": "62604702b7e5d347dbe7a908",
      "uri": "https://github.com/torvalds/linux",
      "name": "<string>"
    }
  ]
}

Authorizations

X-Domino-Api-Key
string
header
required

Path Parameters

projectId
string
required

Project ID

Query Parameters

offset
integer

How many Projects from the start to skip. Defaults to 0.

limit
integer

Max number of Projects to fetch. Defaults to 10.

Response

Success

metadata
object
required
repositories
object[]
required