Skip to content
A NSW Government website
  • Datasets
  • Organizations
  • Groups
  • About
  • Admin Login
  • Request Data
NSW Government
Data.NSW
Menu
  • NSW Data Strategy keyboard_arrow_right
    NSW Data Strategy east
    • Introduction
    • Our Vision
    • NSW Data Reform
    • Connected Government
    • Themes, Principles and Actions keyboard_arrow_right
      Themes, Principles and Actions east
      • Accelerating actionable insights keyboard_arrow_right
        Accelerating actionable insights east
        • NSW Better Outcomes Lab
        • New South Wales (NSW) Trend Atlas
        • NSW Suicide Monitoring System
        • Pathways of Care Longitudinal Study (POCLS)
        • HealthStats NSW
        • Domestic violence mobile application for police
      • Treating data as an asset keyboard_arrow_right
        Treating data as an asset east
        • National Disability Data Asset (NDDA)
        • NSW Human Services Dataset
        • DPIE Information Asset Register (IAR)
        • Pathways of Care Longitudinal Study (POCLS)
      • Strengthening transparency and trust keyboard_arrow_right
        Strengthening transparency and trust east
        • Personal Information Factor (PIF) Tool
        • Ngaramanala and the Pathways of Care Longitudinal Study (POCLS)
        • Service Point
      • Fostering culture, leadership and capability keyboard_arrow_right
        Fostering culture, leadership and capability east
        • Water Data
        • NSW Health Data Literacy Capability Framework
    • Next Steps
    • Actions and Future Outlook
    • NSW Government Data Strategy Glossary
  • Data Policy keyboard_arrow_right
    Data Policy east
    • NSW Data and Information Custodianship Policy
    • NSW Government Open Data Policy
    • NSW Smart Places Data Protection Policy
    • NSW Government Standard for Data Quality Reporting
    • Infrastructure Data Management Framework
    • NSW Government Information Classification, Labelling and Handling Guidelines
  • Data Capability keyboard_arrow_right
    Data Capability east
    • Data Governance Toolkit keyboard_arrow_right
      Data Governance Toolkit east
      Data Governance Toolkit
      • Module 1: Introduction to Data Governance
      • Module 2: Legal and Policy Context
      • Module 3: Data Governance Model
      • Module 4: Strategy and Planning
      • Module 5: Organisational Structures
      • Module 6: Assigning roles and responsibilities
      • Module 7: Leadership
      • Module 8: Data-driven Culture
      • Module 9: Workforce Skills and Capability
      • Module 10: Technology
      • Module 11: Data Management
      • Module 12: Data Governance Checklist
    • Data Champions Network
    • NSW Government Data Glossary
    • Safe Researcher Training Course
  • Data Tools keyboard_arrow_right
    Data Tools east
    • Data Quality Reporting Tool
    • NSW Insights Hub
    • Data Passport
    • Enterprise Data Catalogue
    • Metadata.NSW
    • NSW Government Legislation Twin
  • Open Data keyboard_arrow_right
    Open Data east
    • What is open data
    • How to use the Data.NSW open data portal
    • NSW Government Open Data Publishing Guidelines
    • Frequently Asked Questions
  • Data Insights keyboard_arrow_right
    Data Insights east
    • Department of Education Insights Hub
    • NSW Arbovirus and Mosquito Monitoring Surveillance Program Dashboard
  • About Us
  1. Home
  2. Open Data
  3. Search
  4. SLATS Non-Woody 2018, 2019 & 2020
  5. Privacy Collection Notice
<built-in method title of str object at 0x7f37f98f9ab0>

Privacy Collection Notice

chevron_left Back to dataset

Download URL: https://oeh-prod-cloudstorage.s3.ap-southeast-2.amazonaws.com/resources/1e64006f-65d3-4bab-bd82-2d49e7f7b253/privacy_collectionnotice.pdf?Content-Type=application%2Fpdf&X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIAJAK2Q5UK6CQJLB5Q%2F20230322%2Fap-southeast-2%2Fs3%2Faws4_request&X-Amz-Date=20230322T003649Z&X-Amz-Expires=3600&X-Amz-SignedHeaders=host&X-Amz-Signature=a785fca18ad15ffc58e5614a5bd89d6a772f4d44297654bab54838bc56d1e96d

Details
Last updated 08/10/2025
Date Created 08/10/2025
File format PDF
Licence Creative Commons Attribution

There are no views created for this resource yet.

Additional Information
Field Value
Title Privacy Collection Notice
Data last updated 08/10/2025
Metadata last updated 08/10/2025
Format PDF
License Creative Commons Attribution
Original URL https://oeh-prod-cloudstorage.s3.ap-southeast-2.amazonaws.com/resources/1e64006f-65d3-4bab-bd82-2d49e7f7b253/privacy_collectionnotice.pdf?Content-Type=application%2Fpdf&X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIAJAK2Q5UK6CQJLB5Q%2F20230322%2Fap-southeast-2%2Fs3%2Faws4_request&X-Amz-Date=20230322T003649Z&X-Amz-Expires=3600&X-Amz-SignedHeaders=host&X-Amz-Signature=a785fca18ad15ffc58e5614a5bd89d6a772f4d44297654bab54838bc56d1e96d

