Consumers - Get
取得特定的取用者服務。 選擇性地篩選掉不支援指定發行者之任何事件種類的取用者動作。
GET https://dev.azure.com/{organization}/_apis/hooks/consumers/{consumerId}?api-version=7.1-preview.1
GET https://dev.azure.com/{organization}/_apis/hooks/consumers/{consumerId}?publisherId={publisherId}&api-version=7.1-preview.1
URI 參數
名稱 | 位於 | 必要 | 類型 | Description |
---|---|---|---|---|
consumer
|
path | True |
string |
取用者的識別碼。 |
organization
|
path | True |
string |
Azure DevOps 組織的名稱。 |
api-version
|
query | True |
string |
要使用的 API 版本。 這應該設定為 '7.1-preview.1' 以使用此版本的 API。 |
publisher
|
query |
string |
回應
名稱 | 類型 | Description |
---|---|---|
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
名稱 | Description |
---|---|
vso.work | 授與讀取工作專案、查詢、面板、區域和反復專案路徑,以及其他工作專案追蹤相關中繼資料的能力。 同時授與執行查詢、搜尋工作專案,以及透過服務勾點接收工作專案事件的通知的能力。 |
vso.build | 授與存取組建成品的能力,包括建置結果、定義和要求,以及能夠透過服務勾點接收有關建置事件的通知。 |
vso.code | 授與讀取有關認可、變更集、分支和其他版本控制成品之原始程式碼和中繼資料的能力。 也授與搜尋程式碼的能力,並透過服務勾點取得版本控制事件的通知。 |
範例
Sample Request
GET https://dev.azure.com/fabrikam/_apis/hooks/consumers/zendesk?api-version=7.1-preview.1
Sample Response
{
"id": "zendesk",
"url": "https://dev.azure.com/fabrikam/_apis/hooks/consumers/zendesk",
"name": "Zendesk",
"description": "Zendesk is a SaaS suite that offers help desk ticketing, issue tracking, and customer service support.",
"imageUrl": "",
"informationUrl": "http://go.microsoft.com/fwlink/?LinkID=396756",
"authenticationType": "external",
"inputDescriptors": [
{
"id": "accountName",
"name": "Account name",
"description": "Zendesk account name like https://<account name>.zendesk.com",
"inputMode": "textBox",
"isConfidential": false,
"useInDefaultDescription": true,
"validation": {
"dataType": "string",
"isRequired": true,
"pattern": "^([A-Za-z0-9][A-Za-z0-9\\-]{0,61}[A-Za-z0-9]|[A-Za-z0-9]{1,63})$",
"maxLength": 63
}
},
{
"id": "username",
"name": "User name",
"description": "The Zendesk user name of a user who will update tickets",
"inputMode": "textBox",
"isConfidential": false,
"useInDefaultDescription": false,
"validation": {
"dataType": "string",
"isRequired": true,
"pattern": "^.+\\@.+\\..+$",
"maxLength": 254
}
},
{
"id": "apiToken",
"name": "API token",
"description": "The Zendesk API token (can be found in Zendesk app in Admin > Channels > API)",
"inputMode": "passwordBox",
"isConfidential": true,
"useInDefaultDescription": false,
"validation": {
"dataType": "string",
"isRequired": true,
"maxLength": 100
}
}
],
"actions": [
{
"id": "createPrivateComment",
"consumerId": "zendesk",
"url": "https://dev.azure.com/fabrikam/_apis/hooks/consumers/zendesk/actions/createPrivateComment",
"name": "Create a private comment in a ticket",
"description": "Create a private comment in a ticket. <a href='http://go.microsoft.com/fwlink/?LinkId=396756'>Learn more.</a>",
"supportedEventTypes": [
"workitem.commented"
],
"supportedResourceVersions": {
"workitem.commented": [
"1.0-preview.1"
]
},
"inputDescriptors": []
}
]
}
定義
名稱 | Description |
---|---|
Authentication |
取得或設定這個取用者的驗證類型。 |
Consumer |
定義取用者的資料合約。 |
Consumer |
定義取用者動作的資料合約。 |
External |
描述如何設定外部管理的訂用帳戶。 |
Input |
取得或設定要驗證的資料類型。 |
Input |
描述訂用帳戶的輸入。 |
Input |
應該輸入此輸入值的模式 |
Input |
描述哪些值對訂用帳戶輸入有效 |
Input |
輸入單一值的相關資訊 |
Input |
指定訂用帳戶輸入之可能/允許值的相關資訊 |
Input |
與訂用帳戶輸入值相關的錯誤資訊。 |
Reference |
表示 REST 參考連結集合的類別。 |
AuthenticationType
取得或設定這個取用者的驗證類型。
名稱 | 類型 | Description |
---|---|---|
external |
string |
外部設定的驗證。 |
none |
string |
不需要驗證。 |
oAuth |
string |
OAuth 驗證。 |
Consumer
定義取用者的資料合約。
名稱 | 類型 | Description |
---|---|---|
_links |
參考連結 |
|
actions |
取得這個取用者的動作。 |
|
authenticationType |
取得或設定這個取用者的驗證類型。 |
|
description |
string |
取得或設定這個取用者的當地語系化描述。 |
externalConfiguration |
只有在外部設定此取用者的訂用帳戶時,才會為非 Null。 |
|
id |
string |
取得或設定這個取用者的識別碼。 |
imageUrl |
string |
取得或設定此取用者的影像 URL,如果有的話。 |
informationUrl |
string |
取得或設定此取用者的資訊 URL,如果有的話。 |
inputDescriptors |
取得或設定這個取用者的輸入描述元。 |
|
name |
string |
取得或設定這個取用者的當地語系化名稱。 |
url |
string |
此資源的 URL |
ConsumerAction
定義取用者動作的資料合約。
名稱 | 類型 | Description |
---|---|---|
_links |
參考連結 |
|
allowResourceVersionOverride |
boolean |
取得或設定旗標,指出建立或編輯訂用帳戶時是否可以覆寫資源版本。 |
consumerId |
string |
取得或設定這個動作所屬取用者的識別碼。 |
description |
string |
取得或設定此動作的當地語系化描述。 |
id |
string |
取得或設定此動作的識別碼。 |
inputDescriptors |
取得或設定此動作的輸入描述元。 |
|
name |
string |
取得或設定此動作的當地語系化名稱。 |
supportedEventTypes |
string[] |
取得或設定此動作支援的事件識別碼。 |
supportedResourceVersions |
object |
取得或設定此動作支援的資源版本。 |
url |
string |
此資源的 URL |
ExternalConfigurationDescriptor
描述如何設定外部管理的訂用帳戶。
名稱 | 類型 | Description |
---|---|---|
createSubscriptionUrl |
string |
要建立此訂用帳戶類型之網站的 URL。 |
editSubscriptionPropertyName |
string |
輸入屬性的名稱,其中包含要編輯訂閱的 URL。 |
hostedOnly |
boolean |
如果外部組態僅適用于託管,則為 True。 |
InputDataType
取得或設定要驗證的資料類型。
名稱 | 類型 | Description |
---|---|---|
boolean |
string |
表示 true 或 false 的值。 |
guid |
string |
表示 Guid。 |
none |
string |
未指定資料類型。 |
number |
string |
表示數值。 |
string |
string |
表示文字值。 |
uri |
string |
表示 URI。 |
InputDescriptor
描述訂用帳戶的輸入。
名稱 | 類型 | Description |
---|---|---|
dependencyInputIds |
string[] |
此輸入值相依之所有輸入的識別碼。 |
description |
string |
此輸入用途的描述 |
groupName |
string |
此輸入所屬的群組當地語系化名稱,可以顯示為容器的標頭,其中包含群組中的所有輸入。 |
hasDynamicValueInformation |
boolean |
如果為 true,則此輸入的值資訊是動態的,而且應該在相依性輸入的值變更時擷取。 |
id |
string |
訂用帳戶輸入的識別碼 |
inputMode |
應該輸入此輸入值的模式 |
|
isConfidential |
boolean |
取得此輸入是否為機密,例如密碼或應用程式金鑰 |
name |
string |
當地語系化名稱,可顯示為訂用帳戶輸入的標籤 |
properties |
object |
服務提供者可以使用之輸入的自訂屬性 |
type |
string |
輸入值的基礎資料類型。 指定此值時,InputMode、Validation 和 Values 是選擇性的。 |
useInDefaultDescription |
boolean |
取得這個輸入是否包含在預設產生的動作描述中。 |
validation |
用來驗證此輸入值的資訊 |
|
valueHint |
string |
輸入值的提示。 它可用於 UI 作為輸入預留位置。 |
values |
此輸入可能值的相關資訊 |
InputMode
應該輸入此輸入值的模式
名稱 | 類型 | Description |
---|---|---|
checkBox |
string |
核取方塊應該會顯示為 true/false 值 () |
combo |
string |
應該顯示選取/下拉式控制項 |
none |
string |
此輸入不應該顯示在 UI 中 |
passwordBox |
string |
應該會顯示密碼輸入方塊 |
radioButtons |
string |
應該顯示選項按鈕 |
textArea |
string |
應該顯示多行文字區域 |
textBox |
string |
應該會顯示輸入文字方塊 |
InputValidation
描述哪些值對訂用帳戶輸入有效
名稱 | 類型 | Description |
---|---|---|
dataType |
取得或設定要驗證的資料類型。 |
|
isRequired |
boolean |
取得或設定這是必要欄位。 |
maxLength |
integer |
取得或設定這個描述元的最大長度。 |
maxValue |
string |
取得或設定這個描述元的最小值。 |
minLength |
integer |
取得或設定這個描述元的最小長度。 |
minValue |
string |
取得或設定這個描述元的最小值。 |
pattern |
string |
取得或設定要驗證的模式。 |
patternMismatchErrorMessage |
string |
取得或設定模式不符的錯誤。 |
InputValue
輸入單一值的相關資訊
名稱 | 類型 | Description |
---|---|---|
data |
object |
關於此輸入的任何其他資料 |
displayValue |
string |
要顯示此值的文字 |
value |
string |
要儲存此輸入的值 |
InputValues
指定訂用帳戶輸入之可能/允許值的相關資訊
名稱 | 類型 | Description |
---|---|---|
defaultValue |
string |
要用於此輸入的預設值 |
error |
計算動態值時發生錯誤。 |
|
inputId |
string |
輸入的識別碼 |
isDisabled |
boolean |
應停用此輸入 |
isLimitedToPossibleValues |
boolean |
如果值限制為 PossibleValues 中的其中一個值, (True) 或 PossibleValues 中的值只是建議 (False) |
isReadOnly |
boolean |
應將此輸入設為唯讀 |
possibleValues |
此輸入可接受的可能值 |
InputValuesError
與訂用帳戶輸入值相關的錯誤資訊。
名稱 | 類型 | Description |
---|---|---|
message |
string |
錯誤訊息。 |
ReferenceLinks
表示 REST 參考連結集合的類別。
名稱 | 類型 | Description |
---|---|---|
links |
object |
連結的唯讀檢視。 因為參考連結是唯讀的,所以我們只想要將它們公開為唯讀。 |