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)

References

Top Articles
Latest Posts
Article information

Author: Clemencia Bogisich Ret

Last Updated:

Views: 5909

Rating: 5 / 5 (60 voted)

Reviews: 83% of readers found this page helpful

Author information

Name: Clemencia Bogisich Ret

Birthday: 2001-07-17

Address: Suite 794 53887 Geri Spring, West Cristentown, KY 54855

Phone: +5934435460663

Job: Central Hospitality Director

Hobby: Yoga, Electronics, Rafting, Lockpicking, Inline skating, Puzzles, scrapbook

Introduction: My name is Clemencia Bogisich Ret, I am a super, outstanding, graceful, friendly, vast, comfortable, agreeable person who loves writing and wants to share my knowledge and understanding with you.