Get QR Code Address
Get QR Code Address
GET /api/qrcodes/uuid/{uuid}
Retrieve a single QR code address by its UUID. Returns the full record including location, coordinates, type, and nested tag data.
Path Parameters
| Parameter | Type | Required | Description |
|---|---|---|---|
uuid | string | Yes | UUID of the QR code address (path parameter) |
See Errors & Rate Limits for the common error contract used across the API.
Error Codes
| Status | Meaning |
|---|---|
| 400 | Bad Request |
| 401 | Unauthorized |
| 403 | Access Denied or subscription required |
| 404 | Not Found |
| 500 | Internal Server Error |
Example Request
curl
curl -H "Authorization: Bearer your_api_key:your_api_secret" \
http://staging.didyougo.com.au/api/qrcodes/uuid/ABC123DEF456GHI789JKLM
Try It
Try it
Requests are sent without cookies — you must provide a valid Bearer <api_key>:<api_secret> header.
API Response
Click the Send API Request button above and see the response here!
Example Response
json
{
"uuid": "ABC123DEF456GHI789JKLM",
"location": "123 Main Street, Melbourne VIC 3000",
"latitude": -37.8136,
"longitude": 144.9631,
"organization_uuid": "org-uuid-here",
"status": "ACTIVE",
"type": "SITE",
"name": "Main Office",
"deleted": false,
"created_on": "2025-01-15T10:30:00Z",
"updated_on": "2025-01-15T10:30:00Z",
"deleted_on": null,
"qr_code_tags": [
{
"uuid": "XYZ789UVW123RST456MNOP",
"qr_code_uuid": "ABC123DEF456GHI789JKLM",
"tag_display_name": "Main Entrance",
"tag_name": "entrance",
"tag_number": "TAG-001",
"type": "SITE",
"status": "ACTIVE",
"deleted": false,
"is_favourite": false,
"created_on": "2025-01-15T10:30:00Z",
"updated_on": "2025-01-15T10:30:00Z",
"deleted_on": null
}
],
"organization": {
"uuid": "org-uuid-here",
"name": "My Organization",
"address": "123 Business Park, Sydney NSW 2000",
"status": "ACTIVE",
"contact_email": "admin@example.com",
"support_email": "support@example.com",
"formatted_phone_number": "+61212345678"
}
}