Skip to main content

workflows_callback_urls

Creates, updates, deletes, gets or lists a workflows_callback_urls resource.

Overview

Nameworkflows_callback_urls
TypeResource
Idazure.logic_apps.workflows_callback_urls

Fields

NameDatatypeDescription
basePathstringGets the workflow trigger callback URL base path.
methodstringGets the workflow trigger callback URL HTTP method.
queriesobjectGets the workflow trigger callback URL query parameters.
relativePathstringGets the workflow trigger callback URL relative path.
relativePathParametersarrayGets the workflow trigger callback URL relative path parameters.
valuestringGets the workflow trigger callback URL.

Methods

NameAccessible byRequired ParamsDescription
listSELECTresourceGroupName, subscriptionId, workflowNameGet the workflow callback Url.

SELECT examples

Get the workflow callback Url.

SELECT
basePath,
method,
queries,
relativePath,
relativePathParameters,
value
FROM azure.logic_apps.workflows_callback_urls
WHERE resourceGroupName = '{{ resourceGroupName }}'
AND subscriptionId = '{{ subscriptionId }}'
AND workflowName = '{{ workflowName }}';