Ohio Department of Insurance - Individual License Details (2024)

', css: { border: '3px solid' } }); $.ajax({ type: 'GET', url: '/UI/ODI.Agent.Public.UI/AgentLocator.mvc/DisplayIndividualAssociations', data: { licensingEntityId: '605245' }, dataType: 'html', success: function (data, status) { associationsWrapper.html(data); associationsWrapper.unblock(); }, error: function (xhr, status, error) { handleClientError(xhr, status, error); } }); }); $('#loadAppointments').click(function () { appointmentsWrapper.block({ message: '

Loading. Please wait...

' }); $.ajax({ type: 'GET', url: '/UI/ODI.Agent.Public.UI/AgentLocator.mvc/DisplayAppointments', data: { licensingEntityId: '605245', companyId: $('#SelectedAppointmentCompanyId').val() }, dataType: 'html', success: function (data, status) { appointmentsWrapper.html(data); appointmentsWrapper.unblock(); }, error: function (xhr, status, error) { handleClientError(xhr, status, error); } }); }); $('#loadAllAppointments').click(function () { appointmentsWrapper.block({ message: '

Loading. Please wait, retrieving all appointment information may take some time...

' }); var ids = new Array(); $('#SelectedAppointmentCompanyId option').each(function () { ids.push($(this).val()); }); $.ajax({ type: 'GET', url: '/UI/ODI.Agent.Public.UI/AgentLocator.mvc/DisplayAllAppointments', data: { licensingEntityId: '605245' }, dataType: 'html', traditional: true, success: function (data, status) { appointmentsWrapper.html(data); appointmentsWrapper.unblock(); }, error: function (xhr, status, error) { handleClientError(xhr, status, error); } }); }); $('#licensesTable').tablesorter({ widgets: ['zebra'], headers: { 0: { sorter: false }, 1: { sorter: false }, 2: { sorter: false }, 3: { sorter: false }, 4: { sorter: false }, 5: { sorter: false }, 6: { sorter: false } } }); $('#orgRelationshipTable').tablesorter({ sortList: [[0, 0]], widgets: ['zebra'], headers: { 10: { sorter: false } } }); //Additional Contact Info $('#txtPersonDOB').mask('99/99/9999').datepicker({ changeMonth: true, changeYear: true, showOn: 'button', buttonImage: '/UI/ODI.Agent.Public.UI/EnterpriseMedia/css/images/calendar_schedulehs.png', buttonImageOnly: true }); $('#loadAdditionalInfo').click(function () { if (ValidateAdditionalInfo()) { $("#acinfoError").hide(); displayAdditioanlContactInfo(); } }); $('#additionalContactInfoModal').dialog({ title: 'Additional Contact Information', resizable: false, modal: true, closeOnEscape: true, position: ['center', 200], width: 850, height: 400, autoOpen: false, buttons: { "CLOSE": function () { $(this).dialog('close'); $("#txtPersonSSN4").val(""); $("#txtPersonDOB").val(""); $("#reCaptcha").val(""); document.getElementById("loadAdditionalInfo").disabled = true; location.reload(true); } } }).prev(".ui-dialog-titlebar").css("background", "#214A98"); //loadEducationCredits $('#loadEducationDetails').click(function () { $("#ceError").hide(); if (ValidateLicenseCEInfo()) { $("#ceError").hide(); displayEducationCredits(); } }); function displayEducationCredits() { if ($.trim($("#ceSearchParameters_SSN4").val()) != '' && $.trim($("#ceSearchParameters_LicenseNbr").val()) != '') { LoadDisplay('Loading Education Details...'); } $.ajax({ type: 'POST', url: '/UI/ODI.Agent.Public.UI/AgentLocator.mvc/DisplayIndividualEducation', data: { ssn4: $.trim($("#ceSearchParameters_SSN4").val()), licenseNbr: $.trim($("#ceSearchParameters_LicenseNbr").val()), licensingEntityId: '605245', completionDateFrom: '04/11/1973' }, dataType: 'json', success: function (data, status) { if (data.IsModelStateValid) { educationCreditsWrapper.html(data.Content).dialog('open'); $("#ceSearchParameters_SSN4").val(""); $("#ceSearchParameters_LicenseNbr").val(""); createCECaptcha(); $("#reCECaptcha").val(""); } else { alert(data.Content); createCECaptcha(); $("#reCECaptcha").val(""); } }, error: function (xhr, status, error) { handleClientError(xhr, status, error); } }); } educationCreditsWrapper.dialog({ title: 'Education Details', resizable: false, modal: true, closeOnEscape: true, position: ['center', 150], width: 1200, height: 800, autoOpen: false, buttons: { "CLOSE": function () { $(this).dialog('close'); } } }).prev(".ui-dialog-titlebar").css("background", "#214A98"); }); function displayAdditioanlContactInfo() { var token = $('input[name="__RequestVerificationToken"]').val(); $.ajax({ type: 'POST', url: '/UI/ODI.Agent.Public.UI/AgentLocator.mvc/DisplayAdditioanlContactInfo', data: { __RequestVerificationToken: token, licensingEntityId: '605245', ssn4: $.trim($("#txtPersonSSN4").val()), dob: $.trim($("#txtPersonDOB").val()) }, dataType: 'json', success: function (data, status) { if (data.IsModelStateValid) { $('#additionalContactInfoModal').html(data.Content).dialog('open'); $("#acinfoError").hide(); } else { $("#acinfoError").text(data.Content); $("#acinfoError").show(); createCaptcha(); $("#reCaptcha").val(""); document.getElementById("loadAdditionalInfo").disabled = true; } }, error: function (xhr, status, error) { handleClientError(xhr, status, error); } }); } function ValidateAdditionalInfo() { var isACInfoValid = true; var vrtxtSSN4 = $.trim($("#txtPersonSSN4").val()); var vrtxtDOB = $.trim($("#txtPersonDOB").val()); var vrtxtreCaptcha = $.trim($("#reCaptcha").val()); $("#acinfoError").hide(); var error = ""; if (vrtxtSSN4 == "") { error = '

