Skip to content

Latest commit

 

History

History
82 lines (49 loc) · 2.2 KB

ScanApi.md

File metadata and controls

82 lines (49 loc) · 2.2 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 barcode from file on server using GET requests with parameter in query string.
ScanBase64 POST /barcode/scan-body Scan barcode from file in request body using POST requests with parameter in body in json or xml format.
ScanMultipart POST /barcode/scan-multipart Scan barcode from file in request body using POST requests with parameter in multipart form.

Scan

BarcodeResponseList Scan (string fileUrl)

Scan barcode from file on server using GET requests with parameter in query string.

Parameters

Name Type Description Notes
fileUrl string Url to barcode image

Return type

BarcodeResponseList

HTTP request headers

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

ScanBase64

BarcodeResponseList ScanBase64 (ScanBase64Request scanBase64Request)

Scan barcode from file in request body using POST requests with parameter in body in json or xml format.

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 barcode from file in request body using POST requests with parameter in multipart form.

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