About 34,700 results
Open links in new tab
  1. AZURE functions: GET data from API and POST it in a sql database

    Mar 13, 2018 · I have to GET data from a REST API and POST it in a sql database. I know how to GET data from an API and displaying it in a Web-service, and I know how to POST data to a database, from a Web-service, using azure functions.

  2. How to pass parameters by POST to an Azure function?

    Jul 19, 2017 · Make sure you're using Microsoft.Azure.Functions.Worker.Http.FromBody and not Microsoft.AspNetCore.Mvc.FromBodyAttribute.

  3. Azure Functions HTTP trigger | Microsoft Learn

    Jul 18, 2024 · public static HttpResponseData Run([HttpTrigger(AuthorizationLevel.Anonymous, "get", "post", Route = null)] HttpRequestData req, FunctionContext executionContext) . var logger = executionContext.GetLogger(nameof(HttpFunction)); logger.LogInformation("message logged");

  4. How to call external api with Azure function with POST method …

    Nov 7, 2021 · As a best practice use only a static object of HttpClient in your function app. first check with POSTMAN how you can connect to external API with what authentication configuration BASIC/ BEARER then you can write code using same configuration. Here is a simple example of a POST request using HttpClient with some comments:

  5. Create serverless APIs using Azure Functions and API Management

    Aug 7, 2024 · REST APIs are often described using an OpenAPI definition (formerly known as Swagger) file. This file contains information about operations in an API and how the request and response data for the API should be structured. In this tutorial, you learn how to:

  6. Using Azure Functions to Deliver REST API: A Step-by-Step Guide

    May 29, 2020 · Since a RESTful API is expected to be stateless, it is fairly easy to deliver such an API using Azure functions, Azure’s serverless offering. Here is a set of steps to quickly create a basic API hosted in Azure, that your web app can talk to. …

  7. Azure Function Event Grid Trigger Example and HTTP Post Request

    Apr 23, 2025 · First, we explained the use of Azure Event Grid, set it up, and triggered the Azure Function that serves as an Endpoint for our project. Second, we created a process to monitor for changes in a database table that sends an HTTP Post request to Azure Functions. This triggers the function to perform certain tasks stated in the code. Next Step

  8. Customize an HTTP endpoint in Azure Functions

    Aug 7, 2024 · Azure Functions includes a collection of built-in HTTP triggers and bindings, which make it easy to author an endpoint in various languages, including Node.js, C#, and more. You also prepare to grow your API by integrating it with Azure Functions proxies and setting up …

  9. Different Ways to Parse Http Request Data in Http-triggered Azure Functions

    Mar 22, 2019 · Posting Form Data to Azure Functions. In addition to POSTing JSON content to an Azure Function, you can also POST form data and access the HttpRequest.Form property:

  10. API Part 2 – Creating An Azure Function | Jesse Liberty

    Mar 8, 2025 · Under Function, select Http trigger; Check Use Azurite (we’ll need this in a future post about durable functions) Click next and hey presto! your solution is created. You should now have a solution with a Function. Right click on the project and select Add > New Azure Function. Now click Add and you will see a list of triggers.

    Missing:

    • Data

    Must include:

  11. Some results have been removed
Refresh