logo

LABEL GENERATION

Label Generation consist of QR CODE GENERATOR, BARCODE GENERATOR

1.QR CODE GENERATOR

A module that converts text into QR Code

Generate QR Code

Available Methods

Method: POST
URL: /generate-qr
Headers: Content-Type: text/plain
Body Parameters
Attribute Description Type Required
Text Data Text data to generate QR Code text true

Example Request

curl -X POST 'https://pdf.msquare.pro/generate-qr?appName=DocCrafter' \
                    -H 'content-type: text/plain' \
                    -H 'authorization: ***' \
                    -d 'test'
                  
                  

2.BARCODE GENERATOR

This API provides a simple way to generate barcodes by sending a POST request to the specified endpoint.

Available Methods

Method: POST
URL: /generate-barcode
Headers: Content-Type: text/plain
Query Parameters
Attribute Description Type Required Option
format text true ISBN10
ISBN13
ISSN
EAN8
EAN8_GUARD
EAN13
EAN13_GUARD
EAN14
Code39
Code128
CODABAR
JAN
Gs1_128.

Body - Request body will contain text

Example Request

curl -X POST 'https://pdf.msquare.pro/generate-barcode?appName=DocCrafter&format=Code128' \
                    -H 'Content-Type: text/plain' \
                    -H 'Authorization: ***' \
                    -d 'test'