Skip navigation
Inward Revenue Consulting Logo

Want to transform your recruitment?

Contact us now

The benefit of insight. The ability to deliver.

Plan & Pricing

Every client has their own needs. Some need to hire someone once a year and some businesses are growing rapidly. Whatever your requirement we have a price and a solution to fit .

Contingency

20%

Full Executive Search using the IRC Method

Start Now

Guaranteed

20%

Full Executive Search using the IRC Method

Full Executive Search using the IRC Method

Start Now

Inward Managed

Starts at £6K per month

App driven recruitment as a service . Central management for all your vacancies - and oversight of your teams hiring activity

Monthly Subscription for allotted vacancy volumes across all modalities across the business - your own in house recruiter

No extra fees ! - predictable recruitment costs and cashflow

Full Executive Search using the IRC Method

Minimum 1Dedicated Full time resource to the account

More cost effective than an inhouse recruiter

More leverage and resource than an inhouse recruiter

Start Now
[code_snippet id=5 format]
document.addEventListener( 'wpcf7submit', function( event ) { if ( '654' == event.detail.contactFormId ) { var inputs = event.detail.inputs; console.log(inputs); for ( var i = 0; i < inputs.length; i++ ) { if ( 'Title' == inputs[i].name ) { var post_title = inputs[i].value; } if ( 'FirstName' == inputs[i].name ) { var first_name = inputs[i].value; } if ( 'LastName' == inputs[i].name ) { var last_name = inputs[i].value; } if ( 'Email' == inputs[i].name ) { var email = inputs[i].value; } if ( 'Phonenumber' == inputs[i].name ) { var phone_number = inputs[i].value; } if ( 'LinkedinProfile' == inputs[i].name ) { var linked_profile = inputs[i].value; } if ( 'lookingforrole' == inputs[i].name ) { var looking_role = inputs[i].value; } if ( 'CurrentBasicSalary' == inputs[i].name ) { var currentsal = inputs[i].value; } } var ajaxurl = jQuery('#ajaxurl').val(); var datasend = { action : 'save_active_data', post_title : post_title, first_name : first_name, last_name : last_name, email : email, phone_number : phone_number, linked_profile : linked_profile, looking_role : looking_role, currentsal : currentsal, } jQuery.ajax( { url: ajaxurl, type: 'post', dataType: 'json', data: datasend, success( data ) { console.log(data); }, } ); } }, false );