POST api/admin/IssuanceLogActivity/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

RequestOfIssuanceLogActivitySearch
NameDescriptionTypeAdditional information

Value

IssuanceLogActivitySearch

None.

Authentication

Authentication

None.

Request Formats

application/json, text/json

Sample:
{
  "Value": {
    "LogActivityId": 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>
    <LogActivityId>1</LogActivityId>
  </Value>
</Request>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

ResponseOfLogActivityResponse
NameDescriptionTypeAdditional information

Value

LogActivityResponse

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": {
    "LogActivityId": 1,
    "Response": "sample string 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": "68044e82-bdae-4bd8-a3ad-448502514893"
}

application/xml, text/xml

Sample:
<Response xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
  <Value>
    <LogActivityId>1</LogActivityId>
    <Response>sample string 1</Response>
  </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>68044e82-bdae-4bd8-a3ad-448502514893</RequestId>
</Response>