Skip to main content
Version: 10.9.x

REST API for CRUD operations on a data collection

A REST API is an application programming interface that conforms to the constraints of REST architectural style, and allows for interactions with RESTful web services. REST APIs allow clients (like mobile, web and other applications) to read, write, and edit the data of a system (like servers, databases, and many others) hiding the implementation details of the system itself.

In this tutorial we will see how to use Mia-Platform Console to configure and expose outside the project a REST API to perform CRUD operations (Create, Read, Update, Delete) on a data collection.

What We’ll Build

In this tutorial we will create a CRUD collection rappresenting generic products and expose it through REST API. More specifically, we will:

  • Set up a CRUD Service;
  • Create the products CURD collection;
  • Add fields to the collection;
  • Expose the CRUD via REST API;
  • Test the API through API Portal.

Prerequisites

In order to start the tutorial you need:

  1. A URL to connect to a MongoDB Database.
tip

You can connect to any MongoDB instance. If your are using Mia-Platform Console in PaaS, you can request a MongoDB Database managed by Mia-Platform by opening a proper Service Request. Before opening a Service Request, check if a MongoDB Database was already provided for you or your team during Company creation or Project creation phases.

Better to have:

  • Some familiarity with API and REST concepts. More information about API is available here.
info

If you have already done the previous tutorial, you can skip the rest of the section and directly start the tutorial.

Before starting, we will assume that, you already have a clean project in Mia-Platform Console. In order to know how to create a project on Mia-Platform Console, read this guide.

The project must:

  1. Be integrated with a deploy pipeline;
  2. Have an ingress route with api-gateway as service;
  3. Have an API Gateway or a Envoy API Gateway in your project;
  4. Have a properly configured API Portal and Swagger Aggregator.
tip

If your are using a Mia-Platform Console in PaaS and the project has been created using the "Mia-Platform Basic Project Template", the project already satisfies conditions 1 and 2.

Create CRUD Service

The first step is to create the CRUD Service plugin, its purpose is to abstract Data Collections allowing developers to expose CRUD APIs over the database in an easy, scalable, and secure way. In order to do it, from the Design area of the project, we must:

  1. From the sidebar, go to the Microservices section;
  2. Click on the Create a Microservice button;
  3. In the dropdown menu, select From Marketplace option;
  4. Type CRUD Service in the search bar;
  5. Select the "CRUD Service" card from the list of results;
  6. Click on the Create button applying the default fields;
  7. Save the changes. You don't know how to do it? Take a look at Mia-Platform handbook!

Create CRUD Service

Create a new CRUD collection

After creating the CRUD Service you can create a new CRUD collection that contains all the information about the products of a library. To do so, you can take advantage of the UI for the CRUD service configuration provided by Mia-Platform Console. Using the sidebar, you must move into the MongoDB CRUD section of the project.

In the left area of this section you can find the button "Create new CRUD" and the list of all collection of the project. In our case this list is empty since we started from scratch.

To create the "products" collection:

  1. Select "Create new CRUD";
  2. Fill the input:
    • Name: it is the CRUD collection name, in this case products;
    • Internal Endpoint: it is the endpoint exposed by the CRUD Service, by default it is the same as the name, but it can be changed. In this case we can use /products;
  3. Click on the Create button.
  4. Save the changes.

Create new MongoDB CRUD

CRUD collection configuration

Once you have created a collection it is time to configure its schema. As you will notice the Mia-Platform Console has already created some default fields that can not be changed. These fields are necessary for the proper functioning of the CRUD collection:

FieldTypeRequiredNullableDescription
_idObjectIdYesNoThe document id
creatorIdStringYesNoThe creator id
createdAtDateYesNoThe creation date
updaterIdStringYesNoThe updater id
updatedAtDateYesNoThe update date
__STATE__StringYesNoThe state

Moreover, you can notice that:

  • in the Indexes section, an index on the _id field and one on the createdAt field has been created
  • in the Internal Endpoints, /products endpoint has been created with default __STATE__ set as PUBLIC.
note

Since the default __STATE__ is PUBLIC, newly created items will have PUBLIC state by default (i.e. when an explicit __STATE__ value is not provided in the request)

At this point, we can modify the DB schema by creating the required properties of your CRUD collection, in this case the one about the products. To do so, you can choose between 2 options:

  1. Manually adding the properties;
  2. Importing the properties from a JSON file.

Option 1: Manually add CRUD collection fields

In order to create the fields manually, you must click on the Add field button.

Add field to the CRUD collection

In this interface you can add:

  • Name (required): the name of the field;
  • Description: the description of the field;
  • Type (required): the type of the field. Accepted values are:
    • String, Number, Boolean, Date, GeoPoint, Object, Array of String, Array of Number, Array of Object, or ObjectId;
  • Required: if the field is required;
  • Nullable: if the field is nullable;
  • Client-side Encryption: if the field use the client-side encryption;
  • Allow search on encrypted field: if the encrypted field is searchable;
  • Sensitivity: the GDPR sensitivity. Accepted values are:
    • Unclassified, Public, Confidential, Secret, Top Secret;
  • GDPR Description: the GDPR description
tip

At bottom of the drawer you can select "create Another" to create another field after creating the one in progress. By selecting this option the drawer will not disappear after confirming the creation of the field, so that you can immediately proceed with the configuration of the new one.

Once you have filled in all the needed properties you can create the field by clicking on the "Create" button.

For this example we will create the following fields:

NameTypeRequiredNullableDescription
nameStringYesfalseName of the product
descriptionStringNofalseDescription of the product
priceNumberYesfalsePrice of the product
imageObjectNofalseImage of the product
stockNumberNofalseHow many products are in stock

After adding these fields, you can read the properties in the CRUD page:

Fields to the CRUD collection

Once you have created all the fields, remember to save the changes!

tip

You can use the "Export to JSON" button to download the current CRUD schema for future imports!

Option 2: Import CRUD collection

You can add fields from a JSON file compliant to the the schema required by the CRUD service. For this example, we will use the file that you can download here. If you prefer, you can create a new JSON file containing the following schema:

Click to see the tutorial schema:


In order to import the fields from a file, we must:

  1. Click on the "Import fields from file" button;
  2. In the dialog box, select the file you want to use.

Once you have created all the fields, remember to save the changes!

tip

You can import fields during the creation phase of a new CRUD Collection, by clicking on the "Import fields from file" button, as you can see in the image.

Expose the CRUD using an endpoint

In order to make CRUD operations on the newly created collection available from outside the project, we will now add an endpoint.

tip

If you don't know how to do it take a look at the first tutorial

The parameters to set for the endpoint are the following ones:

  • Base path: /products
  • Type: in the dropdown menu select "CRUD"
  • CRUD Base Path: in the dropdown menu select /products

Our configuration is ready. You can save and deploy it in a runtime environment! You don't know how to do it? Take a look at Mia-Platform handbook!

Try CRUD endpoints with API Portal

You can now go to the API portal: from your project settings, click on the "Go to Documentation" link of the environment you have deployed in. Under the products tag, you can see the list of endpoints that will allow us to read, write, edit, and delete the information on your CRUD collection.

You can perform some insertions using POST call and then try to read the data using the GET request.

note

Remember that, by default, the GET API will only return data having PUBLIC as STATE.

Note that the configuration we implemented was done in such a way that elements are created by default with PUBLIC state.

Here you can find an overview of the API Portal: Endpoint Portal

By expanding a method, you will find everything you need to make an call. In this case, for example, the POST call: Endpoint POST Portal