Skip to main content

NHVR Portal API – Accreditation Application findCustomer

How to use the Accreditation Application controller findCustomer method

Updated today

Prerequisites

To access the Accreditation Application findCustomer method, you need to establish an API user to access the NHVR Developer Platform. For a step by step guide see Logging into the Developer Platform.

Using the accreditation application findCustomer API from the Accreditation Service

The accreditation application findCustomer API is exposed from the Accreditation Application controller from the NHVR Portal - Accreditation Service.

Every call to the accreditation application findCustomer API should include the following headers:

Header

Value

Note

Content-Type

'application/json'

All calls are made using JSON data structures

Ocp-Apim-Subscription-Key

Your subscription key for the NHVR Portal API

The subscription key uniquely identifies you to the NHVR Portal API

The accreditations/{id}/accreditationApplications-customer endpoint uses the POST method and passes in a filter AccreditationApplicationViewCustomer

{
"id":0,
"viewAction":"",
"viewType":"User",
"queryViewUserId":0,
"queryViewAccountId":0,
"queryViewSystemId":0,
"name":"string",
"description":"string",
"locked":false,
"subFilterId":"string",
"columns":[
{
"field":"string",
"size":0,
"hidden":false,
"pinned":""
}
],
"density":"standard",
"viewMode":"Table",
"utcOffset":0,
"silentUpdate":false,
"autoSave":false
}

The filter parameter is required to perform the search but can be an empty {} object.

The id (accreditationId) path parameter is required to perform a search.

https://api-public.nhvr.gov.au/accred/accreditations/{id}/accreditationApplications-customer

Specification

The full accreditation application findCustomer API specification is available on the NHVR Developer Platform: AccreditationApplicationController.findCustomer.

The return results schema is provided below for quick reference:

{
"data": [
{
"moduleDLM": false,
"moduleMass": true,
"moduleMaintenance": true,
"moduleAFM": false,
"moduleBFM": true,
"moduleFatigue": null,
"moduleGSA": null
"id": 16,
"applicationType": "Maintain Accreditation",
"applicationTypeDisplayName": "Maintain Accreditation",
"name": "Accreditation name - 16 ",
"applicantName": "PBS Assessor admin",
"applicantId": 12,
"status": "Submitted",
"submitted": null,
"modified": "2025-12-04T01:15:39.520Z",
"accreditationId": 1,
"customerAccountId": 3,
"operationsAccountId": 1,
"auditorId1": 1,
"auditorId2": 2,
"accreditationSchemeId": 1
}
],
"count": 1,
"filter": {
"limit": 50,
"skip": 0
},
"views": [],
"selectedView": {
"queryTypename": "AccreditationApplicationViewCustomer",
"queryViewSystemId": 0,
"queryViewAccountId": 0,
"name": "Default view",
"description": "Default view automatically created",
"locked": false,
"autoSave": false,
"archived": false,
"id": 58,
"viewType": "User"
}
}

Did this answer your question?