Logo
Creative Financial Staffing

Collections Specialist

Creative Financial Staffing, Akron, Ohio, United States, 44301

Save Job

Job Title: Collections Specialist Location: On Site in Akron, OH Schedule: Monday - Friday Salary: $41,600 - $55,000 Why Work Here?:

* Growing, team-oriented company with a strong reputation in the industry

* Supportive leadership that values your ideas and encourages professional growth

* Opportunity to build meaningful client relationships and play a key role in cash flow success

* Competitive compensation and benefits package

* Stable work environment with work-life balance in mind

Key Responsibilities:

* Monitor and manage assigned accounts to ensure timely payment of outstanding invoices

* Contact business clients via phone, email, and written correspondence regarding past due accounts

* Investigate and resolve discrepancies or disputes that delay payment

* Prepare regular aging reports and updates for management

Qualifications:

* High school diploma or equivalent

* 2+ years of experience in B2B collections or accounts receivable

* Strong negotiation and communication skills

* Professional, persistent, and customer-service oriented

For immediate and confidential consideration reach out to me, Kelley McEndree, at . EB- document.addEventListener('DOMContentLoaded', () => { const root = document.querySelector('#job_desc'); if (!root) return; // Skip wrapping if we've already done it if (root.dataset.hashtagsWrapped === "1") return; const SKIP = new Set(['SCRIPT','STYLE']); const walker = document.createTreeWalker(root, NodeFilter.SHOW_TEXT, { acceptNode(node) { if (!node.nodeValue || !node.nodeValue.match(/#[\p{L}\p{N}_]+/u)) return NodeFilter.FILTER_REJECT; // Avoid wrapping inside an existing hashtag span let p = node.parentNode; while (p && p !== root) { if (p.nodeType === 1 && p.hasAttribute('data-hashtag')) return NodeFilter.FILTER_REJECT; if (SKIP.has(p.nodeName)) return NodeFilter.FILTER_REJECT; p = p.parentNode; } return NodeFilter.FILTER_ACCEPT; } }); const re = /#[\p{L}\p{N}_-]+/gu; function wrapTextNode(textNode) { const text = textNode.nodeValue; re.lastIndex = 0; let m, last = 0; const frag = document.createDocumentFragment(); while ((m = re.exec(text)) !== null) { // preceding plain text if (m.index > last) frag.appendChild(document.createTextNode(text.slice(last, m.index))); // hashtag span const span = document.createElement('span'); span.textContent = m[0]; span.setAttribute('data-hashtag', '1'); // idempotence guard span.setAttribute('style', 'font-size:9px;color:#fff'); // requested inline style frag.appendChild(span); last = re.lastIndex; } // trailing plain text if (last