curl --request PATCH \
--url https://management.scanova.io/qr/{qrid}/ \
--header 'Authorization: <api-key>' \
--header 'Content-Type: application/json' \
--data '{
"form": 301
}'
{}Form Management
Detach Form from QR Code
PATCH
/
qr
/
{qrid}
curl --request PATCH \
--url https://management.scanova.io/qr/{qrid}/ \
--header 'Authorization: <api-key>' \
--header 'Content-Type: application/json' \
--data '{
"form": 301
}'
{}Documentation Index
Fetch the complete documentation index at: https://docs.scanova.io/llms.txt
Use this file to discover all available pages before exploring further.
Overview
Detaches a form from a QR code. After detaching, users will access the QR code content directly without being prompted to fill out a form.Path Parameters
| Parameter | Type | Required | Description | Example |
|---|---|---|---|---|
qrid | string | Yes | QR code ID | Qc3ca09e1a5574caf |
Request Body
| Field | Type | Required | Description | Example |
|---|---|---|---|---|
form | null | Yes | Set to null to detach form | null |
Examples
Detach Form from QR Code
curl -X PATCH "https://management.scanova.io/qr/Qc3ca09e1a5574caf/" \
-H "Authorization: YOUR_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"form": null
}'
Response
Returns the updated QR code object with the form information removed from thedynamic_url_object.
Behavior After Detaching
When a form is detached from a QR code:- User scans QR code
- Direct access to the original QR code content
- No form is displayed
- No submission data is collected
- Faster user experience (no form to fill out)
Important Notes
- Immediate Effect: Changes take effect immediately
- No Data Loss: Previously collected submissions remain in the form
- Form Preserved: The form itself is not deleted, only detached
- Can Reattach: You can attach the same or different form later
Use Cases
- Campaign End: Stop collecting submissions when a campaign ends
- A/B Testing: Test QR codes with and without forms
- User Experience: Remove form for better user experience
- Temporary Disable: Temporarily disable submission capture without deleting data
- Content Access: Allow direct access to content without barriers
Detaching a form does not delete the form or any previously collected submissions. The form remains available and can be reattached to the same or different QR codes later.
Once detached, the QR code will no longer collect form submissions. If you need to resume collecting submissions, you’ll need to reattach a form using the attach endpoint.
Authorizations
API key authentication. Enter your API key directly in the Authorization header.
Path Parameters
QR code ID
Body
application/json
- Option 1
- Option 2
Form ID to attach to the QR code
Example:
301
Response
QR code updated successfully
Updated QR code object with form information
Was this page helpful?
⌘I