Manually run a non HTTP-triggered function

This article demonstrates how to manually run a non HTTP-triggered function via specially formatted HTTP request.

In some contexts, such as during development and troubleshooting, you might need to run "on-demand" an Azure Function that is indirectly triggered. Examples of indirect triggers include functions on a schedule or functions that run as the result of events.

The procedure described in this article is equivalent to using the Test/Run functionality of a function's Code + Test tab in the Azure portal. You can also use Visual Studio Code to manually run functions.

Prerequisites

The examples in this article use an HTTP test tool. You can obtain and use any of these tools that send HTTP requests:

Caution

For scenarios where you have sensitive data, such as credentials, secrets, access tokens, API keys, and other similar information, make sure to use a tool that protects your data with the necessary security features, works offline or locally, doesn't sync your data to the cloud, and doesn't require that you sign in to an online account. This way, you reduce the risk around exposing sensitive data to the public.

Define the request location

To run a non HTTP-triggered function, you need a way to send a request to Azure to run the function. The URL used to make this request takes a specific form.

Define the request location: host name + folder path + function name

  • Host name: The function app's public location that is made up from the function app's name plus azurewebsites.net or your custom domain. When you work with deployment slots used for staging, the host name portion is the production host name with -<slotname> appended to it. In the previous example, the URL would be myfunctiondemos-staging.azurewebsites.net for a slot named staging.
  • Folder path: To access non HTTP-triggered functions via an HTTP request, you have to send the request through the path admin/functions. APIs under the /admin/ path are only accessible with authorization.
  • Function name: The name of the function you want to run.

The following considerations apply when making requests to administrator endpoints in your function app:

  • When making requests to any endpoint under the /admin/ path, you must supply your app's master key in the x-functions-key header of the request.
  • When you run locally, authorization isn't enforced and the function's master key isn't required. You can directly call the function omitting the x-functions-key header.
  • When accessing function app endpoints in a deployment slot, make sure you use the slot-specific host name in the request URL, along with the slot-specific master key.

Get the master key

You can get the master key from either the Azure portal or by using the Azure CLI.

Caution

Due to the elevated permissions in your function app granted by the master key, you should not share this key with third parties or distribute it in an application. The key should only be sent to an HTTPS endpoint.

  1. Navigate to your function app in the Azure portal, select App Keys, and then the _master key.

    Locate the master key to copy.

  2. In the Edit key section, copy the key value to your clipboard, and then select OK.

    Copy the master key to the clipboard.

Call the function

  1. In the Azure portal, navigate top your function app and choose your function.

  2. Select Code + Test, and then select Logs. You see messages from the function logged here when you manually run the function from your HTTP test tool.

    Screenshot that shows the 'Code + Test' page with a message from the logs displayed.

  3. In your HTTP test tool, use the request location you defined as the request URL, make sure that the HTTP request method is POST, and include these two request headers:

    Key Value
    x-functions-key The master key value pasted from the clipboard.
    Content-Type application/json
  4. Make sure that the POST request payload/body is { "input": "<TRIGGER_INPUT>" }. The specific <TRIGGER_INPUT> you supply depends on the type of trigger, but it can only be a string, numeric, or boolean value. For services that use JSON payloads, such as Azure Service Bus, the test JSON payload should be escaped and serialized as a string.

    If you don't want to pass input data to the function, you must still supply an empty dictionary {} as the body of the POST request. For more information, see the reference article for the specific non-HTTP trigger.

  5. Send the HTTP POST request. The response should be an HTTP 202 (Accepted) response.

  6. Next, return to your function in the Azure portal. Review the logs and you see messages coming from the manual call to the function.

    View the logs to see the master key test results.

The way that you access data sent to the trigger depends on the type of trigger and your function language. For more information, see the reference examples for your specific trigger.

Next steps