POST api/admin/Notification/Search
Click on the link to the left for code examples. Also refer to the DHSMV System Specification document for additional insight.
Request Information
URI Parameters
None.
Body Parameters
RequestOfNotificationSearchName | Description | Type | Additional information |
---|---|---|---|
Value |
NotificationSearch |
None. |
|
Authentication |
Authentication |
None. |
Request Formats
application/json, text/json
Sample:
{ "Value": { "NotificationId": 1 }, "Authentication": { "AgentCustomerNumber": 1, "DealerLicenseType": "sample string 1", "DealerLicenseNumber": 1, "DealerLicenseSuffix": 1, "EmpCustomerNumber": 1, "LogNumber": 1, "DealerLicensePin": "sample string 2", "EmployeeType": "sample string 3" } }
application/xml, text/xml
Sample:
<Request xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> <Authentication> <AgentCustomerNumber>1</AgentCustomerNumber> <DealerLicenseType>sample string 1</DealerLicenseType> <DealerLicenseNumber>1</DealerLicenseNumber> <DealerLicenseSuffix>1</DealerLicenseSuffix> <EmpCustomerNumber>1</EmpCustomerNumber> <LogNumber>1</LogNumber> <DealerLicensePin>sample string 2</DealerLicensePin> <EmployeeType>sample string 3</EmployeeType> </Authentication> <Value> <NotificationId>1</NotificationId> </Value> </Request>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
ResponseOfNotificationSearchResultName | Description | Type | Additional information |
---|---|---|---|
Value |
NotificationSearchResult |
None. |
|
ErrorMessages |
Collection of ErrorMessage |
None. |
|
InfoMessages |
Collection of InfoMessage |
None. |
|
LogNumber |
integer |
None. |
|
Notifications |
Collection of Notification |
None. |
|
RequestId |
globally unique identifier |
None. |
Response Formats
application/json, text/json
Sample:
{ "Value": { "NotificationId": 1, "StartDate": "2025-04-24", "AllAgentsInd": true, "LogNumber": 1, "MessageText": "sample string 2", "EndDate": "2025-04-24", "NotificationType": "sample string 3", "AgentCustomerNumber": 1, "DealerLicenseType": "sample string 4", "DealerLicenseNumber": 1, "DealerLicenseSuffix": 1 }, "ErrorMessages": [ { "Parameters": [ "sample string 1", "sample string 2" ], "DeveloperMessage": "sample string 1", "ErrorCode": 401, "ExceptionMessage": "" }, { "Parameters": [ "sample string 1", "sample string 2" ], "DeveloperMessage": "sample string 1", "ErrorCode": 401, "ExceptionMessage": "" } ], "InfoMessages": [ { "Message": "sample string 1" }, { "Message": "sample string 1" } ], "LogNumber": 1, "Notifications": [ { "NotificationId": 1, "NotificationType": "sample string 1" }, { "NotificationId": 1, "NotificationType": "sample string 1" } ], "RequestId": "876faeee-10b4-47cb-810d-5d9a983a8702" }
application/xml, text/xml
Sample:
<Response xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> <Value> <NotificationId>1</NotificationId> <StartDate>2025-04-24T02:39:01.9898592-04:00</StartDate> <AllAgentsInd>true</AllAgentsInd> <LogNumber>1</LogNumber> <MessageText>sample string 2</MessageText> <EndDate>2025-04-24T02:39:01.9898592-04:00</EndDate> <NotificationType>sample string 3</NotificationType> <AgentCustomerNumber>1</AgentCustomerNumber> <DealerLicenseType>sample string 4</DealerLicenseType> <DealerLicenseNumber>1</DealerLicenseNumber> <DealerLicenseSuffix>1</DealerLicenseSuffix> </Value> <ErrorMessages> <ErrorMessage> <Parameters> <string>sample string 1</string> <string>sample string 2</string> </Parameters> <DeveloperMessage>sample string 1</DeveloperMessage> <ErrorCode>AuthorizationError</ErrorCode> </ErrorMessage> <ErrorMessage> <Parameters> <string>sample string 1</string> <string>sample string 2</string> </Parameters> <DeveloperMessage>sample string 1</DeveloperMessage> <ErrorCode>AuthorizationError</ErrorCode> </ErrorMessage> </ErrorMessages> <InfoMessages> <InfoMessage> <Message>sample string 1</Message> </InfoMessage> <InfoMessage> <Message>sample string 1</Message> </InfoMessage> </InfoMessages> <LogNumber>1</LogNumber> <Notifications> <Notification> <NotificationId>1</NotificationId> <NotificationType>sample string 1</NotificationType> </Notification> <Notification> <NotificationId>1</NotificationId> <NotificationType>sample string 1</NotificationType> </Notification> </Notifications> <RequestId>876faeee-10b4-47cb-810d-5d9a983a8702</RequestId> </Response>