CKAN Data API

Access resource data via a web API with powerful query support. Further information in the main CKAN Data API and DataStore documentation.

Code examples:

Querying
Get 5 results containing "jones" in any field:
curl https://data.nsw.gov.au/data/api/action/datastore_search \
  -H"Authorization:$API_TOKEN" -d '
{
  "resource_id": "7300e779-1749-41c6-94a3-879bea7af887",
  "limit": 5,
  "q": "jones"
}'
const resp = await fetch(`https://data.nsw.gov.au/data/api/action/datastore_search`, {
    method: 'POST',
    headers: {
        'content-type': 'application/json',
        authorization: API_TOKEN
    },
    body: JSON.stringify({
        resource_id: '7300e779-1749-41c6-94a3-879bea7af887',
        limit: 5,
        q: 'jones'
    })
})
await resp.json()
$json = @'
{
  "resource_id": "7300e779-1749-41c6-94a3-879bea7af887",
  "limit": 5,
  "q": "jones"
}
'@
$response = Invoke-RestMethod https://data.nsw.gov.au/data/api/action/datastore_search`
  -Method Post -Body $json -Headers @{"Authorization"="$API_TOKEN"}
$response.result.records

(using the ckanapi client library)

from ckanapi import RemoteCKAN

rc = RemoteCKAN('https://data.nsw.gov.au/data/', apikey=API_TOKEN)
result = rc.action.datastore_search(
    resource_id="7300e779-1749-41c6-94a3-879bea7af887",
    limit=5,
    q="jones",
)
print(result['records'])
library(httr2)

req <- request("https://data.nsw.gov.au/data/api/action/datastore_search")
result <- req %>% 
    req_headers(Authorization = API_TOKEN) %>% 
    req_body_json(list(
        resource_id = '7300e779-1749-41c6-94a3-879bea7af887',
        limit = 5,
        q = 'jones'))
    req_perform %>% 
    resp_body_json
Get results with either "watershed" or "survey" as subject and "active" as its stage:
curl https://data.nsw.gov.au/data/api/action/datastore_search \
-H"Authorization:$API_TOKEN" -d '
{
"resource_id": "7300e779-1749-41c6-94a3-879bea7af887",
  "filters": {
    "subject": ["watershed", "survey"],
    "stage": "active"
  }
}'
const resp = await fetch(`https://data.nsw.gov.au/data/api/action/datastore_search`, {
    method: 'POST',
    headers: {
        'content-type': 'application/json',
        authorization: API_TOKEN
    },
    body: JSON.stringify({resource_id: '7300e779-1749-41c6-94a3-879bea7af887', filters: {
        subject: ['watershed', 'survey'],
        stage: 'active'
    }})})
await resp.json()
$json = @'
{
  "resource_id": "7300e779-1749-41c6-94a3-879bea7af887",
  "filters": {
    "subject": ["watershed", "survey"],
    "stage": "active"
  }
}
'@
$response = Invoke-RestMethod https://data.nsw.gov.au/data/api/action/datastore_search`
  -Method Post -Body $json -Headers @{"Authorization"="$API_TOKEN"}
$response.result.records
from ckanapi import RemoteCKAN

rc = RemoteCKAN('https://data.nsw.gov.au/data/', apikey=API_TOKEN)
result = rc.action.datastore_search(
    resource_id="7300e779-1749-41c6-94a3-879bea7af887",
    filters={
      "subject": ["watershed", "survey"],
      "stage": "active",
    },
)
print(result['records'])
library(httr2)

req <- request("https://data.nsw.gov.au/data/api/action/datastore_search")
result <- req %>% 
    req_headers(Authorization = API_TOKEN) %>% 
    req_body_json(list(
        resource_id='7300e779-1749-41c6-94a3-879bea7af887', 
        filters = list(
            subject = list("watershed", "survey"), 
            stage = "active")))
    req_perform %>% 
    resp_body_json
Using the API with this Web Browser

Some API endpoints may be accessed using a GET query string.

Query example (first 5 results)

https://data.nsw.gov.au/data/api/action/datastore_search?resource_id=7300e779-1749-41c6-94a3-879bea7af887&limit=5

Query example (results containing 'jones')

https://data.nsw.gov.au/data/api/action/datastore_search?resource_id=7300e779-1749-41c6-94a3-879bea7af887&q=jones

Popular
  • Key NSW Data Legislation and Policies
  • Data.NSW Policy
  • Data.NSW Open Data Portal
Open Data Portals
  • API.NSW open_in_new
  • Environmental Data Portal, SEED open_in_new
  • HealthStats NSW open_in_new
  • Transport Open Data Hub open_in_new
  • NSW Bureau of Crime Statistics and Research open_in_new
  • Spatial Collaboration Portal open_in_new
  • NSW Flood Data Portal open_in_new
  • NSW Planning Portal Spatial Viewer open_in_new
  • State Insurance Regulatory Authority open_in_new
About This Site
  • Accessibility open_in_new
  • Copyright open_in_new
  • Disclaimer open_in_new
  • Privacy open_in_new
  • Site Search

We pay respect to the Traditional Custodians and First Peoples of NSW, and acknowledge their continued connection to their country and culture.


Copyright © 2025
Built by NSW Design System