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

The following fields are returned by SELECT queries:

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

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
listselectsubscriptionId, resourceGroupName, workflowNameapi-versionGet the workflow callback Url.

Parameters

Parameters can be passed in the WHERE clause of a query. Check the Methods section to see which parameters are required or optional for each operation.

NameDatatypeDescription
resourceGroupNamestringThe resource group name.
subscriptionIdstringThe subscription id.
workflowNamestringThe workflow name.
api-versionstringThe API version.

SELECT examples

Get the workflow callback Url.

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