> ## Documentation Index
> Fetch the complete documentation index at: https://docs.blinkops.com/llms.txt
> Use this file to discover all available pages before exploring further.

# List Repositories

List git repositories.

**Required Permissions**:

* `vso.code`

<Note>
  External Documentation

  To learn more, visit the [Azure DevOps documentation](https://learn.microsoft.com/en-us/rest/api/azure/devops/git/repositories/list?view=azure-devops-rest-7.1\&tabs=HTTP).
</Note>

## Parameters

<div className="integrations-table">
  | Parameter        | Description                            |
  | ---------------- | -------------------------------------- |
  | Include All Urls | Select to include all remote URLs.     |
  | Include Hidden   | Select to include hidden repositories. |
  | Include Links    | Select to include reference links.     |
  | Organization     | The name of the organization.          |
  | Project          | The project ID or project name.        |
</div>

## Example Output

```json theme={"dark"}
{
	"count": 3,
	"value": [
		{
			"id": "5febef5a-833d-4e14-b9c0-14cb638f91e6",
			"name": "AnotherRepository",
			"url": "https://dev.azure.com/fabrikam/_apis/git/repositories/5febef5a-833d-4e14-b9c0-14cb638f91e6",
			"project": {
				"id": "6ce954b1-ce1f-45d1-b94d-e6bf2464ba2c",
				"name": "Fabrikam-Fiber-Git",
				"url": "https://dev.azure.com/fabrikam/_apis/projects/6ce954b1-ce1f-45d1-b94d-e6bf2464ba2c",
				"state": "wellFormed"
			},
			"remoteUrl": "https://dev.azure.com/fabrikam/Fabrikam-Fiber-Git/_git/AnotherRepository"
		},
		{
			"id": "278d5cd2-584d-4b63-824a-2ba458937249",
			"name": "Fabrikam-Fiber-Git",
			"url": "https://dev.azure.com/fabrikam/_apis/git/repositories/278d5cd2-584d-4b63-824a-2ba458937249",
			"project": {
				"id": "6ce954b1-ce1f-45d1-b94d-e6bf2464ba2c",
				"name": "Fabrikam-Fiber-Git",
				"url": "https://dev.azure.com/fabrikam/_apis/projects/6ce954b1-ce1f-45d1-b94d-e6bf2464ba2c",
				"state": "wellFormed"
			},
			"defaultBranch": "refs/heads/master",
			"remoteUrl": "https://dev.azure.com/fabrikam/_git/Fabrikam-Fiber-Git"
		},
		{
			"id": "66efb083-777a-4cac-a350-a24b046be6be",
			"name": "TestGit",
			"url": "https://dev.azure.com/fabrikam/_apis/git/repositories/66efb083-777a-4cac-a350-a24b046be6be",
			"project": {
				"id": "281f9a5b-af0d-49b4-a1df-fe6f5e5f84d0",
				"name": "TestGit",
				"url": "https://dev.azure.com/fabrikam/_apis/projects/281f9a5b-af0d-49b4-a1df-fe6f5e5f84d0",
				"state": "wellFormed"
			},
			"defaultBranch": "refs/heads/master",
			"remoteUrl": "https://dev.azure.com/fabrikam/_git/TestGit"
		}
	]
}
```

## Workflow Library Example

[List Repositories with Azure Devops and Send Results Via Email](https://library.blinkops.com/workflows/list-repositories-with-azure-devops-and-send-results-via-email)

<div className="iframe-wrapper">
  <div className="iframe-media">
    <img src="https://mintcdn.com/blinkops-2/ojHYuDeYX5FWuN8a/img/Icons/play-box.svg?fit=max&auto=format&n=ojHYuDeYX5FWuN8a&q=85&s=b8af968e71438a9499c3223c9bd29fb2" alt="Workflow Library" width="16" height="16" data-path="img/Icons/play-box.svg" />

    Preview this Workflow on desktop
  </div>

  <iframe className="iframe" src="https://library.blinkops.com/workflows/list-repositories-with-azure-devops-and-send-results-via-email/canvas" />
</div>
