List QR Code Addresses

List QR Code Addresses

GET /api/qrcodes

Retrieve a paginated list of QR code addresses. Supports filtering by location, status, type, and configurable sorting.

Query Parameters

ParameterTypeRequiredDescription
pageintegerNoPage number (default: 1)
per_pageintegerNoResults per page (default: 20)
orderstringNoSort direction: asc or desc
order_bystringNoField to sort by
locationstringNoFilter by location name
statusstringNoFilter by status: ACTIVE or INACTIVE
typestringNoFilter by type: SITE or CLIENT_HOME
deletedbooleanNoFilter by deleted status
paginationbooleanNoEnable paginated response (default: false)
with_childrenbooleanNoInclude nested qr_code_tags and organization in response

See Errors & Rate Limits for the common error contract used across the API.

Error Codes

StatusMeaning
400Bad Request
401Unauthorized
403Access Denied or subscription required
500Internal Server Error

Example Request

curl
curl -H "Authorization: Bearer your_api_key:your_api_secret" \
  "http://staging.didyougo.com.au/api/qrcodes?page=1&per_page=20&status=ACTIVE"

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
  }
]