You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: articles/azure-functions/durable-functions-http-api.md
+21-20Lines changed: 21 additions & 20 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -8,7 +8,7 @@ keywords:
8
8
ms.service: azure-functions
9
9
ms.devlang: multiple
10
10
ms.topic: conceptual
11
-
ms.date: 09/06/2018
11
+
ms.date: 11/15/2018
12
12
ms.author: azfuncdf
13
13
---
14
14
@@ -231,25 +231,6 @@ The Functions 2.0 format has all the same parameters but a slightly different UR
231
231
GET /runtime/webhooks/durableTask/instances/?taskHub={taskHub}&connection={connection}&code={systemKey}&createdTimeFrom={createdTimeFrom}&createdTimeTo={createdTimeTo}&runtimeStatus={runtimeStatus,runtimeStatus,...}
232
232
```
233
233
234
-
#### Request with paging
235
-
236
-
You can set the `top` parameter to split the results of the query into pages.
237
-
238
-
For Functions 1.0, the request format is as follows:
239
-
240
-
```http
241
-
GET /admin/extensions/DurableTaskExtension/instances/?taskHub={taskHub}&connection={connection}&code={systemKey}&top={top}
242
-
```
243
-
244
-
The Functions 2.0 format has all the same parameters but a slightly different URL prefix:
245
-
246
-
```http
247
-
GET /runtime/webhooks/durableTask/instances/?taskHub={taskHub}&connection={connection}&code={systemKey}&top={top}
248
-
249
-
If the next page exists, a continuation token is returned in the response header. The name of the header is `x-ms-continuation-token`.
250
-
251
-
If you set continuation token value in the next request header, you can get the next page. This key in request header is `x-ms-continuation-token`.
252
-
253
234
#### Response
254
235
255
236
Here is an example of response payloads including the orchestration status (formatted for readability):
@@ -307,6 +288,26 @@ Here is an example of response payloads including the orchestration status (form
307
288
> This operation can be very expensive in terms of Azure Storage I/O if there are a lot of rows in the Instances table. More details on Instance table can be found in the [Performance and scale in Durable Functions (Azure Functions)](https://docs.microsoft.com/azure/azure-functions/durable-functions-perf-and-scale#instances-table) documentation.
308
289
>
309
290
291
+
#### Request with paging
292
+
293
+
You can set the `top` parameter to split the results of the query into pages.
294
+
295
+
For Functions 1.0, the request format is as follows:
296
+
297
+
```http
298
+
GET /admin/extensions/DurableTaskExtension/instances/?taskHub={taskHub}&connection={connection}&code={systemKey}&top={top}
299
+
```
300
+
301
+
The Functions 2.0 format has all the same parameters but a slightly different URL prefix:
302
+
303
+
```http
304
+
GET /runtime/webhooks/durableTask/instances/?taskHub={taskHub}&connection={connection}&code={systemKey}&top={top}
305
+
```
306
+
307
+
If the next page exists, a continuation token is returned in the response header. The name of the header is `x-ms-continuation-token`.
308
+
309
+
If you set continuation token value in the next request header, you can get the next page. This key in request header is `x-ms-continuation-token`.
0 commit comments