We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d7b3539 commit baf82ddCopy full SHA for baf82dd
articles/ai-services/openai/includes/batch/batch-rest.md
@@ -250,7 +250,8 @@ Use the REST API to list all batch jobs with additional sorting/filtering option
250
251
```http
252
curl https://YOUR_RESOURCE_NAME.openai.azure.com/openai/batches?api-version=2024-10-01-preview \
253
- -H "api-key: $AZURE_OPENAI_API_KEY"
254
- -H "filter": "created_at gt 1728773533 and created_at lt 1729032733 and status eq 'Completed'"
255
- -H "orderby": "created_at asc"
+ -H "api-key: $AZURE_OPENAI_API_KEY" \
+ -H "filter: 'created_at gt 1728773533 and created_at lt 1729032733 and status eq 'Completed''" \
+ -H "orderby: created_at asc"
256
+
257
```
0 commit comments