Workflow Run Actions - Get
Gets a workflow run action.
GET https://management.azure.com/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Logic/workflows/{workflowName}/runs/{runName}/actions/{actionName}?api-version=2019-05-01URI Parameters
| Name | In | Required | Type | Description | 
|---|---|---|---|---|
| action | path | True | string | The workflow action name. | 
| resource | path | True | string | The resource group name. | 
| run | path | True | string | The workflow run name. | 
| subscription | path | True | string | The subscription id. | 
| workflow | path | True | string | The workflow name. | 
| api-version | query | True | string | The API version. | 
Responses
| Name | Type | Description | 
|---|---|---|
| 200 OK | OK | |
| Other Status Codes | Error response describing why the operation failed. | 
Security
azure_auth
Azure Active Directory OAuth2 Flow.
					Type: 
					oauth2
					Flow: 
					implicit
					Authorization URL: 
					https://login.microsoftonline.com/common/oauth2/authorize
			
Scopes
| Name | Description | 
|---|---|
| user_impersonation | impersonate your user account | 
Examples
Get a workflow run action
Sample request
GET https://management.azure.com/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/test-resource-group/providers/Microsoft.Logic/workflows/test-workflow/runs/08586676746934337772206998657CU22/actions/HTTP?api-version=2019-05-01
Sample response
{
  "properties": {
    "inputsLink": {
      "uri": "https://tempuri.org",
      "contentVersion": "5XUACojv0aBfuP56os3CWw==",
      "contentSize": 46,
      "contentHash": {
        "algorithm": "md5",
        "value": "XXUACojv0aBfuP56os3CWw=="
      }
    },
    "outputsLink": {
      "uri": "https://tempuri.org",
      "contentVersion": "6X6KRrevI6AAxEvo9FeBYQ==",
      "contentSize": 11873,
      "contentHash": {
        "algorithm": "md5",
        "value": "XX6KRrevI6AAxEvo9FeBYQ=="
      }
    },
    "startTime": "2018-08-10T20:16:32.305236Z",
    "endTime": "2018-08-10T20:16:32.5450625Z",
    "correlation": {
      "actionTrackingId": "56063357-45dd-4278-9be5-8220ce0cc9ca",
      "clientTrackingId": "08586676746934337772206998657CU22"
    },
    "status": "Succeeded",
    "code": "OK"
  },
  "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/test-resource-group/providers/Microsoft.Logic/workflows/test-workflow/runs/08586676746934337772206998657CU22/actions/HTTP",
  "name": "HTTP",
  "type": "Microsoft.Logic/workflows/runs/actions"
}Definitions
| Name | Description | 
|---|---|
| Content | The content hash. | 
| Content | The content link. | 
| Error | Error properties indicate why the Logic service was not able to process the incoming request. The reason is provided in the error message. | 
| Error | Error response indicates Logic service is not able to process the incoming request. The error property contains the error details. | 
| Object | |
| Retry | The retry history. | 
| Run | The workflow run action correlation properties. | 
| Workflow | The workflow run action. | 
| Workflow | The workflow status. | 
ContentHash 
			
			The content hash.
| Name | Type | Description | 
|---|---|---|
| algorithm | string | The algorithm of the content hash. | 
| value | string | The value of the content hash. | 
ContentLink 
			
			The content link.
| Name | Type | Description | 
|---|---|---|
| contentHash | The content hash. | |
| contentSize | integer (int64) | The content size. | 
| contentVersion | string | The content version. | 
| metadata | The metadata. | |
| uri | string | The content link URI. | 
ErrorProperties 
			
			Error properties indicate why the Logic service was not able to process the incoming request. The reason is provided in the error message.
| Name | Type | Description | 
|---|---|---|
| code | string | Error code. | 
| message | string | Error message indicating why the operation failed. | 
ErrorResponse 
			
			Error response indicates Logic service is not able to process the incoming request. The error property contains the error details.
| Name | Type | Description | 
|---|---|---|
| error | The error properties. | 
Object
RetryHistory 
			
			The retry history.
| Name | Type | Description | 
|---|---|---|
| clientRequestId | string | Gets the client request Id. | 
| code | string | Gets the status code. | 
| endTime | string (date-time) | Gets the end time. | 
| error | Gets the error response. | |
| serviceRequestId | string | Gets the service request Id. | 
| startTime | string (date-time) | Gets the start time. | 
RunActionCorrelation  
			
			The workflow run action correlation properties.
| Name | Type | Description | 
|---|---|---|
| actionTrackingId | string | The action tracking identifier. | 
| clientKeywords | string[] | The client keywords. | 
| clientTrackingId | string | The client tracking identifier. | 
WorkflowRunAction  
			
			The workflow run action.
| Name | Type | Description | 
|---|---|---|
| id | string | The resource id. | 
| name | string | Gets the workflow run action name. | 
| properties.code | string | Gets the code. | 
| properties.correlation | The correlation properties. | |
| properties.endTime | string (date-time) | Gets the end time. | 
| properties.error | Gets the error. | |
| properties.inputsLink | Gets the link to inputs. | |
| properties.outputsLink | Gets the link to outputs. | |
| properties.retryHistory | Gets the retry histories. | |
| properties.startTime | string (date-time) | Gets the start time. | 
| properties.status | Gets the status. | |
| properties.trackedProperties | Gets the tracked properties. | |
| properties.trackingId | string | Gets the tracking id. | 
| type | string | Gets the workflow run action type. | 
WorkflowStatus 
			
			The workflow status.
| Value | Description | 
|---|---|
| NotSpecified | |
| Paused | |
| Running | |
| Waiting | |
| Succeeded | |
| Skipped | |
| Suspended | |
| Cancelled | |
| Failed | |
| Faulted | |
| TimedOut | |
| Aborted | |
| Ignored |