Loading navigation...
Platform Tools
Logo
What is Object Manager?

What is Object Manager?

Logo

5 mins READ

Overview

Objects in UnifyApps are structured data entities that represent, store, and manipulate information across the platform. The Object Manager provides a centralized system to create, access, modify, and delete these objects.

Image
Image

Why do we use an object?

Objects serve as transient links, bridging the gap between primary data sources and the downstream applications that consume this data. This enables you to preserve your data indefinitely, even if the data at the primary source has expired or been deleted. 

Image
Image

Use Case 1

  • Let’s say we have to send feature announcement emails to all our clients to notify them about the latest platform updates. 

  • To achieve this, first, we should store all the client details, including their email addresses, in our object. We can then use it in our automation to send them individual emails.

  • In your automation builder, add the Storage by UnifyApps node. Select the Fetch Records action to get all the details of your clients stored in your object.

    Image
    Image

  • Next, add a Loop to iteratively send an email to each client. Construct your email desirably. After this is set up, you can save and deploy your automation, which will send your email to all your clients.

    Image
    Image

Use Case 2

  • Let’s say we have to display country-wise data in our application using simple cards.

  • To achieve this, we will store all the relevant country details in an object, which we will access in our application.

  • In your application builder, set up a data source which fetches records from your object using Storage by UnifyApps.

    Image
    Image

  • Finally, match the respective fields in your components, and your application will display all the records dynamically from your object.

    Image
    Image

FAQs

What is the difference between Custom Objects and Standard Objects?

Custom Objects are user-created data structures specific to your needs. Standard Objects are pre-built objects provided by UnifyApps with default functionality.

When do we use an object? Why not just use a variable instead?

Objects are used when you want the data to persist and be used at a later point in time. Additionally, by using an object you can access the data from all your automations, applications, etc. and not just in a single workflow. Variables instead just persist for a single execution.