Logo
Creative Financial Staffing

Accounts Payable Specialist

Creative Financial Staffing, Houston, Texas, United States, 77056

Save Job

Accounts Payable Specialist We're looking for a motivated and detail-driven Accounts Payable Specialist to support our expanding finance team. This position is well-suited for someone who excels in a fast-paced, high-volume setting and enjoys owning the accounts payable function from end to end. You'll play a key role in day-to-day AP operations while helping improve processes and drive efficiencies. What You'll Do as the Accounts Payable Specialist:

* Process roughly 2,000 invoices per month with a high level of accuracy

* Retrieve invoices from vendor portals, including consolidated statements (such as FedEx), and create Excel upload files for automated processing in Stampli

* Manage invoices received through the AP inbox and ensure proper routing and approvals

* Validate vendor information, including TIN verification through the IRS database

* Set up new vendors and maintain accurate vendor master records

* Monitor and respond to AP-related inquiries in a timely and professional manner

What We're Looking For in the Accounts Payable Specialist:

* Solid knowledge of the full accounts payable cycle with the ability to clearly articulate processes

* Demonstrated experience in a high-volume AP environment

* Strong to advanced Excel skills, including Pivot Tables, VLOOKUP, filtering, sorting, and SUM functions

* Proactive, self-directed, and solutions-focused mindset

* Excellent attention to detail paired with strong analytical and problem-solving abilities

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