> ## 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.

# Create Pipeline

Create a pipeline associated with a particular Azure DevOps project or organization.

<Note>
  External Documentation

  To learn more, visit the [Azure DevOps documentation](https://learn.microsoft.com/en-us/rest/api/azure/devops/pipelines/pipelines/create?view=azure-devops-rest-7.2).
</Note>

## Basic Parameters

<div className="integrations-table">
  | Parameter          | Description                                                                                                                                                                                                                                                                                                                                                                                                                                                                            |
  | ------------------ | -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
  | Configuration Path | The file path or location where the pipeline configuration file is stored within the source code repository.                                                                                                                                                                                                                                                                                                                                                                           |
  | Configuration Type | The method used to define the pipeline's configuration.                                                                                                                                                                                                                                                                                                                                                                                                                                |
  | Organization       | The Azure DevOps Organization. You can view the Organizations list in the [Azure DevOps Organizations page](https://portal.azure.com/#blade/AzureTfsExtension/OrganizationsTemplateBlade).                                                                                                                                                                                                                                                                                             |
  | Project            | The Project ID or Project name. You can view the Projects list in the [Azure DevOps Projects page](https://portal.azure.com/#view/HubsExtension/BrowseResource/resourceType/Microsoft.DevCenter%2Fprojects).                                                                                                                                                                                                                                                                           |
  | Repository ID      | The unique identifier of the source code repository that the pipeline will be associated with.<br />This ID is used to link the pipeline to the appropriate code repository and ensure that changes made to the repository trigger the appropriate pipeline runs.<br />You can find this out by going to your equivalent `https://dev.azure.com/organisation-name/project-name/_settings/repositories`<br />(substituting in appropriate values) and looking up your repository there. |
  | Repository Name    | The source code repository name that the pipeline will be associated with.<br />This name is used for display purposes and can help quickly identify the repository associated with a given pipeline.                                                                                                                                                                                                                                                                                  |
  | Repository Type    | The type of source code repository that the pipeline will be associated with.<br />This ensures that the API knows how to interact with the repository and perform the appropriate operations, such as cloning the repository and retrieving the source code.                                                                                                                                                                                                                          |
</div>

## Advanced Parameters

<div className="integrations-table">
  | Parameter | Description                                      |
  | --------- | ------------------------------------------------ |
  | Folder    | The folder of the pipeline that's being created. |
  | Name      | The name of the pipeline that's being created.   |
</div>

## Example Output

```json theme={"dark"}
{
	"_links": {
		"self": {
			"href": "<string>"
		},
		"web": {
			"href": "<string>"
		}
	},
	"configuration": {
		"path": "<string>",
		"repository": {
			"id": "<string>",
			"type": "<string>"
		},
		"type": "<string>"
	},
	"url": "<string>",
	"id": 451,
	"revision": 250,
	"name": "<string>",
	"folder": "<string>"
}
```

## Workflow Library Example

[Create Pipeline with Azure Devops and Send Results Via Email](https://library.blinkops.com/workflows/create-pipeline-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/create-pipeline-with-azure-devops-and-send-results-via-email/canvas" />
</div>
