Logo
Creative Financial Staffing

Accounts Receivable Specialist

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

Save Job

Location: Indianapolis, IN

Title: AR Specialist

Salary: $55,000 - $60,000 (depending on experience) About the Company Our client, a well-established organization in Indianapolis, is seeking an Accounts Receivable Specialist to join their finance team. This is a great opportunity for someone who enjoys working with numbers, thrives on accuracy, and wants to contribute to a company that values professionalism and collaboration. Why You'll Love This Role

* Competitive salary range of $55,000-$60,000 based on experience

* Opportunity to work with a respected Indianapolis-based company

* A supportive team environment with room for career growth

* Direct involvement in maintaining the financial health of the organization

Key Responsibilities

* Manage the full accounts receivable cycle, including invoicing, payment posting, and collections

* Prepare and send customer invoices accurately and on time

* Monitor outstanding balances and follow up with clients to ensure timely payments

* Reconcile customer accounts and resolve discrepancies promptly

* Collaborate with sales and customer

Qualifications

* 2 years of accounts receivable experience

* Strong understanding of accounts receivables process

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