QrioTagQrioTag Docs
API Reference

Contact API

Submit contact form messages and subscribe to the QrioTag newsletter.

The Contact API provides public endpoints for reaching out to the QrioTag team and subscribing to the newsletter.

Submit Contact Form

POST /api/v1/contact — Public

Subscribe to Newsletter

POST /api/v1/contact/newsletter — Public

Submit Contact Form

Send a message to the QrioTag support team.

POST /api/v1/contact — Auth: None (public)

Rate limited

This endpoint is limited to 3 requests per hour per IP address.

Request body

FieldTypeRequiredDescription
namestringYesSender's name
emailstringYesSender's email address
subjectstringYesMessage subject
messagestringYesMessage body
  curl -X POST https://api.qriotag.global/api/v1/contact \
    -H "Content-Type: application/json" \
    -d '{
      "name": "Jane Doe",
      "email": "jane@example.com",
      "subject": "Question about bulk orders",
      "message": "Hi, I am interested in ordering 500 QrioTags for my company. Do you offer bulk pricing?"
    }'

Response

{
  "success": true,
  "data": {
    "message": "Your message has been sent. We will get back to you within 24 hours."
  }
}

Subscribe to Newsletter

Add an email address to the QrioTag newsletter mailing list.

POST /api/v1/contact/newsletter — Auth: None (public)

Request body

FieldTypeRequiredDescription
emailstringYesEmail address to subscribe
  curl -X POST https://api.qriotag.global/api/v1/contact/newsletter \
    -H "Content-Type: application/json" \
    -d '{ "email": "jane@example.com" }'

Response

{
  "success": true,
  "data": {
    "message": "Successfully subscribed to the newsletter"
  }
}

Was this page helpful?

Contact API | QrioTag Docs