Projects - Get Project Properties
チーム プロジェクトのプロパティのコレクションを取得します。
GET https://dev.azure.com/{organization}/_apis/projects/{projectId}/properties?api-version=7.1-preview.1
GET https://dev.azure.com/{organization}/_apis/projects/{projectId}/properties?keys={keys}&api-version=7.1-preview.1
URI パラメーター
名前 | / | 必須 | 型 | 説明 |
---|---|---|---|---|
organization
|
path | True |
string |
Azure DevOps 組織の名前です。 |
project
|
path | True |
string uuid |
チーム プロジェクト ID。 |
api-version
|
query | True |
string |
使う API のバージョン。 このバージョンの API を使用するには、これを '7.1-preview.1' に設定する必要があります。 |
keys
|
query |
string array (string) |
チーム プロジェクトのプロパティ名のコンマ区切りの文字列。 ワイルドカード文字 ("?" および "*") がサポートされています。 キーが指定されていない場合は、すべてのプロパティが返されます。 |
応答
名前 | 型 | 説明 |
---|---|---|
200 OK |
成功した操作 |
セキュリティ
oauth2
Type:
oauth2
Flow:
accessCode
Authorization URL:
https://app.vssps.visualstudio.com/oauth2/authorize&response_type=Assertion
Token URL:
https://app.vssps.visualstudio.com/oauth2/token?client_assertion_type=urn:ietf:params:oauth:client-assertion-type:jwt-bearer&grant_type=urn:ietf:params:oauth:grant-type:jwt-bearer
Scopes
名前 | 説明 |
---|---|
vso.profile | プロファイル、アカウント、コレクション、プロジェクト、チーム、およびその他のトップレベルの組織成果物を読み取る機能を付与します。 |
vso.project | プロジェクトとチームを読み取る機能を付与します。 |
例
Get all team project properties |
Get specific team project properties |
Get all team project properties
Sample Request
GET https://dev.azure.com/fabrikam/_apis/projects/{projectId}/properties?api-version=7.1-preview.1
Sample Response
{
"count": 8,
"value": [
{
"name": "System.CurrentProcessTemplateId",
"value": "2dc3221a-2d39-4138-a4e1-fc4d20d8912d"
},
{
"name": "System.OriginalProcessTemplateId",
"value": "2dc3221a-2d39-4138-a4e1-fc4d20d8912d"
},
{
"name": "System.ProcessTemplateType",
"value": "adcc42ab-9882-485e-a3ed-7678f01f66bc"
},
{
"name": "System.Process Template",
"value": "Agile"
},
{
"name": "System.Microsoft.TeamFoundation.Team.Default",
"value": "9b7ae5b9-826f-4353-99d6-daaa5cd94ec6"
},
{
"name": "System.SourceControlCapabilityFlags",
"value": "2"
},
{
"name": "System.SourceControlGitEnabled",
"value": "True"
},
{
"name": "System.SourceControlGitPermissionsInitialized",
"value": "True"
}
]
}
Get specific team project properties
Sample Request
GET https://dev.azure.com/fabrikam/_apis/projects/{projectId}/properties?keys=System.CurrentProcessTemplateId,*SourceControl*&api-version=7.1-preview.1
Sample Response
{
"count": 4,
"value": [
{
"name": "System.CurrentProcessTemplateId",
"value": "2dc3221a-2d39-4138-a4e1-fc4d20d8912d"
},
{
"name": "System.SourceControlCapabilityFlags",
"value": "2"
},
{
"name": "System.SourceControlGitEnabled",
"value": "True"
},
{
"name": "System.SourceControlGitPermissionsInitialized",
"value": "True"
}
]
}
定義
ProjectProperty
プロジェクトに関連付けられている名前付き値。
名前 | 型 | 説明 |
---|---|---|
name |
string |
プロパティの名前。 |
value |
object |
プロパティの値。 |