Skip to content

Commit 1c4fd72

Browse files
committed
Release 23.11.0
1 parent 60f714e commit 1c4fd72

File tree

34 files changed

+63
-39
lines changed

34 files changed

+63
-39
lines changed

ocr/developer-reference/auth/_index.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ Now request an access token by sending the **POST** request to `https://api.aspo
4848
{{< tabs tabID="1" tabTotal="2" tabName1="Request" tabName2="Response" >}}
4949
{{< tab tabNum="1" >}}
5050
```bash
51-
curl --location --request POST 'https://api.aspose.cloud/connect/token' \
51+
curl --request POST --location 'https://api.aspose.cloud/connect/token' \
5252
--header 'Content-Type: application/x-www-form-urlencoded' \
5353
--data-urlencode 'grant_type=client_credentials' \
5454
--data-urlencode 'client_id=CLIENT-ID-VALUE' \
@@ -73,7 +73,7 @@ The access token is returned in `access_token` property of the response JSON and
7373
To authorize your requests to Aspose.OCR Cloud API, pass the access token in **Authorization** header of each request (_Bearer authentication_):
7474

7575
```bash
76-
curl --location --request POST 'https://api.aspose.cloud/v3.0/ocr/recognize' \
76+
curl --request POST --location 'https://api.aspose.cloud/v3.0/ocr/recognize' \
7777
--header 'Authorization: Bearer eyJhbGciOiJSUzI1NiIsInR5cCI6IkpXVCJ9...l8v7jUV-mLjEdQ'
7878
```
7979

