Rejis
Click here for a complete list of operations.
VINInquiry
Query a vehicle by vin number
Test
To test the operation using the HTTP POST protocol, click the 'Invoke' button.SOAP 1.1
The following is a sample SOAP 1.1 request and response. The placeholders shown need to be replaced with actual values.
POST /Rejis.asmx HTTP/1.1
Host: pvbflow.syrgov.net
Content-Type: text/xml; charset=utf-8
Content-Length: length
SOAPAction: "http://www.edc-aim.com/schemas/rejis_ws/VINInquiry"
<?xml version="1.0" encoding="utf-8"?>
<soap:Envelope xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/">
<soap:Body>
<VINInquiry xmlns="http://www.edc-aim.com/schemas/rejis_ws/">
<username>string</username>
<password>string</password>
<vin>string</vin>
</VINInquiry>
</soap:Body>
</soap:Envelope>
HTTP/1.1 200 OK
Content-Type: text/xml; charset=utf-8
Content-Length: length
<?xml version="1.0" encoding="utf-8"?>
<soap:Envelope xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/">
<soap:Body>
<VINInquiryResponse xmlns="http://www.edc-aim.com/schemas/rejis_ws/">
<VINInquiryResult>
<plate_number>string</plate_number>
<plate_state>string</plate_state>
<vin>string</vin>
<reg_expiry_year>string</reg_expiry_year>
<full_name>string</full_name>
<street1>string</street1>
<street2>string</street2>
<street3>string</street3>
<city>string</city>
<state_code>string</state_code>
<zip_code>string</zip_code>
<bootable_due>decimal</bootable_due>
<boot_count>int</boot_count>
<ticket_count>int</ticket_count>
<Tickets>
<ApiRejisPlateInquiryTicket>
<ticket_number>string</ticket_number>
<issue_date>dateTime</issue_date>
<viol_code>string</viol_code>
<balance>decimal</balance>
</ApiRejisPlateInquiryTicket>
<ApiRejisPlateInquiryTicket>
<ticket_number>string</ticket_number>
<issue_date>dateTime</issue_date>
<viol_code>string</viol_code>
<balance>decimal</balance>
</ApiRejisPlateInquiryTicket>
</Tickets>
</VINInquiryResult>
</VINInquiryResponse>
</soap:Body>
</soap:Envelope>
SOAP 1.2
The following is a sample SOAP 1.2 request and response. The placeholders shown need to be replaced with actual values.
POST /Rejis.asmx HTTP/1.1
Host: pvbflow.syrgov.net
Content-Type: application/soap+xml; charset=utf-8
Content-Length: length
<?xml version="1.0" encoding="utf-8"?>
<soap12:Envelope xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:soap12="http://www.w3.org/2003/05/soap-envelope">
<soap12:Body>
<VINInquiry xmlns="http://www.edc-aim.com/schemas/rejis_ws/">
<username>string</username>
<password>string</password>
<vin>string</vin>
</VINInquiry>
</soap12:Body>
</soap12:Envelope>
HTTP/1.1 200 OK
Content-Type: application/soap+xml; charset=utf-8
Content-Length: length
<?xml version="1.0" encoding="utf-8"?>
<soap12:Envelope xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:soap12="http://www.w3.org/2003/05/soap-envelope">
<soap12:Body>
<VINInquiryResponse xmlns="http://www.edc-aim.com/schemas/rejis_ws/">
<VINInquiryResult>
<plate_number>string</plate_number>
<plate_state>string</plate_state>
<vin>string</vin>
<reg_expiry_year>string</reg_expiry_year>
<full_name>string</full_name>
<street1>string</street1>
<street2>string</street2>
<street3>string</street3>
<city>string</city>
<state_code>string</state_code>
<zip_code>string</zip_code>
<bootable_due>decimal</bootable_due>
<boot_count>int</boot_count>
<ticket_count>int</ticket_count>
<Tickets>
<ApiRejisPlateInquiryTicket>
<ticket_number>string</ticket_number>
<issue_date>dateTime</issue_date>
<viol_code>string</viol_code>
<balance>decimal</balance>
</ApiRejisPlateInquiryTicket>
<ApiRejisPlateInquiryTicket>
<ticket_number>string</ticket_number>
<issue_date>dateTime</issue_date>
<viol_code>string</viol_code>
<balance>decimal</balance>
</ApiRejisPlateInquiryTicket>
</Tickets>
</VINInquiryResult>
</VINInquiryResponse>
</soap12:Body>
</soap12:Envelope>
HTTP GET
The following is a sample HTTP GET request and response. The placeholders shown need to be replaced with actual values.
GET /Rejis.asmx/VINInquiry?username=string&password=string&vin=string HTTP/1.1 Host: pvbflow.syrgov.net
HTTP/1.1 200 OK
Content-Type: text/xml; charset=utf-8
Content-Length: length
<?xml version="1.0" encoding="utf-8"?>
<ApiRejisInquiryReturn xmlns="http://www.edc-aim.com/schemas/rejis_ws/">
<plate_number>string</plate_number>
<plate_state>string</plate_state>
<vin>string</vin>
<reg_expiry_year>string</reg_expiry_year>
<full_name>string</full_name>
<street1>string</street1>
<street2>string</street2>
<street3>string</street3>
<city>string</city>
<state_code>string</state_code>
<zip_code>string</zip_code>
<bootable_due>decimal</bootable_due>
<boot_count>int</boot_count>
<ticket_count>int</ticket_count>
<Tickets>
<ApiRejisPlateInquiryTicket>
<ticket_number>string</ticket_number>
<issue_date>dateTime</issue_date>
<viol_code>string</viol_code>
<balance>decimal</balance>
</ApiRejisPlateInquiryTicket>
<ApiRejisPlateInquiryTicket>
<ticket_number>string</ticket_number>
<issue_date>dateTime</issue_date>
<viol_code>string</viol_code>
<balance>decimal</balance>
</ApiRejisPlateInquiryTicket>
</Tickets>
</ApiRejisInquiryReturn>
HTTP POST
The following is a sample HTTP POST request and response. The placeholders shown need to be replaced with actual values.
POST /Rejis.asmx/VINInquiry HTTP/1.1 Host: pvbflow.syrgov.net Content-Type: application/x-www-form-urlencoded Content-Length: length username=string&password=string&vin=string
HTTP/1.1 200 OK
Content-Type: text/xml; charset=utf-8
Content-Length: length
<?xml version="1.0" encoding="utf-8"?>
<ApiRejisInquiryReturn xmlns="http://www.edc-aim.com/schemas/rejis_ws/">
<plate_number>string</plate_number>
<plate_state>string</plate_state>
<vin>string</vin>
<reg_expiry_year>string</reg_expiry_year>
<full_name>string</full_name>
<street1>string</street1>
<street2>string</street2>
<street3>string</street3>
<city>string</city>
<state_code>string</state_code>
<zip_code>string</zip_code>
<bootable_due>decimal</bootable_due>
<boot_count>int</boot_count>
<ticket_count>int</ticket_count>
<Tickets>
<ApiRejisPlateInquiryTicket>
<ticket_number>string</ticket_number>
<issue_date>dateTime</issue_date>
<viol_code>string</viol_code>
<balance>decimal</balance>
</ApiRejisPlateInquiryTicket>
<ApiRejisPlateInquiryTicket>
<ticket_number>string</ticket_number>
<issue_date>dateTime</issue_date>
<viol_code>string</viol_code>
<balance>decimal</balance>
</ApiRejisPlateInquiryTicket>
</Tickets>
</ApiRejisInquiryReturn>