## Operations Overview The Portal SOAP API provides operations for managing property notifications, certificates, and orders. This page provides examples for common operations. ## Notification Operations ### NotificationList Retrieve a list of notifications (alerts and notices) for a subscription. **Request Example:** ```xml YOUR_ACCOUNT_ID 12345 MyRef-001 2024-01-01 2024-12-31 0 Y Y N ``` **Response Structure:** The response includes: - `NotificationListResult` - Status code (0 = success) - `notificationTable` - Array of notification items - `exception` - Any error messages - `gst` - GST amount charged - `chargeExgst` - Charge excluding GST ### NotificationView View the details of a specific notification by ID. ```xml YOUR_ACCOUNT_ID 12345 MyRef-001 67890 ``` ## Package Order Operations ### PackageOrder Start a property package order by providing a title reference. ```xml YOUR_ACCOUNT_ID 12345 MyRef-001 0 12345/678 Y user@example.com ``` **Response includes:** - `applicationId` - The created application ID for tracking - `availableCertificateTable` - List of certificates available for order - `applicantData` - Applicant information - `titleDocument` - Title document details ### PackageCommit Commit a package order with selected certificates. ```xml YOUR_ACCOUNT_ID 12345 MyRef-001 98765 John Smith 123 Example Street Melbourne VIC 3000 1 2 ``` ## Testing Operations ### AlertSimulate Simulate an alert for testing your integration. ```xml YOUR_ACCOUNT_ID 12345 MyRef-001 111 Title 12345/678 Standard ``` ## Common Parameters | Parameter | Type | Description | | --- | --- | --- | | `accountId` | string | Your LANDATA account identifier | | `sessionId` | int | Valid session ID from authentication | | `customerReference` | string | Your reference for tracking (optional) | | `subscriptionId` | int | Subscription ID for notifications (0 for all) | ## Full WSDL Reference For complete operation definitions including all parameters and types, see the [WSDL Reference](/assets/portal.10f55f4ef5a4844b66a8527b411b9d84d10a196a128b8b76ac1c702b571c63d8.64e2a0c4.wsdl).