Retrieve the list of projects from Azure DevOps or Jira. Returns all projects that are managed by the token or username/password.1
2
3POST api/_configs/project
--Cookie: graphNodeCookie=[ID]
--data-binary [ProjectObject]
api/_configs/project
POST.
See OData Filter syntax.
Body of source Azure DevOps. Go to your Azure DevOp and create a token to login.1
2
3
4
5{
"source": "Microsoft.Vsts",
"hostname": "https://yourdomain.visualstudio.com",
"token": "[this is your token]"
}
Body of source jira. Go to your Azure DevOp and create a token to login.
1 | { |
List of projects from source follow this schema.1
2
3
4
5
6{
"id": "[ProjectID]",
"name": "[ProjectName]",
"description": "[Description]",
"url": "[ProjectURL]"
}
1 | [ |
Comment