OData Integration with the Bookings API Using the APIs feature
This tutorial demonstrates how to integrate an internal OData 3.0 API using the ComUnity Developer Toolkit. The API, named Bookings, is a sample service prepared internally within the organisation and exposes structured booking data through an OData-compliant interface.
The Toolkit provides native support for OData services, allowing developers to expose data via Virtual Entities, configure access control, and surface external data in the application using standard screen controls.
This tutorial guides you through registering the Bookings API, defining a data model, and building a screen to display booking records using a dynamic list.
Before You Begin
If you are new to the APIs feature in the ComUnity Developer Toolkit, we recommend reviewing the JSONPlaceholder Todos API tutorial. That tutorial introduces key integration concepts using a REST-based API. This tutorial builds on that foundation but focuses on a direct OData integration, which simplifies request handling by aligning with the Toolkit’s native architecture.
What You’ll Learn
By the end of this tutorial, you will be able to:
Register an internal OData 4.0 API in the ComUnity Developer Toolkit
Define a Virtual Entity that models booking data from the API
Configure role-based access to surface data to authorised users
Display booking records using a dynamic list in the UI
Enable click-to-navigate from list items to a booking detail screen
About the Bookings OData API
The Bookings OData API exposes a single entity type: Booking. It is defined under the namespace ComUnity.Samples.Data.Models, and available via the Bookings entity set.
Each Booking entity includes the following properties:
BookingId (Int32): The unique identifier for the booking
Description (String): A short description of the booking
BookingDate (DateTime): The scheduled date and time
Created (DateTime): When the booking was created
Modified (DateTime): When the booking was last modified
IsDeleted (Boolean): Indicates if the booking has been soft-deleted
Prerequisites
Access Requirements
Access Requirements
A ComUnity user account with the necessary permissions (contact ComUnity Support if required).
A single-tenant environment is required for API integration (organisations must host their own instance of the Toolkit in Azure).
If a single-tenant instance is unavailable, users can request access to the shared ComUnity Platform environment (API management is not supported in this environment).
Technical Knowledge
C# programming skills
CommentFamiliarity with WCF Data Services, Entity Framework, and OData
Development Tools
Visual Studio 2022
Access to the ComUnity Developer Toolkit
Project Setup Before proceeding with the API integration, ensure that you have:
Created a project using the Smart City sample or similar.
Successfully built and launched the project.
Registered a user account and signed in to the web app.
Read the official Azure API Management(APIM) documentation Import an OData API to understand the fundamentals OData API integration on the Azure platform.
Register the Bookings OData API
In the Toolkit, navigate to Third Party Services > APIs.
Click Add an Azure API button.
Provide a name (e.g., “Bookings API”) and optional description.
Select the API definition type as OData.
In the Provide Service URL field, enter:
In the Definition Link field, enter the base OData endpoint for the Bookings service:
Click Add Azure API to your project button to register the API on Azure.
Once registered, click the ellipsis (⋮) next to the API and select Fetch operations from Azure to load the available OData entity sets.
Verify the API Registration in Azure:
After the API is registered, click the ellipsis (⋮) button next to the API in the Toolkit and select View in Azure Portal.
You will be redirected to Azure API Management (APIM).
Locate your newly created API under APIs (use the search function if needed).
Once you select your API, the Entity Sets and Functions tab will open. Click the ellipsis (⋮) next to the Bookings entity set and select Test. You will be redirected to the testing screen. Scroll down and click the Send button to execute the request. This action will fetch all bookings from the Bookings API and display the response data.
Define the Virtual Entity
Go back to the ComUnity Developer Toolkit under Data. Create a Virtual Entity named Booking. For detailed instructions on creating Virtual Entities in the Toolkit, refer to the Virtual Entities section.
Add the following properties to the Booking entity using the correct data types:
BookingId → int
Description → string
BookingDate → datetime
Created → datetime
Modified → datetime
IsDeleted → bool
Ensure that View permissions are granted to your User role for more details on setting up table permission view the section Setting Up Role-Based Permissions for Entities: Access Control Configuration.
Expose the API via Custom Classes
Go to Custom Classes in the Toolkit. Select the WebApiConfig class and register your Booking Virtual Entity as shown below (line 23):
WebApiConfigUpdate the Booking entity class as shown below:
Update your controller class as shown below, ensure that you also update all your packages on your file:
BookingControllerBuild your project after updating your Data model and Custom Classes so as to publish your changes and as well as to confirm that there are no errors in your build, if any exist debug and resolve them before proceeding to the next step.
Build the UI
In this section we will outline how to build the Bookings screen that shows all bookings as a list.
Navigate to Screens in the Toolkit and create a Bookings navigation page.
Set an icon of your choice.
Add a List control to your screen.
Click the List item to activate it.
In the Properties Editor, set the following fields:
Data Path:
Item Title:
Click the Save button to persist your changes.
Launch your project to see your list of the titles of bookings fetched from the JsonPlaceholder API server in the Bookings page.
Conclusion
In this tutorial, we demonstrated how to integrate an internal OData API with the ComUnity Developer Toolkit using a sample service called Bookings. We covered the full workflow: registering the API, defining a Virtual Entity, exposing the data via Custom Classes, and building a user interface that displays booking records and supports navigation to detailed views.
By leveraging the Toolkit’s native support for OData, developers can expose structured external data with minimal overhead, enabling consistent access through the data model and user interface. This approach simplifies integration for well-defined services and provides a strong foundation for building interactive, data-driven applications.
You can further extend this implementation by applying filters, adding sorting and paging, or exploring additional operations if the API supports data modification. Refer to the Toolkit documentation for guidance on building forms, configuring permissions, and implementing more advanced interaction patterns.
Last updated