Skip to main content

workflow_triggers_callback_urls

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

Overview

Nameworkflow_triggers_callback_urls
TypeResource
Idazure.app_service.workflow_triggers_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, name, workflowName, triggerNameGet the callback URL for a workflow trigger.

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
namestringSite name.
resourceGroupNamestringName of the resource group to which the resource belongs.
subscriptionIdstringYour Azure subscription ID. This is a GUID-formatted string (e.g. 00000000-0000-0000-0000-000000000000).
triggerNamestringThe workflow trigger name.
workflowNamestringThe workflow name.

SELECT examples

Get the callback URL for a workflow trigger.

SELECT
basePath,
method,
queries,
relativePath,
relativePathParameters,
value
FROM azure.app_service.workflow_triggers_callback_urls
WHERE subscriptionId = '{{ subscriptionId }}' -- required
AND resourceGroupName = '{{ resourceGroupName }}' -- required
AND name = '{{ name }}' -- required
AND workflowName = '{{ workflowName }}' -- required
AND triggerName = '{{ triggerName }}' -- required
;