QQardora

Integration API quick start

Create vCards, Smart QR codes, and recipient-verified secure shares from your server.

Step by step

  1. 1

    Create an integration key in Smart QR codes → Integrations; copy the secret immediately.

  2. 2

    Store the key only in your server-side secret manager. Never expose it in browser code.

  3. 3

    Call the scoped API using X-Qardora-API-Key and JSON.

  4. 4

    Handle 4xx validation errors, save returned resource IDs, and revoke the key immediately if exposed.

Example request

curl -X POST https://qardora.aztco.io/api/v1/integrations/api/vcards \
+  -H 'Content-Type: application/json' \
+  -H 'X-Qardora-API-Key: vcqr_replace_with_your_secret' \
+  -d '{"slug":"maya-hassan","display_name":"Maya Hassan","template_key":"figma-signature","fields":{"email":"[email protected]"},"is_published":true}'