Logo
Creative Financial Staffing

Accounts Receivable and Collections Specialist

Creative Financial Staffing, Indianapolis, Indiana, United States, 46204

Save Job

Collections and Accounts Receivable Specialist:

Our client is looking for a standout Collections and Accounts Receivable Specialist who is ready to take ownership of a high-visibility role that directly impacts cash flow, customer relationships, and the financial health of the organization. This is an opportunity for a Collections and Accounts Receivable Specialist who thrives in a fast-paced environment, enjoys problem-solving, and wants to step into a position where their results are recognized immediately. As the Collections and Accounts Receivable Specialist , you won't just be making calls-you'll be managing critical AR functions, partnering closely with internal teams, and helping strengthen the company's overall financial posture. If you're driven, organized, and passionate about bringing in revenue efficiently and professionally, this Collections and Accounts Receivable Specialist role will keep you energized and engaged every day. What You'll Take Ownership Of

* Managing the full collections process, including outreach, follow-up, and resolution of past-due accounts

* Building strong, solution-focused relationships with customers to improve payment performance

* Monitoring aging reports and driving actionable strategies to reduce DSO

* Posting payments, processing cash receipts, and ensuring accurate AR records

* Researching and resolving billing discrepancies in partnership with operations and accounting

* Providing weekly reporting and insights to leadership on AR trends and collection success

* Supporting month-end close activities related to accounts receivable

What Sets This Opportunity Apart

* A company that values efficiency and empowers you to make improvements

* Direct influence over cash flow and financial operations

* A supportive team environment with leaders who appreciate initiative

* Room to grow your accounting and finance skills beyond collections

* Stability, visibility, and the chance to make a measurable impact from day one

If you're a Collections and Accounts Receivable Specialist who wants to move into a role where you drive results, shape processes, and strengthen customer relationships while supporting a growing organization, this position offers the challenge and recognition you're looking for. Our client is ready to bring on the right Collections and Accounts Receivable Specialist who can hit the ground running and elevate their AR function.

EB-1910390842 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