Monday, November 26, 2018
How to Use YouTube Videos to Improve Your Google Ranking
from
https://www.marketingprofs.com/articles/2018/40231/how-to-use-youtube-videos-to-improve-your-google-ranking
Emerging tech to meet B2B buyer expectations
It is estimated that the US alone will generate over $1.2 trillion in business to business ecommerce sales by 2021. With a market of that size, B2B organizations need to start planning now as to how they’ll compete for a piece of that trillion-dollar share. In order to compete, companies must differentiate – and that comes down to the customer experiences they deliver.
B2B buyers want the same digital commerce experiences they are receiving on B2C channels.
Here are three emerging tech trends B2B organizations need to include in their 2019 plans if they want even a sliver of the B2B ecommerce market in 2021.
Mobile
B2B buyers are spending more time on mobile devices, both personally and professionally. Plus, the workforce is getting younger with more technologically savvy employees who will expect the ease of use via a mobile device in B2B.
Anheuser-Busch, an American brewing company, is capitalizing on mobile very well with their B2B mobile app offering, Tapwiser. Tapwiser allows for a simpler path to purchase by enabling quick order submission via the app instead of with a sales rep. Anheuser-Busch also allows for on-demand delivery service with the Bud Light Button, a one-tap beer delivery app.
Artificial Intelligence (AI)
The rise of artificial intelligence in the workforce to support and accelerate processes is rapidly unfolding. AI allows for better automation and the use of predictive insights deliver smoother transactions and better personalization for B2B customers.
Hill & Markes, a distributor based in upstate New York, had an inundated call center until they took advantage of AI. They launched the AI-powered messaging platform, LivePerson, to communicate with their B2B buyers online and in real-time. The AI solution empowers customer service reps with conversational marketing tools to cross-sell or upsell when inventory is out of stock.
Machine Learning (ML)
A subset of the AI phenomenon, machine learning allows for a streamlined approach to account management. ML allows organizations to utilize past and present customer data to project future behavior and commerce trends. ML can monitor customers better by delivering stronger data on who the customers are and what they want, when they want it.
Although this is more of a B2C use case, there is a lot to be learned from Mazda and how they utilized machine learning for a new car campaign.
The ML technology crawled across various social media networks, searching for the right people via their posts with the right preset indicators (content) to be selected for a promotion during SXSW. Mazda was then able to locate who the key influencers were to include in their new car promotion at the event.
B2B organizations can learn from this data-centric approach and how Mazda was able to personalize content to better engage with a very specific crowd vs a general audience segment. Investing in ML will give B2B organizations the data and opportunity to better understand their buyer persona.
The post Emerging tech to meet B2B buyer expectations appeared first on Get Elastic Ecommerce Blog.
from
https://www.getelastic.com/emerging-tech-to-meet-b2b-buyer-expectations
Monday, November 19, 2018
The Most Expensive States to Run Search Ads In [Infographic]
from
https://www.marketingprofs.com/charts/2018/40169/the-most-expensive-states-to-run-search-ads-in-infographic
Dependency Upgrades: why commerce software engineers need a policy and process
For most commerce software engineers, dependency management includes upgrades and best practice suggests upgrading dependencies proactively. In order to ensure a smooth process and one that is maintained properly, it is best to have a well-defined policy and process.
Why you need a policy and process
All software depends on other software to accomplish useful tasks. Even the smallest hello world program depends on the libraries of the language it is written in. Typically, as a piece of software gets more sophisticated it depends on more third-party software or libraries. Leveraging existing third-party libraries is a standard practice for commerce engineers to enable faster development.
However, vulnerabilities and bugs of dependencies become vulnerabilities and bugs of the software the dependencies are included in. As a result, dependencies must be chosen with due consideration, and constantly monitored. Best practice is to not only upgrade dependencies proactively, but to also be on the latest versions of libraries as often as possible.
Why Upgrade Dependencies?
The single biggest reason for upgrading dependencies is security. Most software has vulnerabilities that are gradually fixed over time. Upgrading dependencies, is the simplest way to avoid security issues. The latest versions can introduce new vulnerabilities that are not yet discovered. However, it is still safer to upgrade in order to fix known vulnerabilities.
Most of the changes between versions are bug fixes and performance improvements, that’s another good reason to upgrade. In recent tests, a docker version upgrade gave a significant boost to the performance numbers.
Other reasons to upgrade include being able make use of new features, avoiding giant upgrade steps as it is always easier to update in smaller increments, and it is also easier to upgrade a single dependency if everything else is up to date.
Upgrade Experiences
Commerce software developers should be upgrading dependencies on a regular basis.
Here are a few examples of good, bad and ugly dependency upgrades that inform the upgrade process.
The Good
Overall library upgrades should be smooth or have relatively few issues. Good libraries maintain backward compatibility, and provide suitable replacements for any APIs that are deprecated. As a result, upgrading such libraries should involve only minor code changes. Good migration guides, and well-crafted deprecation warnings make this process relatively painless. Recent examples of these include various Apache Commons libraries, Mockito, and RxJava.
The Bad
Every now and then an upgrade does not go according to plan, and unexpected issues arise due to not having the bugs or changes well documented. Recent example of this occurred with an upgrade to Guava version 25. Guava upgrades are typically seamless and jumping to version 25 was expected to be a simple version bump.
However, intermittent errors occurred in performance tests because of a misbehaving cache. The intermittent nature of the errors meant that they were difficult to track down, resulting in a days-long test to locate the issue. To allow enough time to deal with such surprises, it is best to do upgrades at the beginning of a release cycle.
The Ugly
Sometimes an upgrade can get ugly. This is typically the case when a number of dependencies have to be upgraded in lockstep. This problem will be exacerbated if regular upgrades are not done, and several upgrades of versions need to take place in one go.
As an example, a recent Spring upgrade required upgrading Cucumber. Upgrading Cucumber required upgrading Spring. Also resulting in needing to upgrade Camel, Junit, Servicemix, and Gemini. Attempting to untangle this dependency web was challenging. 
Automation
Upgrading dependencies is not the most exciting work for a commerce engineer. To ensure upgrades are quick and happen often, it is strongly recommended to leverage all automated tools available.
For example, Versions Maven Plugin is best to use for maven projects to generate reports listing the libraries that have new versions available. The plugin can also auto-upgrade the versions directly in source code. Most languages and frameworks have similar tooling available.
It is worth noting to only use the auto-upgrade feature to do revision, and minor version upgrades. These upgrades are typically quick and require minimal code changes. Overall, the plugin is a huge time saver.
A major version upgrade is often a more conscious decision to upgrade with the understanding that such an upgrade will require some work.
New vulnerabilities are discovered every day, and it is hard to keep up with without some automation.
Use a security and license compliance tool, e.g. Black Duck, to identify vulnerabilities and license compliance issues in the open source libraries.
Lastly, it is recommended to create a robust suite of functional and performance tests that ensure library upgrades do not have negative consequences.
The Upgrade Process – what a strong process looks like
- Identify the libraries to be upgraded. Leverage an automated tool in this step. Most languages and frameworks have one. E.g. Use Versions Maven Plugin for Maven projects.
- Ensure version being upgraded to does not have known security vulnerabilities, and license issues. Before changing a single line of code one can verify candidate versions using a security compliance tool e.g. Black Duck.
- Do the bare minimum code change to upgrade the version i.e. fix any compilation errors, and any functional test failures. Don’t try to use any new features at this point.
- Verify performance. Run your whole performance test suite.
- As much as possible, do the upgrades at the beginning of a release cycle to give you time to live with any surprises that might come up.
- As an optional exercise – use the new features. Take a look at release notes of the new versions, check if there is anything that catches the eye and would be helpful. Use your judgement to determine if it might be useful to spend a bit of time on this.
In closing, be sure to continue to learn from experiences and fine tune this process.
The post Dependency Upgrades: why commerce software engineers need a policy and process appeared first on Get Elastic Ecommerce Blog.
from
https://www.getelastic.com/dependency-upgrades-why-commerce-software-engineers-need-a-policy-and-process
Friday, November 16, 2018
Did Nike just unlock the code for the future of retail?
Originally reported at Fast Company
Nike’s six-story, NYC-based flagship store just opened (November 15, 2018) and with it a plethora of digital features have been rolled out in-store. According to Nike’s Chief Design Officer, John Hoke, the future of retail is a mix between digital and physical.
And it looks like they’ve accomplished just that – aiming to make shopping in-store as convenient as shopping online.
The store definitely offers an experience and even addresses the quick in-and-out convenience sought after by most of today’s consumers. For those who don’t want to deal with the crowds but need to try on items before placing their online orders, Nike’s flagship store offers “Speed Shop” – allowing shoppers to reserve shoes online to try on in-store.
According to Fast Company, shoppers select the shoes online, head into the flagship store where the ‘Speed Shop’ area has marked a locker with the shopper’s name that is then unlocked with their phone. After the right pair is selected, shoppers use their phone to checkout, never needing to stand in line and are in and out of the store in minutes.
On top of all that ease, the Speed Shop is located in the store’s basement with its own separate entrance making it even that more convenient and seamless for shoppers.
So, what’s the actual key to unlocking that future of retail code? It’s the brand’s app.
“Nike app’s retail mode pops up when it recognizes that a user has entered a retail store. Retail mode allows customers to request items, unlock their locker, and checkout in-store.” (Fast Company) Retail mode does more than just work within Speed Shop, it also enables shoppers to scan QR codes on mannequins and have all articles of clothing appear on their phone or even request to have them sent to a dressing room to try on.
The best part of the app is that you no longer need to stand in line to complete your purchase. All POS is done within the Nike app using the same payment methods as online. For those shoppers new to the mobile app checkout and payment process, Nike’s flagship shop has also included designated self-checkout points.
For all the digital and physical convergence to work, shoppers need to have the Nike app, be Nike members (it’s free), and allow location tracking.
“This is a great extension of an overall experience with Nike. It blurs the lines between the digital shopping channels and the tangible nature of interacting with the brand in the store. I expect to see more and more branded manufacturers and retailers making investments like these to create a unique overall brand experience,” said Harry Chemko, CEO, Elastic Path.
Nike is definitely setting the bar and setting it high with experiential shopping and building that consumer relationship beyond just the physical store.
The post Did Nike just unlock the code for the future of retail? appeared first on Get Elastic Ecommerce Blog.
from
https://www.getelastic.com/did-nike-just-unlock-the-code-for-the-future-of-retail
Thursday, November 15, 2018
Do I really have to lose my “head” to replatform my commerce solution?
If you want to stay competitive, the answer is yes.
Replatforming any technology solution is never an easy undertaking – humans by nature are opposed to any kind of change, especially one that could cause major disruptions. Therefore, discussing the notion of replatforming your commerce solution is usually brought on with some protest.
However, there is a customer-centric commerce platform revolution unfolding and it’s all powered by APIs. An API-first,“headless commerce” solution is becoming the go-to commerce application for modern, cutting-edge brands and service providers.
The monolithic commerce solutions that exist today were built back in the ‘90s when there was only one digital touchpoint to worry about – the web.
- Intershop, 1992
- IBM WebSphere Commerce, 1996
- Oracle Commerce (formerly ATG), 1997
- SAP (formerly hybris), 1997
Today, consumers use an average of six touchpoints to make a purchase.
With today’s emerging technologies and the ever-growing consumer touchpoints, it is not enough to just upgrade your current monolithic commerce system. Yes, some of the monoliths are beginning to add API functionality, but they are doing so as an afterthought. They were never intended or designed to be headless, and their APIs are disjointed and not optimized.
If you select to upgrade your legacy system and go through the long and expensive migration, your organization will still lack the competitive edge – and worse yet, you’ll eventually just have to start from scratch and replatform anyways.
Progressive Transformation
For years, practitioners’ only option for replatforming was the “rip and replace” approach, but this does not have to be the case present-day. Moving to an API-driven, headless solution allows for a “phase out” approach when replatforming; or a progressive transformation.
A progressive transformation with a headless solution allows you to start small with a single segmented touchpoint, product or region, and migrate at your own pace.
Rather than replacing your existing platform, you’ll want to stand up the headless solution alongside it and move application integrations one at a time over to the new commerce functionality while keeping the back-end systems where they are.
Before you begin the migration, you should identify all your current systems of record for products, customers, and fulfillment. This will help you develop a better picture of how to align your roadmap for them with where your new commerce platform will take you.
- Where is your product information kept? Is it stored in a home-built system, or in spreadsheets—and ask yourself where and how it will be stored a few years from now.
- Where are your customer records kept? Are you currently using a third-party CRM or an in-house system? What level of interoperability do you hope to have between your CRM and your various channels?
- What state is your ERP in, and what’s your roadmap for it?
Next, you’ll also want to examine your segmentation potential. The more you can segment your touchpoints, product lines, and geographic regions, the more agile and flexible you’ll be in the marketplace.
- Which geographic regions are you operating in now, and which regions do you hope to be operating in one or two years in the future? Do you have a plan for payments types, payment gateways, and tax provider software in these various regions? Getting these in place can take time.
- Do you plan to add new channels or touchpoints?
- What’s your plan for mobile?
After all that is sorted out and the new commerce platform is in place, it will be time to migrate. This is where the phased approach or progressive transformation takes hold. All the while be mindful of how these changes will impact your own organization, whether you’re replatforming or going through any other business transition.
When headless commerce replatforming is done correctly, positive results are achieved immediately, with minimal negative impacts and the shortest path to revenue. With an API-driven headless solution, you build what you want, when you want. You’re no longer limited to the capabilities of your monolithic platform, but rather build with your customers’ expectations guiding the way.
The post Do I really have to lose my “head” to replatform my commerce solution? appeared first on Get Elastic Ecommerce Blog.
from
https://www.getelastic.com/do-i-really-have-to-lose-my-head-to-replatform-my-commerce-solution
Wednesday, November 14, 2018
Is Your Commerce System Vulnerable to Meltdown on Black Friday or Cyber Monday? (UPDATED)
Last year’s holiday shopping season was another record-breaker. Adobe reported that the 2017 holiday ecommerce revenue climbed to $108.2 billion, beating what was previously forecasted by $1 billion. On Black Friday alone, a record $5 billion was reported in sales.
Unfortunately, like the year prior, not all brands and retailers were ready for the surge in traffic.
Calvin Klein, Ted Baker, Macy’s, and Lowe’s, all experienced online technical issues. Websites lagged or crashed. Some customers couldn’t even log on. Others had a cart full of items that they couldn’t pay for, some even saw their items disappear and replaced by someone else’s selections. Many frustrated netizens took their complaints to social media, but for every person who bothered to tweet, dozens more simply took their money elsewhere.
Readying for the flurry
According to the Forrester 2018 Holiday Outlook Report, online retail sales will increase this year by 14% and companies have worked hard over the past year to optimize every part of the shopping journey to win, serve, and retain customers during this often make-or-break shopping season.
Raw computing power has become commoditized to the point where there is little benefit in owning and running infrastructure to handle super high traffic on just a few days of the year. For companies that experience highly variable computing loads, the cost of maintaining on-premise servers just to cover those high load days, is senseless. Retailers are preparing for Black Friday surges in ecommerce system traffic with demand-based computing clouds like Amazon Web Services (AWS) that provide unlimited dynamic scaling. Computer capacity is adjusted according to demand, protecting both customer experience and costs since companies don’t pay for servers sitting idle in low season.
Companies using clouds like AWS to run their critical commerce infrastructure are also buying the expertise of the world’s top technology infrastructure platform experts. They’ll ensure new technology innovations are implemented as they arise.
The blurry season
Not only are total sales going to increase, but lines between physical and digital experiences continue to blur, putting more pressure on underlying commerce systems. Even brick-and-mortar shoppers use their mobile to check reviews or compare prices. Many retailers also use mobile presence technologies in-store. These customer tracking systems can provide contextual information to a commerce system that can then offer discounts via SMS or an app as people browse. Some stores have cut down lines by giving staff mobile point of sale devices.
All these technologies depend on reliable and scalable bandwidth in store as well as a commerce system that can handle digital and physical store purchase surges. With a unified transactional layer for online and in-store purchases, shoppers experience consistent products, pricing and promotions regardless of sales channel. Combine this with the power of AWS and the entire commerce infrastructure can easily scale as demand skyrockets. Checkout line clogging up? Add more mobile checkouts help line bust. Don’t have the right item in store? Let customers purchase anyway and ship it directly to their house. The flexibility that a unified commerce layer provides customers allows your company to solve the bottleneck problems that might sour their experience with your brand.
As commerce becomes more and more connected throughout the customer journey whether digital or physical, all transactions will go through a central system. Commerce systems running on a platform that offers guaranteed dynamic scalability will ultimately win out because they will be able to keep up with the unpredictable peaks of the holiday rush.
The post Is Your Commerce System Vulnerable to Meltdown on Black Friday or Cyber Monday? (UPDATED) appeared first on Get Elastic Ecommerce Blog.
from
https://www.getelastic.com/commerce-system-vulnerable-meltdown-black-friday-updated
2018 Blogging Research: How Does Your Blog Compare To The Best
Examine this analysis of 2018 Blogging Research to improve your blog and related content marketing. Includes charts, examples and tips.
The post 2018 Blogging Research: How Does Your Blog Compare To The Best appeared first on Heidi Cohen.
from
https://heidicohen.com/2018-blogging-research/
Tuesday, November 13, 2018
Google Search Factors: How Top-Ranking Pages Differ, Depending on Topic Area
from
https://www.marketingprofs.com/charts/2018/40063/google-search-factors-how-top-ranking-pages-differ-depending-on-topic-area
Saturday, November 10, 2018
B2B Marketing Books: MarketingProfs B2B Forum Authors
Want to be a B2B marketing smarty? Check out these MarketingProfs B2B Forum authors. These experts provide the B2B know-how you need to succeed.
The post B2B Marketing Books: MarketingProfs B2B Forum Authors appeared first on Heidi Cohen.
from
https://heidicohen.com/b2b-marketing-books/
Thursday, November 8, 2018
Content Syndication: How To Distribute Your Content On The Cheap
Need to increase content marketing distribution on the cheap? This content syndication guide has 7 marketing steps, 7 types and 5 actionable tactics.
The post Content Syndication: How To Distribute Your Content On The Cheap appeared first on Heidi Cohen.
from
https://heidicohen.com/content-syndication/
Monday, November 5, 2018
Five Tips to Ace This Holiday Season With Search Ads
from
https://www.marketingprofs.com/articles/2018/40099/five-tips-to-ace-this-holiday-season-with-search-ads
Foundations of Commerce: Grit before Glitz
The race to get a product or service in front of a customer, or the desire for a customer to want or need a product or service has been running for thousands of years.
Around 2700 BC, China mastered the ability to create silk from silkworm protein fibers. Sitting on this monopoly (the emperors of China refused to share the secret of silk production), China traded silk with other countries, creating a luxury “brand.” Demand for silk was so high that it became a catalyst for new trade routes across Central Asia and into Europe, colloquially known as the (original) “Silk Road.” The demand for silk created massive trade routes for all kinds of goods.
Back then, the Romans were the largest buyers of silk. Eventually, they were able to crack the secret of silk’s beginnings and began producing their own—after being dependent on trade with China for centuries.
Leaked secrets destroyed the silk monopoly, but the trade routes persisted. Over time more and more ways to trade emerged. In fact, today’s multifaceted digital trade routes present products to customers on four or five different devices using apps, social media and chat to name just a few. For all that sophistication, as new digital routes accumulate, the foundational technologies on which they depend become overstretched. They can barely support two trade routes, let alone four.
How have we come so far and yet failed to address the importance of the commerce foundation?
One thing most of us can relate to is a commercial vision. That vision may come down from the C-suite, it may come from an industry thought leader, or it may come from you. The vision is to create a product or service and sell it; along with, creating buzz, a website, developing a multichannel experience for your customers, you have to make it all happen.
Everyone believes in the vision and gets excited. The design team begins working on next-level experiences. AWS instances are spun up. The development team begins working with the product manager who is now responsible for delivering this vision and generating hundreds of JIRA tickets.
Ready to go! Well, not quite.
What we are seeing is a fundamental shift in a couple of areas of IT. Through the 1990’s and into the 2000’s, projects started with core systems like Oracle, SAP or IBM as cornerstones. These systems were used out-of-the-box or modified to solve unique business problems. Although the “Big 3” are still in the game, innovation and technology has evolved and there is a myriad of other solutions. And, point solutions for departments may do a better job than a suite, but here’s what happens:
VP #1 has a job to do, so she brings in platform A, VP #2 has a job to do, so he brings in platform B. Then VP #3… well, you get the picture. Through acquisitions even more technologies are added to the mix. Eventually, there are multiple systems throughout the company, including numerous CRM’s, reporting tools, application stacks, coding practices and standards.
The big mess underneath
It’s easy to point to communication as the culprit, and of course it is, but let’s leave that discussion for another day. Even with disparate systems, “the vision” still must be implemented. But now the implementation strategy has shifted from the top (e.g. UI) to the bottom (core infrastructure). Working with the foundation is harder than working with the UI because the technology dots are simply not connected to provide a consistent customer experience. Customer information is almost always strewn across multiple CRM’s. Customer or partner assets are not centralized. Product data is stored in multiple repositories. Information is all over the place internally, and it’s possible only a few people can make sense of and normalize all this data. The underlying foundational technologies have left a mess.
Now, with a promised “vision” delivery, what do you do?
It is possible to deliver “an” experience even with the current back-end state, but there is very little overall focus on what the impact of that is going to be on the company or, more importantly, the customer. “Tech-debt” is a hot buzzword. At what point should businesses write down this debt? At what expense do we carry it along? Do any of us go back and address it? And if we do, what’s the ROI versus just addressing it from the get-go? Twitter is a great place to read customer complaints and many times I can guess that reluctance to deal with tech-debt ended up with “a” customer experience, but maybe not the “right” one.
So, why do we continue to operate in this way? Are we just falling prey to the perception of growth using new and glitzy technologies for us to tell new stories to customers? Is looking to the glitz before the grit ever worth it?
How to overcome this? Start from the bottom-up
Sure, there are solutions out there like MuleSoft or microservices, that attempt to stitch up a unified architecture so that delivering on the vision is possible. But is that the right thing to do? Even if it is, stitching still involves time which a lot of us do not bake into promised delivery dates. It will take courage, but we need to reverse our promises of delivery in too short a time. We need to make sure the foundation is solid before we start the work up top. Building on a solid foundation will pay off for customers and the company. Customer experiences will be more targeted and more relevant. Those two things alone would increase growth and build corporate reputation.
I recently went through this situation with a scratch build out of a commerce site, but our vision was severely hampered by the current state of our foundation systems. It is difficult to explain to upper management the “why” since most likely they’re business minded and expect the results. They are not interested in the technical challenges of where data may be hidden, or the lack of any API or connector to that data.
The build has progressed tremendously since launch, but what if we had done it right from the beginning and made sure our foundation was poured? We’d be way further ahead.
I’d love to hear your input if this is something you’ve experienced as well. Or maybe I’m the only lucky one…
The post Foundations of Commerce: Grit before Glitz appeared first on Get Elastic Ecommerce Blog.
from
https://www.getelastic.com/foundations-of-commerce-grit-before-glitz
Thursday, November 1, 2018
API-driven commerce: Why it is OK to lose your head now
In an effort to differentiate and compete, top brands are choosing a best-of-breed architectural approach due to the inherent limitations of monolithic commerce applications. As a result, headless API-driven commerce is gaining momentum and traction across many industries.
So why it is OK to lose your head now? Here are the top monolithic challenges to consideration:
Challenge 1: Lack of control over front-end experiences
Traditional full-stack commerce platforms limit companies to a particular presentation or front-end experience throughout the entire commerce system. As a result, customer experiences are driven by the system’s capabilities and constraints, and do not necessarily represent the way a company wants to do business. Customizations are challenging to implement and maintain with future product releases. Over time, single-stack solutions grow larger and become overly complicated for developers to understand or make changes to without breaking functionality.
Headless advantage: With headless commerce, the front-end layer is separate from the core commerce logic and offers maximum flexibility of the experience that is being presented to the customer. Customizations are containerized and don’t need to be rebuilt with each new upgrade. Any front layer is game, be it custom development, content management system or digital experience platform.
Challenge 2: Inability to experiment with new touchpoints
Single vendor, full-stack solutions can provide adequate implementations when only one or two touchpoints are required, e.g. web storefront and mobile-friendly sites. When adding more touchpoints to the experience, some companies replicate or use separate commerce solutions to support every new touchpoint. This approach creates commerce silos which cannot be easily connected back to systems of record. With business logic spread across silos and systems, this increases the potential for inconsistent customer experiences. Modifications to the systems are required to reduce these inconsistencies. Over time, this results in an unsustainable system with a high risk of failure.
Headless advantage: With headless commerce, decoupling the front-end from the back-end allows companies to innovate without needing to replicate the commerce logic for each touchpoint. Leveraging rapidly emerging touchpoints, such as IoT, bots, point-of-sale interfaces, screenless devices becomes easier than ever. This allows back-end systems to evolve as time and budgets permit.
Challenge 3: The risk of tightly coupled, full-stack solutions
When the front-end and the back-end are tightly coupled, every change to the front-end impacts the back-end and vice-versa. In this type of architecture, the front and back-end software are too heavily reliant on each other. Even with an API layer in between, changes to the experience layer often require changes in multiple places, by different developers making them costly, time-consuming and error-prone. At the end of any development, major parts, and sometimes the entire system, must be redeployed. If the back-end of the commerce platform experiences a performance issue or, requires maintenance, this can create downtime for the live site. A single bug can quickly bring down the entire system. Because full-stack systems are slow to change, they limit the ability of a business to respond to market opportunities and meet customer expectations.
Headless advantage: With an API-first approach, the changes in the back-end don’t impact the front-end. The change is needed in one place only and doesn’t require reset of the entire system.
Challenge 4: Unify selling across business units, channels and geographies
Gaining business efficiency and transparency across business units, lines of business, channels, brands and geographies is top of mind among many business executives. Legacy full-stack platforms make it more challenging than ever to gain a 360-degree view of the customer and pivot the business towards a customer-centric model. Many enterprise brands with a global footprint find themselves with multiple siloed instances of commerce platforms and a siloed approach to commerce. With mounting maintenance costs for each platform, delivering one brand experience is harder than ever.
Headless advantage: API-first commerce offers unparalleled flexibility when it comes to sunsetting legacy systems and creating a unified selling platform. Replacing one commerce functionality, e.g. pricing, shopping cart after another, unifies the selling with minimal risk to the business.
To sum up: Headless, API-based commerce solutions provide business users with the power they need to create new ways of interacting with customers, and new ways to monetize customer experiences without requiring back-end development. Seize this opportunity, starve your monoliths to death and lose your head.
The post API-driven commerce: Why it is OK to lose your head now appeared first on Get Elastic Ecommerce Blog.
from
https://www.getelastic.com/api-driven-commerce-why-it-is-ok-to-lose-your-head-now