Skip to content

Commit a307293

Browse files
authored
Merge pull request #199688 from sebastianburckhardt/document-instanceidprefix
Document the new instanceIdPrefix parameter for http instance queries
2 parents 814cfa7 + 3a19489 commit a307293

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

articles/azure-functions/durable/durable-functions-http-api.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -249,6 +249,7 @@ GET /admin/extensions/DurableTaskExtension/instances
249249
&createdTimeFrom={timestamp}
250250
&createdTimeTo={timestamp}
251251
&runtimeStatus={runtimeStatus1,runtimeStatus2,...}
252+
&instanceIdPrefix={prefix}
252253
&showInput=[true|false]
253254
&top={integer}
254255
```
@@ -263,6 +264,7 @@ GET /runtime/webhooks/durableTask/instances?
263264
&createdTimeFrom={timestamp}
264265
&createdTimeTo={timestamp}
265266
&runtimeStatus={runtimeStatus1,runtimeStatus2,...}
267+
&instanceIdPrefix={prefix}
266268
&showInput=[true|false]
267269
&top={integer}
268270
```
@@ -278,6 +280,7 @@ Request parameters for this API include the default set mentioned previously as
278280
| **`createdTimeFrom`** | Query string | Optional parameter. When specified, filters the list of returned instances that were created at or after the given ISO8601 timestamp.|
279281
| **`createdTimeTo`** | Query string | Optional parameter. When specified, filters the list of returned instances that were created at or before the given ISO8601 timestamp.|
280282
| **`runtimeStatus`** | Query string | Optional parameter. When specified, filters the list of returned instances based on their runtime status. To see the list of possible runtime status values, see the [Querying instances](durable-functions-instance-management.md) article. |
283+
| **`instanceIdPrefix`** | Query string | Optional parameter. When specified, filters the list of returned instances to include only instances whose instance id starts with the specified prefix string. Available starting with [version 2.7.2](https://www.nuget.org/packages/Microsoft.Azure.WebJobs.Extensions.DurableTask/2.7.2) of the extension. |
281284
| **`top`** | Query string | Optional parameter. When specified, limits the number of instances returned by the query. |
282285

283286
### Response

0 commit comments

Comments
 (0)