ocr/developer-reference/detect-regions/fetch-regions/_index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ When an image is [submitted](/ocr/send-for-detection/) for region detection, it
2626
Provide the [unique identifier](/ocr/send-for-detection/#return-value) of the region detection task in `id` parameter:
2727

2828
```bash
29-
curl --location --request GET 'https://api.aspose.cloud/v5.0/ocr/DetectRegions?id=a371d027-4b0d-4d86-8825-c8d818dd4ed9' \
29+
curl --request GET --location 'https://api.aspose.cloud/v5.0/ocr/DetectRegions?id=a371d027-4b0d-4d86-8825-c8d818dd4ed9' \
3030
--header 'Accept: text/plain' \
3131
--header 'Content-Type: application/json' \
3232
--header 'Authorization: Bearer eyJhbGciOiJSUzI1NiIsInR5cCI6IkpXVCJ9...VhKdGWxrJHdPr-OiTRL6-A' \

ocr/developer-reference/djvu-to-pdf/fetch-conversion-result/_index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ When a DjVu file is [submitted](/ocr/send-djvu-for-conversion/) for conversion,
2323
Provide the [unique identifier](/ocr/send-djvu-for-conversion/#return-value) of the conversion task in `id` parameter:
2424

2525
```bash
26-
curl --location --request GET 'https://api.aspose.cloud/v5.0/ocr/djvu2pdf?id=c4b60313-4f78-45f8-b708-069eb98dc22e' \
26+
curl --request GET --location 'https://api.aspose.cloud/v5.0/ocr/djvu2pdf?id=c4b60313-4f78-45f8-b708-069eb98dc22e' \
2727
--header 'Accept: text/plain' \
2828
--header 'Content-Type: application/json' \
2929
--header 'Authorization: Bearer eyJhbGciOiJSUzI1NiIsInR5cCI6IkpXVCJ9...HaRYOxBcCRCPLnrFCVXpw7UA' \

ocr/developer-reference/djvu-to-pdf/send-for-conversion/_index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ Conversion will take a few seconds, depending on the size of the image and the c
4040
{{< tabs tabID="1" tabTotal="2" tabName1="Request" tabName2="Response" >}}
4141
{{< tab tabNum="1" >}}
4242
```bash
43-
curl --location --request POST 'https://api.aspose.cloud/v5.0/ocr/djvu2pdf' \
43+
curl --request POST --location 'https://api.aspose.cloud/v5.0/ocr/djvu2pdf' \
4444
--header 'Accept: text/plain' \
4545
--header 'Content-Type: application/json' \
4646
--header 'Authorization: Bearer eyJhbGciOiJSUzI1NiIsInR5cCI6IkpXVCJ9...HaRYOxBcCRCPLnrFCVXpw7UA' \

ocr/developer-reference/identify-fonts/fetch-recognition-result/_index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ When an image is [submitted](/ocr/send-image-for-font-identification/) for font
2525
Provide the [unique identifier](/ocr/send-image-for-font-identification/#return-value) of the font identification task in `id` parameter:
2626

2727
```bash
28-
curl --location --request GET 'https://api.aspose.cloud/v5.0/ocr/IdentifyFont?id=c11c975d-5124-4555-9561-af40fb95ba07' \
28+
curl --request GET --location 'https://api.aspose.cloud/v5.0/ocr/IdentifyFont?id=c11c975d-5124-4555-9561-af40fb95ba07' \
2929
--header 'Accept: text/plain' \
3030
--header 'Content-Type: application/json' \
3131
--header 'Authorization: Bearer eyJhbGciOiJSUzI1NiIsInR5cCI6IkpXVCJ9...HaRYOxBcCRCPLnrFCVXpw7UA' \

ocr/developer-reference/identify-fonts/send-for-recognition/_index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,7 @@ Font identification will take a few seconds, depending on the size of the image
8484
{{< tabs tabID="1" tabTotal="2" tabName1="Request" tabName2="Response" >}}
8585
{{< tab tabNum="1" >}}
8686
```bash
87-
curl --location --request POST 'https://api.aspose.cloud/v5.0/ocr/IdentifyFont' \
87+
curl --request POST --location 'https://api.aspose.cloud/v5.0/ocr/IdentifyFont' \
8888
--header 'Accept: text/plain' \
8989
--header 'Content-Type: application/json' \
9090
--header 'Authorization: Bearer eyJhbGciOiJSUzI1NiIsInR5cCI6IkpXVCJ9...HaRYOxBcCRCPLnrFCVXpw7UA' \

ocr/developer-reference/preprocess-image/binarize-image/fetch-result/_index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ To obtain the binarized image, send a **GET** request to the `https://api.aspose
3030
Provide the [unique identifier](/ocr/send-image-for-binarization/#return-value) of the binarization task in `id` parameter:
3131

3232
```bash
33-
curl --location --request GET 'https://api.aspose.cloud/v5.0/ocr/binarizeimage?id=c4b60313-4f78-45f8-b708-069eb98dc22e' \
33+
curl --request GET --location 'https://api.aspose.cloud/v5.0/ocr/binarizeimage?id=c4b60313-4f78-45f8-b708-069eb98dc22e' \
3434
--header 'Accept: text/plain' \
3535
--header 'Content-Type: application/json' \
3636
--header 'Authorization: Bearer eyJhbGciOiJSUzI1NiIsInR5cCI6IkpXVCJ9...HaRYOxBcCRCPLnrFCVXpw7UA' \

ocr/developer-reference/preprocess-image/binarize-image/send-for-processing/_index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ Binarization will take a few seconds, depending on the image size and the curren
4848
{{< tabs tabID="1" tabTotal="2" tabName1="Request" tabName2="Response" >}}
4949
{{< tab tabNum="1" >}}
5050
```bash
51-
curl --location --request POST 'https://api.aspose.cloud/v5.0/ocr/binarizeimage' \
51+
curl --request POST --location 'https://api.aspose.cloud/v5.0/ocr/binarizeimage' \
5252
--header 'Accept: text/plain' \
5353
--header 'Content-Type: application/json' \
5454
--header 'Authorization: Bearer eyJhbGciOiJSUzI1NiIsInR5cCI6IkpXVCJ9...HaRYOxBcCRCPLnrFCVXpw7UA' \

ocr/developer-reference/preprocess-image/correct-contrast/_index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ You cannot get the preprocessed image as a file.
2828
{{< tabs tabID="1" tabTotal="2" tabName1="Request" tabName2="Response" >}}
2929
{{< tab tabNum="1" >}}
3030
```bash
31-
curl --location --request POST 'https://api.aspose.cloud/v5.0/ocr/RecognizeImage' \
31+
curl --request POST --location 'https://api.aspose.cloud/v5.0/ocr/RecognizeImage' \
3232
--header 'Accept: text/plain' \
3333
--header 'Content-Type: application/json' \
3434
--header 'Authorization: Bearer eyJhbGciOiJSUzI1NiIsInR5cCI6IkpXVCJ9...HaRYOxBcCRCPLnrFCVXpw7UA' \

ocr/developer-reference/preprocess-image/deskew-image/_index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -116,7 +116,7 @@ To deal with such situations, you can manually specify the image rotation angle
116116
{{< tabs tabID="1" tabTotal="2" tabName1="Request" tabName2="Response" >}}
117117
{{< tab tabNum="1" >}}
118118
```bash
119-
curl --location --request POST 'https://api.aspose.cloud/v5.0/ocr/RecognizeImage' \
119+
curl --request POST --location 'https://api.aspose.cloud/v5.0/ocr/RecognizeImage' \
120120
--header 'Accept: text/plain' \
121121
--header 'Content-Type: application/json' \
122122
--header 'Authorization: Bearer eyJhbGciOiJSUzI1NiIsInR5cCI6IkpXVCJ9...HaRYOxBcCRCPLnrFCVXpw7UA' \

ocr/developer-reference/preprocess-image/deskew-image/fetch-result/_index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ To obtain the rotated image, send a **GET** request to the `https://api.aspose.c
3131
Provide the [unique identifier](/ocr/send-image-for-deskew/#return-value) of the deskew task in `id` parameter:
3232

3333
```bash
34-
curl --location --request GET 'https://api.aspose.cloud/v5.0/ocr/deskewimage?id=c4b60313-4f78-45f8-b708-069eb98dc22e' \
34+
curl --request GET --location 'https://api.aspose.cloud/v5.0/ocr/deskewimage?id=c4b60313-4f78-45f8-b708-069eb98dc22e' \
3535
--header 'Accept: text/plain' \
3636
--header 'Content-Type: application/json' \
3737
--header 'Authorization: Bearer eyJhbGciOiJSUzI1NiIsInR5cCI6IkpXVCJ9...HaRYOxBcCRCPLnrFCVXpw7UA' \

ocr/developer-reference/preprocess-image/deskew-image/send-for-processing/_index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ Deskew will take a few seconds, depending on the image size and the current Aspo
4949
{{< tabs tabID="1" tabTotal="2" tabName1="Request" tabName2="Response" >}}
5050
{{< tab tabNum="1" >}}
5151
```bash
52-
curl --location --request POST 'https://api.aspose.cloud/v5.0/ocr/deskewimage' \
52+
curl --request POST --location 'https://api.aspose.cloud/v5.0/ocr/deskewimage' \
5353
--header 'Accept: text/plain' \
5454
--header 'Content-Type: application/json' \
5555
--header 'Authorization: Bearer eyJhbGciOiJSUzI1NiIsInR5cCI6IkpXVCJ9...HaRYOxBcCRCPLnrFCVXpw7UA' \

ocr/developer-reference/preprocess-image/dewarp-image/fetch-result/_index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ To obtain the dewarped image, send a **GET** request to the `https://api.aspose.
3131
Provide the [unique identifier](/ocr/send-image-for-dewarp/) of the dewarping task in `id` parameter:
3232

3333
```bash
34-
curl --location --request GET 'https://api.aspose.cloud/v5.0/ocr/dewarpimage?id=c4b60313-4f78-45f8-b708-069eb98dc22e' \
34+
curl --request GET --location 'https://api.aspose.cloud/v5.0/ocr/dewarpimage?id=c4b60313-4f78-45f8-b708-069eb98dc22e' \
3535
--header 'Accept: text/plain' \
3636
--header 'Content-Type: application/json' \
3737
--header 'Authorization: Bearer eyJhbGciOiJSUzI1NiIsInR5cCI6IkpXVCJ9...HaRYOxBcCRCPLnrFCVXpw7UA' \

ocr/developer-reference/preprocess-image/dewarp-image/send-for-processing/_index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ Dewarping will take a few seconds, depending on the image size and the current A
4141
{{< tabs tabID="1" tabTotal="2" tabName1="Request" tabName2="Response" >}}
4242
{{< tab tabNum="1" >}}
4343
```bash
44-
curl --location --request POST 'https://api.aspose.cloud/v5.0/ocr/dewarpimage' \
44+
curl --request POST --location 'https://api.aspose.cloud/v5.0/ocr/dewarpimage' \
4545
--header 'Accept: text/plain' \
4646
--header 'Content-Type: application/json' \
4747
--header 'Authorization: Bearer eyJhbGciOiJSUzI1NiIsInR5cCI6IkpXVCJ9...HaRYOxBcCRCPLnrFCVXpw7UA' \

ocr/developer-reference/preprocess-image/upsample-image/fetch-result/_index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ To obtain the resized image, send a **GET** request to the `https://api.aspose.c
3030
Provide the [unique identifier](/ocr/send-image-for-upsampling/#return-value) of the upsampling task in `id` parameter:
3131

3232
```bash
33-
curl --location --request GET 'https://api.aspose.cloud/v5.0/ocr/upscaleimage?id=c4b60313-4f78-45f8-b708-069eb98dc22e' \
33+
curl --request GET --location 'https://api.aspose.cloud/v5.0/ocr/upscaleimage?id=c4b60313-4f78-45f8-b708-069eb98dc22e' \
3434
--header 'Accept: text/plain' \
3535
--header 'Content-Type: application/json' \
3636
--header 'Authorization: Bearer eyJhbGciOiJSUzI1NiIsInR5cCI6IkpXVCJ9...HaRYOxBcCRCPLnrFCVXpw7UA' \

ocr/developer-reference/preprocess-image/upsample-image/send-for-processing/_index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ Upsampling will take a few seconds, depending on the image size and the current
4848
{{< tabs tabID="1" tabTotal="2" tabName1="Request" tabName2="Response" >}}
4949
{{< tab tabNum="1" >}}
5050
```bash
51-
curl --location --request POST 'https://api.aspose.cloud/v5.0/ocr/upscaleimage' \
51+
curl --request POST --location 'https://api.aspose.cloud/v5.0/ocr/upscaleimage' \
5252
--header 'Accept: text/plain' \
5353
--header 'Content-Type: application/json' \
5454
--header 'Authorization: Bearer eyJhbGciOiJSUzI1NiIsInR5cCI6IkpXVCJ9...HaRYOxBcCRCPLnrFCVXpw7UA' \

ocr/developer-reference/recognition-workflow/_index.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
---
22
weight: 10
3-
date: "2023-02-01"
3+
date: "2023-11-22"
44
author: "Vladimir Lapin"
55
type: docs
66
url: /recognition-workflow/
@@ -47,6 +47,8 @@ To authorize your request, pass the [access token](/ocr/authorization/) in _Auth
4747
If you are using [Aspose.OCR Cloud SDK](/ocr/available-sdks/), it will handle all authorization routines.
4848
{{% /alert %}}
4949

50+
It is also possible to get the request status by sending the **GET** request to `https://api.aspose.cloud/v5.0/ocr/Utilities/GetTaskStatus` endpoint with the unique identifier of the task in `id` query string parameter. This method does not return the results, allowing you to save the resources and traffic.
51+
5052
## 4. Process the recognition result
5153

5254
If the OCR process completes successfully, you will get back the recognition results in JSON format along with technical details. Recognized text, audio or file content will be _encoded in Base64_. After decoding, you can save it to disk, display on the screen, analyze, or write to a database.

ocr/developer-reference/recognize-image/fetch-recognition-result/_index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ When an image is [submitted](/ocr/send-image-for-recognition/) for recognition,
2525
Provide the [unique identifier](/ocr/send-image-for-recognition/#return-value) of the recognition task in `id` parameter:
2626

2727
```bash
28-
curl --location --request GET 'https://api.aspose.cloud/v5.0/ocr/RecognizeImage?id=c4b60313-4f78-45f8-b708-069eb98dc22e' \
28+
curl --request GET --location 'https://api.aspose.cloud/v5.0/ocr/RecognizeImage?id=c4b60313-4f78-45f8-b708-069eb98dc22e' \
2929
--header 'Accept: text/plain' \
3030
--header 'Content-Type: application/json' \
3131
--header 'Authorization: Bearer eyJhbGciOiJSUzI1NiIsInR5cCI6IkpXVCJ9...HaRYOxBcCRCPLnrFCVXpw7UA' \

ocr/developer-reference/recognize-image/send-for-recognition/_index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -88,7 +88,7 @@ Recognition will take a few seconds, depending on the size of the image and the
8888
{{< tabs tabID="1" tabTotal="2" tabName1="Request" tabName2="Response" >}}
8989
{{< tab tabNum="1" >}}
9090
```bash
91-
curl --location --request POST 'https://api.aspose.cloud/v5.0/ocr/RecognizeImage' \
91+
curl --request POST --location 'https://api.aspose.cloud/v5.0/ocr/RecognizeImage' \
9292
--header 'Accept: text/plain' \
9393
--header 'Content-Type: application/json' \
9494
--header 'Authorization: Bearer eyJhbGciOiJSUzI1NiIsInR5cCI6IkpXVCJ9...HaRYOxBcCRCPLnrFCVXpw7UA' \

ocr/developer-reference/recognize-label/fetch-recognition-result/_index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ When a label is [submitted](/ocr/send-label-for-recognition/) for recognition, i
2727
Provide the [unique identifier](/ocr/send-label-for-recognition/#return-value) of the recognition task in `id` parameter:
2828

2929
```bash
30-
curl --location --request GET 'https://api.aspose.cloud/v5.0/ocr/RecognizeLabel?id=c4b60313-4f78-45f8-b708-069eb98dc22e' \
30+
curl --request GET --location 'https://api.aspose.cloud/v5.0/ocr/RecognizeLabel?id=c4b60313-4f78-45f8-b708-069eb98dc22e' \
3131
--header 'Accept: text/plain' \
3232
--header 'Content-Type: application/json' \
3333
--header 'Authorization: Bearer eyJhbGciOiJSUzI1NiIsInR5cCI6IkpXVCJ9...HaRYOxBcCRCPLnrFCVXpw7UA' \

ocr/developer-reference/recognize-label/send-for-recognition/_index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@ Recognition will take a few seconds, depending on the size of the photo and the
7676
{{< tabs tabID="1" tabTotal="2" tabName1="Request" tabName2="Response" >}}
7777
{{< tab tabNum="1" >}}
7878
```bash
79-
curl --location --request POST 'https://api.aspose.cloud/v5.0/ocr/RecognizeLabel' \
79+
curl --request POST --location 'https://api.aspose.cloud/v5.0/ocr/RecognizeLabel' \
8080
--header 'Accept: text/plain' \
8181
--header 'Content-Type: application/json' \
8282
--header 'Authorization: Bearer eyJhbGciOiJSUzI1NiIsInR5cCI6IkpXVCJ9...HaRYOxBcCRCPLnrFCVXpw7UA' \

ocr/developer-reference/recognize-parse-invoice/send-for-recognition/_index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@ Recognition and processing will take a few seconds, depending on the size of the
7676
{{< tabs tabID="1" tabTotal="2" tabName1="Request" tabName2="Response" >}}
7777
{{< tab tabNum="1" >}}
7878
```bash
79-
curl --location --request POST 'https://api.aspose.cloud/v5.0/ocr/RecognizeAndParseInvoice' \
79+
curl --request POST --location 'https://api.aspose.cloud/v5.0/ocr/RecognizeAndParseInvoice' \
8080
--header 'Accept: text/plain' \
8181
--header 'Content-Type: application/json' \
8282
--header 'Authorization: Bearer eyJhbGciOiJSUzI1NiIsInR5cCI6IkpXVCJ9...HaRYOxBcCRCPLnrFCVXpw7UA' \

ocr/developer-reference/recognize-pdf/fetch-recognition-result/_index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ When a PDF file is [submitted](/ocr/send-pdf-for-recognition/) for recognition,
2424
Provide the [unique identifier](/ocr/send-pdf-for-recognition/#return-value) of the PDF recognition task in `id` parameter:
2525

2626
```bash
27-
curl --location --request GET 'https://api.aspose.cloud/v5.0/ocr/RecognizePdf?id=db03b9ea-3eed-4954-a1d4-b2712773bbe' \
27+
curl --request GET --location 'https://api.aspose.cloud/v5.0/ocr/RecognizePdf?id=db03b9ea-3eed-4954-a1d4-b2712773bbe' \
2828
--header 'Accept: text/plain' \
2929
--header 'Content-Type: application/json' \
3030
--header 'Authorization: Bearer eyJhbGciOiJSUzI1NiIsInR5cCI6IkpXVCJ9...HaRYOxBcCRCPLnrFCVXpw7UA' \

ocr/developer-reference/recognize-pdf/send-for-recognition/_index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,7 @@ Recognition will take a few seconds, depending on the size of the PDF document a
8080
{{< tabs tabID="1" tabTotal="2" tabName1="Request" tabName2="Response" >}}
8181
{{< tab tabNum="1" >}}
8282
```bash
83-
curl --location --request POST 'https://api.aspose.cloud/v5.0/ocr/RecognizePdf' \
83+
curl --request POST --location 'https://api.aspose.cloud/v5.0/ocr/RecognizePdf' \
8484
--header 'Accept: text/plain' \
8585
--header 'Content-Type: application/json' \
8686
--header 'Authorization: Bearer eyJhbGciOiJSUzI1NiIsInR5cCI6IkpXVCJ9...HaRYOxBcCRCPLnrFCVXpw7UA' \

ocr/developer-reference/recognize-receipt/fetch-recognition-result/_index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ When a receipt is [submitted](/ocr/send-receipt-for-recognition/) for recognitio
2525
Provide the [unique identifier](/ocr/send-receipt-for-recognition/#return-value) of the recognition task in `id` parameter:
2626

2727
```bash
28-
curl --location --request GET 'https://api.aspose.cloud/v5.0/ocr/RecognizeReceipt?id=3f030db3-de56-4acb-8469-d696be9dc9a2' \
28+
curl --request GET --location 'https://api.aspose.cloud/v5.0/ocr/RecognizeReceipt?id=3f030db3-de56-4acb-8469-d696be9dc9a2' \
2929
--header 'Accept: text/plain' \
3030
--header 'Content-Type: application/json' \
3131
--header 'Authorization: Bearer eyJhbGciOiJSUzI1NiIsInR5cCI6IkpXVCJ9...HaRYOxBcCRCPLnrFCVXpw7UA' \

ocr/developer-reference/recognize-receipt/send-for-recognition/_index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,7 @@ Recognition will take a few seconds, depending on the size of the source file an
8787
{{< tabs tabID="1" tabTotal="2" tabName1="Request" tabName2="Response" >}}
8888
{{< tab tabNum="1" >}}
8989
```bash
90-
curl --location --request POST 'https://api.aspose.cloud/v5.0/ocr/RecognizeReceipt' \
90+
curl --request POST --location 'https://api.aspose.cloud/v5.0/ocr/RecognizeReceipt' \
9191
--header 'Accept: text/plain' \
9292
--header 'Content-Type: application/json' \
9393
--header 'Authorization: Bearer eyJhbGciOiJSUzI1NiIsInR5cCI6IkpXVCJ9...HaRYOxBcCRCPLnrFCVXpw7UA' \

ocr/developer-reference/recognize-regions/fetch-recognition-result/_index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ When image regions are [submitted](/ocr/send-image-regions-for-recognition/) for
2525
Provide the [unique identifier](/ocr/send-image-regions-for-recognition/#return-value) of the region recognition task in `id` parameter:
2626

2727
```bash
28-
curl --location --request GET 'https://api.aspose.cloud/v5.0/ocr/RecognizeRegions?id=2ce30237-86da-41ef-88e9-84f0b7acffc0' \
28+
curl --request GET --location 'https://api.aspose.cloud/v5.0/ocr/RecognizeRegions?id=2ce30237-86da-41ef-88e9-84f0b7acffc0' \
2929
--header 'Accept: text/plain' \
3030
--header 'Content-Type: application/json' \
3131
--header 'Authorization: Bearer eyJhbGciOiJSUzI1NiIsInR5cCI6IkpXVCJ9...Ly6HFO2W3iuX5XvtpjVA5FtYA' \

ocr/developer-reference/recognize-regions/send-for-recognition/_index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -97,7 +97,7 @@ Recognition will take a few seconds, depending on the size of the image and the
9797
{{< tabs tabID="1" tabTotal="2" tabName1="Request" tabName2="Response" >}}
9898
{{< tab tabNum="1" >}}
9999
```bash
100-
curl --location --request POST 'https://api.aspose.cloud/v5.0/ocr/RecognizeRegions' \
100+
curl --request POST --location 'https://api.aspose.cloud/v5.0/ocr/RecognizeRegions' \
101101
--header 'Accept: text/plain' \
102102
--header 'Content-Type: application/json' \
103103
--header 'Authorization: Bearer eyJhbGciOiJSUzI1NiIsInR5cCI6IkpXVCJ9...y6HFO2W3iuX5XvtpjVA5FtYA' \

ocr/developer-reference/recognize-table/fetch-recognition-result/_index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ When a table is [submitted](/ocr/send-table-for-recognition/) for recognition, i
2626
Provide the [unique identifier](/ocr/send-table-for-recognition/#return-value) of the recognition task in `id` parameter:
2727

2828
```bash
29-
curl --location --request GET 'https://api.aspose.cloud/v5.0/ocr/RecognizeTable?id=db212989-42b9-422c-8e0d-70acb08474a6' \
29+
curl --request GET --location 'https://api.aspose.cloud/v5.0/ocr/RecognizeTable?id=db212989-42b9-422c-8e0d-70acb08474a6' \
3030
--header 'Accept: text/plain' \
3131
--header 'Content-Type: application/json' \
3232
--header 'Authorization: Bearer eyJhbGciOiJSUzI1NiIsInR5cCI6IkpXVCJ9...HaRYOxBcCRCPLnrFCVXpw7UA' \

ocr/developer-reference/recognize-table/send-for-recognition/_index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -88,7 +88,7 @@ Recognition will take a few seconds, depending on the size of the table image an
8888
{{< tabs tabID="1" tabTotal="2" tabName1="Request" tabName2="Response" >}}
8989
{{< tab tabNum="1" >}}
9090
```bash
91-
curl --location --request POST 'https://api.aspose.cloud/v5.0/ocr/RecognizeTable' \
91+
curl --request POST --location 'https://api.aspose.cloud/v5.0/ocr/RecognizeTable' \
9292
--header 'Accept: text/plain' \
9393
--header 'Content-Type: application/json' \
9494
--header 'Authorization: Bearer eyJhbGciOiJSUzI1NiIsInR5cCI6IkpXVCJ9...HaRYOxBcCRCPLnrFCVXpw7UA' \

0 commit comments

Comments
 (0)