Skip to content

Latest commit

 

History

History
63 lines (40 loc) · 2.88 KB

File metadata and controls

63 lines (40 loc) · 2.88 KB

barcode\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(ctx, 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.

Scan Required Parameters

Name Type Description Notes
ctx context.Context context for authentication, logging, cancellation, deadlines, tracing, etc.
fileUrl string URL to the barcode image.

Scan Return type

BarcodeResponseList

[Back to API list] [Back to Model list] [Back to README]

ScanBase64

BarcodeResponseList ScanBase64(ctx, scanBase64Request) Scan a barcode from a file in the request body using a POST request with a JSON or XML body parameter.

ScanBase64 Required Parameters

Name Type Description Notes
ctx context.Context context for authentication, logging, cancellation, deadlines, tracing, etc.
scanBase64Request ScanBase64Request Barcode scan request.

ScanBase64 Return type

BarcodeResponseList

[Back to API list] [Back to Model list] [Back to README]

ScanMultipart

BarcodeResponseList ScanMultipart(ctx, file) Scan a barcode from a file in the request body using a POST request with a multipart form parameter.

ScanMultipart Required Parameters

Name Type Description Notes
ctx context.Context context for authentication, logging, cancellation, deadlines, tracing, etc.
file os.Fileos.File Barcode image file.

ScanMultipart Return type

BarcodeResponseList

[Back to API list] [Back to Model list] [Back to README]