Workflow Triggers - Get Schema Json
取得觸發程式架構作為 JSON。
GET https://management.azure.com/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Logic/workflows/{workflowName}/triggers/{triggerName}/schemas/json?api-version=2016-06-01
URI 參數
名稱 | 位於 | 必要 | 類型 | Description |
---|---|---|---|---|
resource
|
path | True |
string |
資源群組名稱。 |
subscription
|
path | True |
string |
訂用帳戶標識碼。 |
trigger
|
path | True |
string |
工作流程觸發程式名稱。 |
workflow
|
path | True |
string |
工作流程名稱。 |
api-version
|
query | True |
string |
API 版本。 |
回應
名稱 | 類型 | Description |
---|---|---|
200 OK |
確定 |
安全性
azure_auth
Azure Active Directory OAuth2 Flow。
類型:
oauth2
Flow:
implicit
授權 URL:
https://login.microsoftonline.com/common/oauth2/authorize
範圍
名稱 | Description |
---|---|
user_impersonation | 模擬您的用戶帳戶 |
範例
Get trigger schema
範例要求
GET https://management.azure.com/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/test-resource-group/providers/Microsoft.Logic/workflows/test-workflow/triggers/manual/schemas/json?api-version=2016-06-01
範例回覆
{
"title": "testworkflow",
"content": "{}"
}
定義
JsonSchema
JSON 結構描述。
名稱 | 類型 | Description |
---|---|---|
content |
string |
JSON 內容。 |
title |
string |
JSON 標題。 |