skip to Main Content

Create pipleine in Azure devops by rest API failed – Value cannot be null. Parameter name: repositoryName

I am tring to create Azure devops (tfs) Pipeline by rets API as described here: https://learn.microsoft.com/en-us/rest/api/azure/devops/pipelines/pipelines/create?view=azure-devops-rest-6.0 Request url: https://tfs.xxx/tfs/Projects/xxx/_apis/pipelines?api-version=6.0-preview Request body: { "folder": null, "name": "pipeline-made-by-api", "configuration": { "type": "yaml", "path": "build.yaml", "repository": { "id": "xxx", "name": "xxx-repo", "type": "azureReposGit"…

VIEW QUESTION

How to get data from Azure Workflow Trigger Histories – List

I have an Azure Logic App that has failed actions (the number is too big so I won't resubmit them manually). I tried wtih the Azure documentation to list all of the operations: https://learn.microsoft.com/en-us/rest/api/appservice/workflow-trigger-histories/list?view=rest-appservice-2023-12-01&tabs=HTTP GET https://management.azure.com/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Web/sites/{name}/hostruntime/runtime/webhooks/workflow/api/management/workflows/{workflowName}/triggers/{triggerName}/histories?api-version=2023-12-01 However the response seems…

VIEW QUESTION
Back To Top
Search