POST api/issuance/Restore/ProcessRestoreIssuance
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
RequestOfRestoreIssuanceName | Description | Type | Additional information |
---|---|---|---|
Value |
RestoreIssuance |
None. |
|
Authentication |
Authentication |
None. |
Request Formats
application/json, text/json
Sample:
{ "Value": { "LogNumber": 1, "RestoreComment": "sample string 2" }, "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> <LogNumber>1</LogNumber> <RestoreComment>sample string 2</RestoreComment> </Value> </Request>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
ResponseName | Description | Type | Additional information |
---|---|---|---|
Value |
Object |
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": {}, "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": "91f35b41-f876-4b2a-8c27-d65fc158e76b" }
application/xml, text/xml
Sample:
<Response xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> <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>91f35b41-f876-4b2a-8c27-d65fc158e76b</RequestId> </Response>