Workflows - List Swagger
워크플로에 대한 OpenAPI 정의를 가져옵니다.
POST https://management.azure.com/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Logic/workflows/{workflowName}/listSwagger?api-version=2016-06-01
URI 매개 변수
Name | In(다음 안에) | 필수 | 형식 | Description |
---|---|---|---|---|
resource
|
path | True |
string |
리소스 그룹 이름입니다. |
subscription
|
path | True |
string |
구독 ID입니다. |
workflow
|
path | True |
string |
워크플로 이름. |
api-version
|
query | True |
string |
API 버전입니다. |
응답
Name | 형식 | Description |
---|---|---|
200 OK |
정상 |
보안
azure_auth
Azure Active Directory OAuth2 Flow.
형식:
oauth2
Flow:
implicit
권한 부여 URL:
https://login.microsoftonline.com/common/oauth2/authorize
범위
Name | Description |
---|---|
user_impersonation | 사용자 계정 가장 |
예제
Get the swagger for a workflow
샘플 요청
POST https://management.azure.com/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/testResourceGroup/providers/Microsoft.Logic/workflows/testWorkflowName/listSwagger?api-version=2016-06-01
샘플 응답
{
"swagger": "2.0",
"info": {
"title": "flow",
"description": "Azure Logic App."
},
"host": "test-host",
"basePath": "/workflows/2e420261710e423490d5d502fe9c4abb/triggers",
"schemes": [
"http"
],
"consumes": [
"application/json"
],
"produces": [
"application/json"
],
"paths": {
"/simpleManualTrigger/paths/invoke": {
"post": {
"description": "Trigger a run of the logic app.",
"operationId": "simpleManualTrigger-invoke",
"parameters": [
{
"name": "api-version",
"in": "query",
"description": "The service API version.",
"required": true,
"type": "string"
},
{
"name": "sp",
"in": "query",
"description": "The permissions; generally 'read' or 'write'.",
"required": true,
"type": "string"
},
{
"name": "sv",
"in": "query",
"description": "The version number of the query parameters.",
"required": true,
"type": "string"
},
{
"name": "sig",
"in": "query",
"description": "The SHA 256 hash of the entire request URI with an internal key.",
"required": true,
"type": "string"
}
],
"responses": {
"default": {
"description": "The Logic App Response.",
"schema": {
"type": "object"
}
}
}
}
}
}
}