Take the community feedback survey now.

PuneetGarg
Oct 15, 2024
  2064
(6 votes)

Headless with Content Delivery API

Hello Everyone,

This blog will help anyone who wants to start or build an architecture of headless using content delivery api.

When we shifted to headless CMS 12 my first question was how content would be fetched from the front end (I know we have direct API's for them) it's about the building JSON for those pages or blocks.

So I'll share my code experience step by step (I'm taking an example of a page but we can do the same for blocks)

  1. Create a normal Page Type.
  2. Now how will your compiler know which page it has to run we are not directly calling it from view to controller as we are used to it in normal architecture so for that we will create ApiFilters(it will run all every call)
    • Register that Api Filter as Singleton like this  _services.AddSingleton<IContentApiModelFilter, ProductCollectionPageApiModelFilter>();
    • Inside your filter, you need to check if the current request matches your type If not return and do nothing.
    • If it matches your type then we need to create custom code to add our contentarea to our JSON results for that we will create a method where we will do our filtering and binding our model that will be passed in JSON.
    • public void AddContentAreaItemsToContentApiModel(string key, ContentArea contentArea, ContentApiModel contentApiModel)
      {
          var items = new Dictionary<string, object>();
      
          if (contentArea == null || contentArea.FilteredItems == null)
          {
              contentApiModel.Properties.Add(key, items);
              return;
          }
      
          var Filtereditems = contentArea.FilteredItems;
          var index = 0; //Will be appended to the item name in the contentApiModel to prevent duplicate keys in case we have multiples of the same block type 
      
          foreach (var contentAreaItem in Filtereditems)
          {
              _contentLoader.TryGet<IContent>(contentAreaItem.ContentLink, out var content);
      
              if (content == null)
                  continue;
      
              switch (content)
              {
                  // all blocks and pages that will be there in the content area create a case for it like this 
                  case PageType x:
                      {
                          items.Add(nameof(PageType ) + "_" + index, _commerceViewModelBuilder.GetPageDetails(x));
                          index++;
                          break;
                      }
                  default:
                      {
                          index++;
                          break;
                      }
              }
          }
      
          contentApiModel.Properties.Add(key, items);
      }
             
    • this filter will create a key-value pair which will be our JSON result.
    • GetPageDetails -> method that will accept that type and create the model we want to add.
  3. Add this method to our Page type filter, and call your content area in that to filter all things example 
      public class PageApiModelFilter : ContentApiModelFilter<ContentApiModel>
        {
            public override void Filter(ContentApiModel contentApiModel, ConverterContext converterContext)
            {
                try
                {
                    if (!_contentLoader.TryGet(converterContext.ContentReference, out ProductCollectionPage productCollectionPage) || productCollectionPage is not ProductCollectionPage)
                    {
                        return;
                    }
                   
                    AddContentAreaItemsToContentApiModel(nameof(productCollectionPage.TopContentArea), productCollectionPage.TopContentArea, contentApiModel);
                    AddContentAreaItemsToContentApiModel(nameof(productCollectionPage.MainContentArea), productCollectionPage.MainContentArea, contentApiModel);
                    AddContentAreaItemsToContentApiModel(nameof(productCollectionPage.BottomContentArea), productCollectionPage.BottomContentArea, contentApiModel);
                }
                catch (Exception ex)
                {
                    Console.WriteLine(ex.Message);
                }
            }
      

4. Now you can call your API from the front end using ID or any other means and in JSON you will have all data that was serialized.

If you want to remove extra data pre and post serialization you can refer to my other blog here is the link https://world.optimizely.com/blogs/puneetgarg/dates/2024/9/remove-unwanted-properties-for-headless-implementation-using-content-delivery-api-/

Hope that helps!

Thank you 

 

Oct 15, 2024

Comments

Please login to comment.
Latest blogs
Optimizely CMS - Learning by Doing: EP06 - Create Header, Footer, Menu & Component/View for Blocks

  Episode 6  is Live!! The latest installment of my  Learning by Doing: Build Series  on  Optimizely CMS 12  is now available on YouTube! This vide...

Ratish | Nov 4, 2025 |

Going Headless: 3 Ways to Store Custom Data in Optimizely Graph

Welcome to another installment of my  Going Headless  series. Previously, we covered: Going Headless: Making the Right Architectural Choices Going...

Michał Mitas | Nov 3, 2025

A day in the life of an Optimizely OMVP - What's New in Optimizely CMS: A Comprehensive Recap of 2025 Updates

Hello and welcome to another instalment of a day in the life of an Optimizely OMVP. On the back of the presentation I gave in the October 2025 happ...

Graham Carr | Nov 3, 2025

Optimizely CMS Mixed Auth - Okta + ASP.NET Identity

Configuring mixed authentication and authorization in Optimizely CMS using Okta and ASP.NET Identity.

Damian Smutek | Oct 27, 2025 |

Optimizely: Multi-Step Form Creation Through Submission

I have been exploring Optimizely Forms recently and created a multi-step Customer Support Request Form with File Upload Functionality.  Let’s get...

Madhu | Oct 25, 2025 |

How to Add Multiple Authentication Providers to an Optimizely CMS 12 Site (Entra ID, Google, Facebook, and Local Identity)

Modern websites often need to let users sign in with their corporate account (Entra ID), their social identity (Google, Facebook), or a simple...

Francisco Quintanilla | Oct 22, 2025 |