This operation transfers the Council's decision to proceed or not proceed the section 68 Certificate case from Council's IT system to the Online Section 68 Service.
Section 68 - Council to ePlanning API (v1)
https://api-uat.apps1.nsw.gov.au/planning/onlineS68/v1/
Information request object
What is the outcome of your review, Accept application for assessment or Application returned. One of the below mentioned values must be selected for ReviewOfOutcome 1. Accept application for assessment 2. Application returned
Applicant paid the relevant fees. Conditional Mandatory when What is the outcome of your review? equals to:"Accept application for assessment"
Total fee paid. Conditional Mandatory when Applicant paid the relevant fees? equals to:"Yes"
Council unique identification number. Conditional Mandatory when daFeePaid equals to:"Yes/No"
Enter the date the application was lodged into the Council system. Conditional Mandatory when Applicant paid the relevant fees equals to "Yes/No". Date of lodgement can not be a future date
Reason for return the applicaion by council. Conditional Mandatory when What is the outcome of your review? is equals to "Application returned"
applcation rejected date by council. Conditional Mandatory when What is the outcome of your review? is equals to "Application returned". It can not be a future date.
Does the application require consultation? Mandatory when What is the outcome of your review? is "Accept application for assessment"
Agencies to consult with. This is part of 'Section 68'. Applicable when- Does the application require consultation? is "Yes"
https://api-uat.apps1.nsw.gov.au/planning/onlineS68/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/onlineS68/v1/AcceptReturn/{CaseID}' \
-H 'Content-Type: application/json' \
-H 'IdempotencyID: string' \
-H 'OrganisationID: string' \
-d '{
"outcomeOfReview": "Refer to description for values",
"isFeePaid": true,
"feeAmount": 1250.9,
"councilUniqueIDNumber": 0,
"applicationLodgedDate": "2020-12-30",
"rejectReason": "string",
"rejectDate": "2020-12-30",
"isAgencyAssessmentReq": true,
"referralDetails": [
{
"agencyName": "Refer to description for values",
"dueDate": "2020-12-30",
"reasonForReferral": "string"
}
],
"Documents": [
{
"documentName": "test.docx",
"documentType": "string",
"uploadedDateTime": "2019-08-24T14:15:22Z",
"documentURL": "https://api-tst.apps1.nsw.gov.au/planning/external/v1/Documents/Doc2"
}
],
"updatedByEmail": "string"
}'
{ "statusCode": 200, "message": "string", "activityId": "string", "Referral Cases": [ { … } ], "Documents": [ { … } ] }
Determination request object
This application has been assessed and has been Approved or Refused or Deferred Commencement. One of the below mentioned values must be selected for DeterminationOutcome 1. Approved 2. Refused 3. Deferred Commencement
Certificate Determination Date .Conditional mandatory when "DeterminationOutcome" is "Approved" or "Deferred Commencement". It can not be a future date.
The reason council Refused the Certificate. Conditional mandatory when "DeterminationOutcome" is "Refused".
Application refused date. Conditional mandatory when "DeterminationOutcome" is "Refused". It can not be a future date.
Deferred Commencement Details. Conditional Mandatory when "DeterminationOutcome" is "Deferred Commencement".
https://api-uat.apps1.nsw.gov.au/planning/onlineS68/v1/Determination/{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/onlineS68/v1/Determination/{CaseID}' \
-H 'Content-Type: application/json' \
-H 'OrganisationID: string' \
-d '{
"determinationOutcome": "Refer to description for values",
"determinationDate": "2020-09-10",
"certificateRefusalReason": "string",
"certificateRefusalDate": "2020-01-04",
"certificateDeferredReason": "string",
"Documents": [
{
"documentName": "test.docx",
"documentType": "string",
"uploadedDateTime": "2019-08-24T14:15:22Z",
"documentURL": "https://api-tst.apps1.nsw.gov.au/planning/external/v1/Documents/Doc2"
}
],
"updatedByEmail": "string"
}'
{ "statusCode": 200, "message": "string", "activityId": "string", "Documents": [ { … } ] }