Perform the following steps:
- Create a new Durable Functions HTTP starter function by choosing Durable Functions in the Scenario drop-down menu and clicking on the Durable Functions HTTP starter, which opens a new tab, as shown in the following screenshot. Let's create a new HTTP function named HttpStart:

- Soon after, you will be taken to the code editor. The following function is a HTTP trigger that accepts the name of the Function that needs to be executed, along with the input. It uses the StartNewAsync method of the DurableOrchestrationClient object to start the Orchestration: ...