Create a new QR code
Requires verified email; Requires one of the following permissions: Shop.CreateQRCode; Requires the following features to be enabled: Shop
application/json
POST
/Api/QRCodes
cURL (application/json)
curl \
-X POST https://app.lovassy.hu/Api/QRCodes \
-H "Authorization: Bearer $ACCESS_TOKEN" \
-H "Content-Type: application/json" \
-d '{"name":"string","email":"hello@example.com"}'
curl \
-X POST https://app.lovassy.hu/Api/QRCodes \
-H "Authorization: Bearer $ACCESS_TOKEN" \
-H "Content-Type: text/json"
curl \
-X POST https://app.lovassy.hu/Api/QRCodes \
-H "Authorization: Bearer $ACCESS_TOKEN" \
-H "Content-Type: application/*+json"
Request example
{
"name": "string",
"email": "hello@example.com"
}
Request examples
{
"name": "string",
"email": "hello@example.com"
}
Request examples
{
"name": "string",
"email": "hello@example.com"
}
Response examples (201)
{
"id": 42,
"name": "string",
"email": "string"
}