This operation provides the NOD document's generation status and review letter generation status for review DA cases along with the document details to the consent authority. This operation also provides all the conditions used to generate the NOD for that case. For any Bespoke conditions which are not present in the DPE Council library, this API will assign a case specific Condition ID. This Condition ID should be stored for that case in the council system. This Condition ID should be passed in ConsentConditions API during Mod and Review of a DA if the same condition needs to be retained.
CaseID required | string A fully qualified application number |
OrganisationID required | string Used by the API gateway to route the request to the relevant organisation. |
IdempotencyId required | string Unique Id for this request. Allows the API to respond in an idempotent way if it has already been called with these parameters and prevents duplicate processing. Typically a UUID such as "63a9ba30-7a4b-4fac-b343-d1f05cf089f1" |
NotificationOfNODStatus request object
NODGenenerationStatus required | string This indicates the status of NOD generation |
Array of objects (DocumentDetails) This gets populated when NOD is successfully generated | |
failureReason | string This indicates the reason as to why the NOD document generation is failed.This is relevant for NOD failure scenarios only. |
Array of objects (ConditionsDetails) This indicates the conditons related to a specific case |
{- "NODGenenerationStatus": "Success",
- "documents": [
- {
- "documentName": "NoticeOfDetermination.pdf",
- "documentType": "Notice of determination",
- "uploadedDateTime": "2019-08-24T14:15:22Z",
- "documentURL": "Document URL",
- "updatedBy": "abc@gmail.com"
}
], - "failureReason": "Condition's validation faliure text",
- "conditions": [
- {
- "conditionID": "COND-123",
- "conditionType": "Bespoke",
- "conditionTitle": "Approved Plans",
- "conditionText": "<p>Sample text <img height=\"255\" src=\"https%3A%2F%2Fapi-tst.apps1.nsw.gov.au%2Fplanning%2FDocMgmt%2Fv1%2FDocuments%2FDATA-CONTENT-IMAGE CONIMG21686646077367!PNG!/RTEIMAGES/\" width=\"500\"></p>",
- "conditionReason": "Plans condition.",
- "modificationReason": "Condition modified to change the hours of operation",
- "typeOfWork": "Demolition work",
- "developmentStage": "General condition.",
- "councilConditionID": "SAMPLE-123"
}
]
}
{- "statusCode": 200,
- "message": "Request is successfully executed"
}