workflow_version_triggers_callback_urls
Creates, updates, deletes, gets or lists a workflow_version_triggers_callback_urls
resource.
Overview
Name | workflow_version_triggers_callback_urls |
Type | Resource |
Id | azure.logic_apps.workflow_version_triggers_callback_urls |
Fields
Name | Datatype | Description |
---|---|---|
basePath | string | Gets the workflow trigger callback URL base path. |
method | string | Gets the workflow trigger callback URL HTTP method. |
queries | object | Gets the workflow trigger callback URL query parameters. |
relativePath | string | Gets the workflow trigger callback URL relative path. |
relativePathParameters | array | Gets the workflow trigger callback URL relative path parameters. |
value | string | Gets the workflow trigger callback URL. |
Methods
Name | Accessible by | Required Params | Description |
---|---|---|---|
list | SELECT | resourceGroupName, subscriptionId, triggerName, versionId, workflowName | Get the callback url for a trigger of a workflow version. |
SELECT
examples
Get the callback url for a trigger of a workflow version.
SELECT
basePath,
method,
queries,
relativePath,
relativePathParameters,
value
FROM azure.logic_apps.workflow_version_triggers_callback_urls
WHERE resourceGroupName = '{{ resourceGroupName }}'
AND subscriptionId = '{{ subscriptionId }}'
AND triggerName = '{{ triggerName }}'
AND versionId = '{{ versionId }}'
AND workflowName = '{{ workflowName }}';