' + "Last 4 SSN is Required." + '

'; //$("#acinfoError").text("Last 4 SSN is Required."); $("#acinfoError").show(); isACInfoValid = false; } if (vrtxtDOB == "") { if (error != "") { error = error + '

' + "DOB is Required." + '

'; } else { error = '

' + "DOB is Required." + '

'; } $("#acinfoError").show(); isACInfoValid = false; } if (vrtxtreCaptcha == "") { if (error != "") { error = error + '

' + "Captcha is Required." + '

'; } else { error = '

' + "Captcha is Required." + '

'; } $("#acinfoError").show(); isACInfoValid = false; } if (vrtxtSSN4 != "" && vrtxtSSN4.length != 4) { $("#acinfoError").text("Last 4 SSN is not valid."); $("#acinfoError").show(); isACInfoValid = false; } if (!isACInfoValid && error != "") { $("#acinfoError").html(error); } else { $("#acinfoError").hide(); var error = ""; } return isACInfoValid; } function IsNumber() { var charCode = (event.which) ? event.which : event.keyCode; if (charCode >= 48 && charCode <= 57) { return true; } else { return false; } } function LoadDisplay(value) { $.blockUI({ title: "Loading", message: '

' + '

' + '

', timeout: 3000, }); $(".blockUI.blockOverlay").css('z-index', '9998'); $(".blockUI.blockMsg.blockPage").css('z-index', '9999'); }

Name:

NPN#:

New Search

Contact Information

Fax Number

910-230-3017

Business Location Phone

901-230-3009

Business Location Phone

910-230-3009

Business Location Phone

910-230-3009

Business Location Phone

910-230-3009

Business Location Phone

910-230-3009

Mailing Licensing Address

TART INSURANCE SERVICES, INC.
PO BOX 308
DUNN, NC 28335-0308

Business Licensing Address

TART INSURANCE SERVICES INC
1245 W CUMBERLAND ST
DUNN, NC 28334-4609

Business Email Address

joey@tartinsurance.com

Additional Contact Information

Change

* Uppercase Only

Agent Printable License

License Information

License # License (Lines of Authority) Status Reason Originally Issued Effective Date End/Expiration Date
826661 Individual - Non-Resident - Major Lines Active Renewal 10/08/2010 05/01/2012 04/30/2026
  • Casualty
Active 10/08/2010 05/01/2012
  • Property
Active 10/08/2010 05/01/2012

Alias Information

No alias information exists for the licensing entity.

Appointment Information

