Skip to content

Commit 5998a95

Browse files
committed
Additonal edits
1 parent becb957 commit 5998a95

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

articles/azure-functions/functions-create-serverless-api.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ author: mattchenderson
55
ms.author: mahender
66
ms.service: azure-functions
77
ms.topic: how-to
8-
ms.date: 06/14/2024
8+
ms.date: 06/17/2024
99
ms.custom: mvc
1010

1111
#Customer intent: As a developer, I want to customize HTTP trigger endpoints in Azure Functions so that I can build a highly scalable API.
@@ -43,7 +43,7 @@ By default, you configure your HTTP trigger function to accept any HTTP method.
4343
| Authorization level | Anonymous | Optional: Makes your function accessible without an API key |
4444
| Selected HTTP methods | GET | Allows only selected HTTP methods to be used to invoke this function |
4545

46-
Because a global setting handles the `/api` base path prefix in the route template, you didn't need to set it here.
46+
Because a global setting handles the `/api` base path prefix in the route template, you don't need to set it here.
4747

4848
1. Select **Save**.
4949

@@ -133,7 +133,7 @@ Next, you use a proxy to create a mock API for your solution. This proxy allows
133133

134134
1. Select `proxies.json` in the left pane. This file stores the configuration for all of your proxies. If you use one of the [Functions deployment methods](./functions-continuous-deployment.md), you maintain this file in source control. For more information about this file, see [Proxies advanced configuration](./legacy-proxies.md#advanced-configuration).
135135

136-
Your *proxies.json* should appear as follows:
136+
Your *proxies.json* file should appear as follows:
137137

138138
```json
139139
{
@@ -185,15 +185,15 @@ Next, you use a proxy to create a mock API for your solution. This proxy allows
185185
}
186186
```
187187

188-
This code adds a new proxy, `GetUserByName`, omitting the `backendUri` property. Instead of calling another resource, it modifies the default response from Azure Functions proxies by using a response override. You can also use request and response overrides with a backend URL. This technique is useful when you proxy to a legacy system, where you might need to modify headers, query parameters, and so on. For more information about request and response overrides, see [Modifying requests and responses in Proxies](./legacy-proxies.md).
188+
This code adds a new proxy, `GetUserByName`, which omits the `backendUri` property. Instead of calling another resource, it modifies the default response from Azure Functions proxies by using a response override. You can also use request and response overrides with a backend URL. This technique is useful when you proxy to a legacy system, where you might need to modify headers, query parameters, and so on. For more information about request and response overrides, see [Modify requests and responses](./legacy-proxies.md#modify-requests-responses).
189189

190-
1. Test your mock API by calling the `<YourProxyApp>.azurewebsites.net/api/users/{username}` endpoint with a browser or your favorite REST client. Be sure to replace *{username}* with a string value representing a username.
190+
1. Test your mock API by calling the `<YourProxyApp>.azurewebsites.net/api/users/{username}` endpoint with a browser or your favorite REST client. Replace *{username}* with a string value that represents a username.
191191

192192
## Related content
193193

194194
In this article, you learned how to build and customize an API with Azure Functions. You also learned how to bring multiple APIs, including mock APIS, together as a unified API surface. You can use these techniques to build out APIs of any complexity, all while running on the serverless compute model provided by Azure Functions.
195195

196-
The following references might be helpful as you develop your API further:
196+
For more information about developing your API:
197197

198198
- [Azure Functions HTTP triggers and bindings overview](./functions-bindings-http-webhook.md)
199199
- [Working with Azure Functions proxies]

0 commit comments

Comments
 (0)