This operation transfers the agency's decision to accept or return the application from agency's IT system to ePlanning's IT System.
Concurrence and Referral - Agency to ePlanning API (v1)
https://api-uat.apps1.nsw.gov.au/planning/onlineCNR/v1/
The council LGA name or Agency Organisation name to indicate where the request has originated from.
Information request object
Is agency assessment required? "Accept all "," Reject all" and "Accept/Reject individually" are only applicable when agency has more than one clause. One of the below mentioned values must be selected for One of the below mentioned values must be selected for AgencyAssessment 1. Accept 2. Reject 3. Accept all 4. Reject all 5. Accept/Reject individually
This infers that the agency need to provide the reason for which the assessment is not required. Mandatory when isAgencyAssessmentReq is- 'Reject' OR 'Reject All'
applicable when isAgencyAssessmentReq is "Accept" or "Accept all"
Documents will be available if the isAgencyAssessmentReq is 'Reject' OR 'Reject All'
https://api-uat.apps1.nsw.gov.au/planning/onlineCNR/v1/AcceptReturn/{CaseID}
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X PUT \
'https://api-uat.apps1.nsw.gov.au/planning/onlineCNR/v1/AcceptReturn/{CaseID}' \
-H 'Content-Type: application/json' \
-H 'IdempotencyID: string' \
-H 'OrganisationID: string' \
-d '{
"isAgencyAssessmentReq": "Refer to description for values",
"rejectReason": "string",
"agencyOfficer": "string",
"clauseDetails": [
{
"isAgencyAssessmentReq": "Refer to description for values",
"rejectReason": "string",
"clauseName": "string"
}
],
"Documents": [
{
"documentName": "test.docx",
"documentType": "string",
"uploadedDateTime": "2019-08-24T14:15:22Z",
"documentURL": "string"
}
],
"updatedByEmail": "string"
}'{ "documentName": "test.docx", "documentType": "string", "eplanningDocId": "string", "externalOrgDocURL": "string" }
Request
This operation transfers the particulars of the agency's request from agency's IT System to ePlanning's IT system. In this operation agency requests for additional information from council when required. When additional information is not required, the case is progressed to the subsequent stage.
Information request object
it infers whether information provided by Council is sufficient for the assessment process. This is applicable when the Council confirms that the Applicant is willing to provide the additional information requested.
it infers if more information is required from the Council on behalf of the applicant, for the assessment process? This will be applicable when 'canContinueAssessment' is false.
It infers about the details of information request and is applicable if 'moreInfoReqd' is true
https://api-uat.apps1.nsw.gov.au/planning/onlineCNR/v1/Assessment/{CaseID}
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X PUT \
'https://api-uat.apps1.nsw.gov.au/planning/onlineCNR/v1/Assessment/{CaseID}' \
-H 'Content-Type: application/json' \
-H 'IdempotencyID: string' \
-H 'OrganisationID: string' \
-d '{
"canContinueAssessment": true,
"moreInfoReqd": true,
"detailsOfRequest": "string",
"requestDate": "2021-03-18",
"Documents": [
{
"documentName": "test.docx",
"documentType": "string",
"uploadedDateTime": "2019-08-24T14:15:22Z",
"documentURL": "string"
}
],
"updatedByEmail": "string"
}'{ "documentName": "test.docx", "documentType": "string", "eplanningDocId": "string", "externalOrgDocURL": "string" }
The council LGA name or Agency Organisation name to indicate where the request is originated from.
Information request object
It infers the outcome of the decision on the Agency case A-xxx given by agency. One of the below mentioned values must be selected for One of the below mentioned values must be selected for determinedAuthority 1. Approve (with conditions) 2. Approve 3. Refuse 4. Advice 5. Decision not required
It infers the comments from the agency if they have selected agency response as 'Refuse' OR 'Decision not required'. It is mandatory when agency response is 'Decision not required'
https://api-uat.apps1.nsw.gov.au/planning/onlineCNR/v1/Decision/{CaseID}
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X PUT \
'https://api-uat.apps1.nsw.gov.au/planning/onlineCNR/v1/Decision/{CaseID}' \
-H 'Content-Type: application/json' \
-H 'IdempotencyID: string' \
-H 'OrganisationID: string' \
-d '{
"agencyResponse": "Refer to description for values",
"decisionComments": "string",
"Documents": [
{
"documentName": "test.docx",
"documentType": "string",
"uploadedDateTime": "2019-08-24T14:15:22Z",
"documentURL": "string"
}
],
"updatedByEmail": "string"
}'{ "documentName": "test.docx", "documentType": "string", "eplanningDocId": "string", "externalOrgDocURL": "string" }