POST
/
order
/
qr
curl --request POST \
  --url https://api.loopreturns.com/api/v1/order/qr \
  --header 'Content-Type: application/json' \
  --header 'X-Authorization: <api-key>' \
  --data '{
  "name": "Shopify Order Name",
  "zip": "43215",
  "gift": false,
  "type": "png",
  "size": 250
}'
{
  "qr": "https://api.loopreturns.com/api/v1/qr/i/example-uuid-for-qr-image",
  "deeplink_url": "https://test-shop.loopreturns.com/#/link/examp1e-uu1d-h3r3"
}

Authorizations

X-Authorization
string
header
required

Body

application/json
name
string
required
Example:

"Shopify Order Name"

zip
string
required
Example:

"43215"

gift
boolean
Example:

false

type
enum<string>
Available options:
png,
eps,
svg
Example:

"png"

size
integer
Example:

250

Response

200
application/json
Success
qr
string
Example:

"https://api.loopreturns.com/api/v1/qr/i/example-uuid-for-qr-image"

Example:

"https://test-shop.loopreturns.com/#/link/examp1e-uu1d-h3r3"