GET
https://api.applivery.io/v1/assets/qr
curl -X GET "https://api.applivery.io/v1/assets/qr"const response = await fetch("https://api.applivery.io/v1/assets/qr", {
method: "GET",
});
const data = await response.json();import requests
response = requests.get(
"https://api.applivery.io/v1/assets/qr",
)
data = response.json()Request
text
string
required
w
number
optional
color-dark
string
optional
color-light
string
optional
Responses
{
"type": "object",
"properties": {}
}
400 Response
application/json
status
boolean
optional
error
object
optional
code
number
optional
message
string
optional
{
"status": false,
"error": {
"code": 5045,
"message": "You need to send a text to generate the QR Code"
}
}