To view one insurance company appointment at a time, select a company from the drop down list, then click the "Click to Load" button. (Please note: an insurance company's name will appear in the drop down list if there has been any appointment transaction with the company.)

To view multiple insurance company appointments, click the "View All" button. (Please note: the search results are limited to a maximum of approximately 500 appointment transactions - current and terminated. Use the single company appointment search for appointment transactions that do not appear on the view all results. This feature may take some time to load.)


Appointment Companies:

Individual Associations

Click the Click to Load button to view this agent's individual associations.

New Search

Ohio Department of Insurance - Individual License Details (2024)

FAQs

How long is an Ohio insurance license good for? ›

In order to keep your Ohio insurance license in good standing with the state, you will need to renew your license by completing your Ohio Insurance CE requirements before your expiration date. In Ohio, insurance licenses expire every two years.

How many questions are on the Ohio insurance license exam? ›

How many questions are on the Ohio insurance exam? This will depend on the insurance license exam that you take. The Ohio Life, Accident, and Health and the Property and Casualty insurance exams both have 150 questions. The Life Agent exam is made up of 100 questions.

How do I get my P&C license in Ohio? ›

Property and Casualty Insurance License Ohio
  1. Step 1: Complete an Ohio Pre-License Education Course. ...
  2. Step 2: Get a Fingerprint-Based Background Check. ...
  3. Step 3: Take the Ohio Licensing Exam. ...
  4. Step 4: Complete an Ohio License Application. ...
  5. Step 5: Watch for Your Application Results.
Jun 5, 2024

How do I check my CE credits in Ohio? ›

Agents can check their transcript by going to the department's website at www.insurance.ohio.gov. The transcript will list all courses on file for the current renewal period. Allow a minimum of fifteen (15) days from the course completion date for the credits to be posted.

How do I renew my expired insurance license in Ohio? ›

Renewal Guidelines

Your License is Eligible for Renewal during your “License Renewal Period.” The License Renewal Period for Ohio Licensed Agents begins 90 Days prior to your Expiration Date. To Renew your license, complete a renewal application online at: Online through NIPR, located here OH Agent Renewal (NIPR)

How many times can you take the Ohio insurance license exam? ›

There is no limit to the number of times a candidate may retake an examination, if necessary, to pass. However, for the examinations that require a pre-licensing course certificate, the certificate must be valid (certificates are valid for 180 calendar days beginning on the date of issuance).

How much does it cost to get your insurance license in Ohio? ›

Once you pass the life insurance exam, you can apply for your Ohio life insurance license. The application fee is $10 plus $5.60 transaction fee, and you must apply online via the NIPR. The ODI will issue a life insurance license to individuals who are at least 18 years old and have passed the proper licensing exam.

Where do you take Ohio insurance exam? ›

You may test at any PSI testing center in Ohio or online via PSI's Remote Proctored Examination service; you may also make arrangements through PSI Services LLC to take the Ohio insurance exams at other PSI Service LLC locations nationwide.

How much do you make selling insurance in Ohio? ›

Licensed Insurance Agent Salary in Ohio
Annual SalaryMonthly Pay
Top Earners$122,164$10,180
75th Percentile$92,700$7,725
Average$62,189$5,182
25th Percentile$40,400$3,366

What does P&C insurance include? ›

Property and casualty insurance is a broad insurance, which includes coverage to your structure, property and belongings in the event of vandalism, theft, and more.

How much does a property and casualty license pay in Ohio? ›

While ZipRecruiter is seeing salaries as high as $75,106 and as low as $21,866, the majority of Property And Casualty Insurance Agent salaries currently range between $35,700 (25th percentile) to $51,800 (75th percentile) with top earners (90th percentile) making $61,319 annually in Ohio.

What do you use CE credits for? ›

While the number and type of CE credits required varies depending on the professional field and regulatory body, the purpose is the same: to ensure that professionals stay current in their field and continue to provide the highest quality services to their clients or patients.

What does CE mean for credits? ›

Identify continuing education (CE) credits available in your state and learn about courses and resources to help you maintain your license.

Does Ohio use CE broker? ›

Register to provide continuing education

This is a portal for registering with Ohio. CE Broker provides the application and directs any attachments or fees directly to the board office.

How long are Ohio licenses valid for? ›

Current Ohio License

The driver license will expire in four years or eight years depending on applicant's choice and qualifications. Drivers turning 21 cannot renew more than 30 days before their birthday.

Do Ohio business licenses expire? ›

Renew a Business License in Ohio

The Ohio vendor license does not ever need to be renewed, but professional licenses for businesses regulated by either the state or local municipalities may require renewal on an annual or biennial basis.

How long do you lose your license for no insurance in Ohio? ›

If you're caught driving uninsured within five years of your first offense, the state will suspend your driver's license for a full year, but you may be able to get limited driving privileges after 15 days.

How much does it cost to get an insurance license in Ohio? ›

For most insurance lines, the filing fee will be $10, though there are a few exceptions: Surety Bail Bond: $150. Surplus Lines: $100. Managing General Agent: $20.

Top Articles
Latest Posts
Article information

Author: Margart Wisoky

Last Updated:

Views: 6272

Rating: 4.8 / 5 (58 voted)

Reviews: 81% of readers found this page helpful

Author information

Name: Margart Wisoky

Birthday: 1993-05-13

Address: 2113 Abernathy Knoll, New Tamerafurt, CT 66893-2169

Phone: +25815234346805

Job: Central Developer

Hobby: Machining, Pottery, Rafting, Cosplaying, Jogging, Taekwondo, Scouting

Introduction: My name is Margart Wisoky, I am a gorgeous, shiny, successful, beautiful, adventurous, excited, pleasant person who loves writing and wants to share my knowledge and understanding with you.