Skip to content

Latest commit

 

History

History
82 lines (49 loc) · 2.46 KB

File metadata and controls

82 lines (49 loc) · 2.46 KB

Aspose.BarCode.Cloud.Sdk.Api.ScanApi

All URIs are relative to https://api.aspose.cloud/v4.0

Method HTTP request Description
Scan GET /barcode/scan Scan a barcode from a file on an Internet server using a GET request with a query string parameter. For scanning files from your hard drive, use `scan-body` or `scan-multipart` endpoints instead.
ScanBase64 POST /barcode/scan-body Scan a barcode from a file in the request body using a POST request with a JSON or XML body parameter.
ScanMultipart POST /barcode/scan-multipart Scan a barcode from a file in the request body using a POST request with a multipart form parameter.

Scan

BarcodeResponseList Scan (string fileUrl)

Scan a barcode from a file on an Internet server using a GET request with a query string parameter. For scanning files from your hard drive, use scan-body or scan-multipart endpoints instead.

Parameters

Name Type Description Notes
fileUrl string URL to the barcode image.

Return type

BarcodeResponseList

HTTP request headers

  • Content-Type: Not defined
  • Accept: application/json, application/xml

ScanBase64

BarcodeResponseList ScanBase64 (ScanBase64Request scanBase64Request)

Scan a barcode from a file in the request body using a POST request with a JSON or XML body parameter.

Parameters

Name Type Description Notes
scanBase64Request ScanBase64Request Barcode scan request.

Return type

BarcodeResponseList

HTTP request headers

  • Content-Type: application/json, application/xml
  • Accept: application/json, application/xml

ScanMultipart

BarcodeResponseList ScanMultipart (System.IO.Stream file)

Scan a barcode from a file in the request body using a POST request with a multipart form parameter.

Parameters

Name Type Description Notes
file System.IO.Stream****System.IO.Stream Barcode image file.

Return type

BarcodeResponseList

HTTP request headers

  • Content-Type: multipart/form-data
  • Accept: application/json, application/xml