-
Notifications
You must be signed in to change notification settings - Fork 0
Native Data Management System
Nodify Headless CMS is not just a powerful content management system—it also integrates a native data management system. This built-in feature allows users to store and retrieve data directly within the CMS, eliminating the need for external databases or third-party services. The system is entirely API-driven, ensuring seamless integration with various applications.
Nodify provides an integrated way to push and fetch data efficiently. Unlike traditional CMS solutions that require separate databases or APIs, Nodify's internal data management system enables developers to interact with data effortlessly.
Nodify exposes a REST API to handle data operations. The following endpoints illustrate how data can be managed within the system:
POST /v0/datasThis endpoint allows users to store data within Nodify's internal system.
GET /v0/datas/key/{key}Retrieve a specific data entry using its unique key.
DELETE /v0/datas/key/{key}Remove a specific data entry based on its key.
GET /v0/datas/contentCode/{code}Retrieve data entries associated with a specific content code.
DELETE /v0/datas/contentCode/{code}Delete all data entries associated with a specific content code.
The data structure used in Nodify follows a straightforward JSON schema:
{
"contentNodeCode": "string",
"creationDate": 0,
"modificationDate": 0,
"dataType": "string",
"name": "string",
"key": "string",
"value": "string"
}- contentNodeCode: Identifier linking data to a content node.
- creationDate: Timestamp indicating when the data was created.
- modificationDate: Timestamp for the last modification.
- dataType: Type of data being stored.
- name: Human-readable name for the data entry.
- key: Unique identifier for the data entry.
- value: The actual stored data.
- Eliminates the need for external databases – Everything is handled within Nodify.
- Simplifies development – Developers can push and pull data without additional configurations.
- API-first approach – Ensures seamless integration with external systems.
- Scalability – Enables easy data expansion and retrieval at scale.
With Nodify Headless CMS, managing structured data is more efficient than ever. Its built-in data management system allows developers to store, retrieve, and delete data without relying on external sources. This makes Nodify an all-in-one solution for both content and data management needs. 🚀