Skip to main content

Update Template

Update an existing template's name and/or design. Use the Design Builder to experiment with options, then pass the JSON into design.

PATCH/templates/:id

Headers

HeaderRequiredDescription
X-API-KeyRequiredYour API key
Content-TypeRequiredapplication/json
QR-VersionOptionalAPI version (e.g., 2026-02-16)

Body Parameters

ParameterTypeRequiredDescription
namestringOptionalTemplate name (2–80 characters)
designobjectOptionalQR design with builderData and frameData

Request

curl -X PATCH "https://integration-api.qr-build.com/templates/tpl-aBc123XyZ9" \
-H "X-API-Key: qrb_live_your_api_key_here" \
-H "Content-Type: application/json" \
-d '{
"name": "Updated Brand Style",
"design": {
"builderData": { ... },
"frameData": { ... }
}
}'

Response

Returns 204 No Content on success.