POST
/
qrcodes
/
{url}
curl --request POST \
  --url https://api.reqlick.com/qrcodes/{url} \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: multipart/form-data' \
  --form hasLogo=true \
  --form 'logoSrc=<string>' \
  --form domain=rqk.sh \
  --form key=null \
  --form 'url=<string>' \
  --form 'bg=#ffffff' \
  --form 'fg=#000000' \
  --form expiresAt=null \
  --form 'password=<string>' \
  --form 'ios=<string>' \
  --form 'android=<string>' \
  --form 'utm_source=<string>' \
  --form 'utm_medium=<string>' \
  --form 'utm_campaign=<string>' \
  --form 'utm_term=<string>' \
  --form 'utm_content=<string>' \
  --form 'ref=<string>' \
  --form 'description=Turn your files into shareable links and connect effortlessly' \
  --form 'title=Instant File Sharing Link with Reqlick' \
  --form image=/_static/thumbnail.png
{
  "qrcode_id": "<string>",
  "link_id": "<string>",
  "link_url": "<string>"
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

url
string
required

The URL of the workspace where the QR code will be created

Query Parameters

subscriptionId
string
required

The subscription ID of the user

Body

multipart/form-data
file
file

Optional logo file to include in the QR code

Boolean indicating if the QR code should include a logo

Example:

true

logoSrc
string | null

URL of the logo image to include in the QR code

domain
string
default:rqk.sh

The domain associated with the QR code

Example:

"rqk.sh"

key
string

The unique key for the QR code

url
string

The URL that the QR code will point to

bg
string

Background color of the QR code in hexadecimal format

Example:

"#ffffff"

fg
string

Foreground color of the QR code in hexadecimal format

Example:

"#000000"

expiresAt
string | null

Expiration date and time for the QR code

password
string

Password required to access the QR code link

ios
string

iOS-specific information for deep linking

android
string

Android-specific information for deep linking

utm_source
string

UTM source parameter for tracking

utm_medium
string

UTM medium parameter for tracking

utm_campaign
string

UTM campaign parameter for tracking

utm_term
string

UTM term parameter for tracking

utm_content
string

UTM content parameter for tracking

ref
string

Referral information

description
string

SEO description for the share link card

Example:

"Turn your files into shareable links and connect effortlessly"

title
string

SEO title for the share link card

Example:

"Instant File Sharing Link with Reqlick"

image
string

URL of the image associated with the share link

Example:

"/_static/thumbnail.png"

Response

200
application/json
Successfully created a new QR code
qrcode_id
string

The ID of the created QR code

The ID of the created link

The URL of the created QR code