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/applied-ai-services/form-recognizer/quickstarts/try-v3-rest-api.md
+7-7Lines changed: 7 additions & 7 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -65,7 +65,7 @@ In this quickstart you'll use following features to analyze and extract data and
65
65
66
66
1. Replace `{endpoint}` with the endpoint that you obtained with your Form Recognizer subscription.
67
67
1. Replace `{subscription key}` with the subscription key you copied from the previous step.
68
-
1. Replace `\"{your-document-url}` with a sample form document URL.
68
+
1. Replace `{your-document-url}` with a sample form document URL.
69
69
70
70
#### Request
71
71
@@ -77,11 +77,11 @@ In this quickstart you'll use following features to analyze and extract data and
77
77
78
78
You'll receive a `202 (Success)` response that includes an **Operation-Location** header. The value of this header contains a result ID that you can use to query the status of the asynchronous operation and get the results:
After you've called the **[Analyze document](https://westus.api.cognitive.microsoft.com/formrecognizer/documentModels/prebuilt-document:analyze?api-version=2021-09-30-preview&stringIndexType=textElements)** API, call the **[Get analyze result](https://westus.dev.cognitive.microsoft.com/docs/services/form-recognizer-api-v3-0-preview-1/operations/GetAnalyzeDocumentResult)** API to get the status of the operation and the extracted data. Before you run the command, make these changes:
84
+
After you've called the **[Analyze document](https://westus.api.cognitive.microsoft.com/formrecognizer/documentModels/prebuilt-document:analyze?api-version=2021-09-30-preview&stringIndexType=textElements)** API, call the **[Get analyze result](https://westus.api.cognitive.microsoft.com/formrecognizer/documentModels/prebuilt-document/analyzeResults/{resultId}?api-version=2021-09-30-preview)** API to get the status of the operation and the extracted data. Before you run the command, make these changes:
85
85
86
86
1. Replace `{endpoint}` with the endpoint that you obtained with your Form Recognizer subscription.
87
87
1. Replace `{subscription key}` with the subscription key you copied from the previous step.
@@ -322,7 +322,7 @@ The `"analyzeResults"` node contains all of the recognized text. Text is organiz
322
322
323
323
1. Replace `{endpoint}` with the endpoint that you obtained with your Form Recognizer subscription.
324
324
1. Replace `{subscription key}` with the subscription key you copied from the previous step.
325
-
1. Replace `\"{your-document-url}` with one of the example URLs.
325
+
1. Replace `"{your-document-url}` with one of the example URLs.
326
326
327
327
#### Request
328
328
@@ -339,7 +339,7 @@ You'll receive a `202 (Success)` response that includes an **Operation-Location*
339
339
340
340
### Get layout results
341
341
342
-
After you've called the **[Analyze document](https://westus.api.cognitive.microsoft.com/formrecognizer/documentModels/prebuilt-layout:analyze?api-version=2021-09-30-preview&stringIndexType=textElements)** API, call the **[Get analyze result](https://westus.dev.cognitive.microsoft.com/docs/services/form-recognizer-api-v3-0-preview-1/operations/GetAnalyzeDocumentResult)** API to get the status of the operation and the extracted data. Before you run the command, make these changes:
342
+
After you've called the **[Analyze document](https://westus.api.cognitive.microsoft.com/formrecognizer/documentModels/prebuilt-layout:analyze?api-version=2021-09-30-preview&stringIndexType=textElements)** API, call the **[Get analyze result](https://westus.api.cognitive.microsoft.com/formrecognizer/documentModels/prebuilt-layout/analyzeResults/{resultId}?api-version=2021-09-30-preview)** API to get the status of the operation and the extracted data. Before you run the command, make these changes:
343
343
344
344
1. Replace `{endpoint}` with the endpoint that you obtained with your Form Recognizer subscription.
345
345
1. Replace `{subscription key}` with the subscription key you copied from the previous step.
@@ -349,7 +349,7 @@ After you've called the **[Analyze document](https://westus.api.cognitive.micros
349
349
#### Request
350
350
351
351
```bash
352
-
curl -v -X GET "https://{endpoint}/formrecognizer/documentModels/prebuilt-document/analyzeResults/{resultId}?api-version=2021-09-30-preview&api-version=2021-09-30-preview"
352
+
curl -v -X GET "https://{endpoint}/formrecognizer/documentModels/prebuilt-layout/analyzeResults/{resultId}?api-version=2021-09-30-preview&api-version=2021-09-30-preview"
After you've called the **[Analyze document](https://westus.api.cognitive.microsoft.com/formrecognizer/documentModels/prebuilt-invoice:analyze?api-version=2021-09-30-preview&stringIndexType=textElements)** API, call the **[Get analyze result](https://westus.dev.cognitive.microsoft.com/docs/services/form-recognizer-api-v3-0-preview-1/operations/GetAnalyzeDocumentResult)** API to get the status of the operation and the extracted data. Before you run the command, make these changes:
395
+
After you've called the **[Analyze document](https://westus.api.cognitive.microsoft.com/formrecognizer/documentModels/prebuilt-invoice:analyze?api-version=2021-09-30-preview&stringIndexType=textElements)** API, call the **[Get analyze result](https://westus.api.cognitive.microsoft.com/formrecognizer/documentModels/prebuilt-invoice/analyzeResults/{resultId}?api-version=2021-09-30-preview)** API to get the status of the operation and the extracted data. Before you run the command, make these changes:
396
396
397
397
1. Replace `{endpoint}` with the endpoint that you obtained with your Form Recognizer subscription.
398
398
1. Replace `{subscription key}` with the subscription key you copied from the previous step.
0 commit comments