Build OData APIs with REST Best Practices

Last modified: April 22, 2024

1 Introduction

Companies with a large portfolio of custom-built REST APIs use a set of best practices to ensure these APIs function properly and in a predictable way. Mendix Studio Pro gives you full control of all these aspects when creating a published REST service.

If you plan to create a large number of APIs, implementing REST using published OData services can save you a lot of time and ensure consistency across your APIs.

This document shows how published OData services in Studio Pro help you build APIs that implement REST best practices.

1.1 Common REST API Best Practices

REST API best practices usually include some of the following:

  • Use JSON – JSON is easy to read, and libraries to process it are available in most languages.
  • Use nouns, not verbs (resource-first, no actions in path) – APIs should be resource-based instead of action-based to improve decoupling; all interactions assume resources and a limited set of standardized operations.
  • A resource has an ID – Every resource has a unique path where it can be retrieved or updated. For more details, see the Retrieving Data section in this document.
  • A resource has a uniform interface (for example, the correct use of an HTTP operation) – Use the standardized set of HTTP operations to work with your resources: GET (retrieve), POST (create/insert), PUT (replace), PATCH (update), DELETE. For more details, see the Creating and Changing Data with Full CRUD section in this document.
  • Name collections with plurals – An endpoint that can return more than one resource should indicate that by naming the resource in plural.
  • Use of standard HTTP status codes – HTTP has standardized status codes for most situations. Status codes work the same way across applications. Application-specific errors should be handled in the payload. For more details, see the Automatic Standard HTTP Error Codes section in this document.
  • Use filtering, sorting, and pagination – These features enable clients to flexibly define what data they need to ensure the best possible performance and limit resource usage. They also help to decouple the client and the service, as not all clients have the same needs. For more details, see the Filtering, Sorting, Paginating, and Selecting Data section in this document.
  • Versioning and compatibility – Versioning is usually date-based. Semantic versioning should include the major version part of the URL. Clients should assume changes to an endpoint are always backwards compatible. In case of breaking changes, a new endpoint including a new major version number should be used. For more details, see the Versioning section in this document.
  • Secure APIs – Apps should not be able to access more information than they are allowed to see.

1.2 Starting Point: Example Domain Model

This document uses the following domain model as an example:

REST APIs, and especially OData APIs, often provide access to data within the app. Mendix OData APIs are excellent for providing APIs for entities, but can also be used for accessing other types of data. For more information, see the API-First section to learn about decoupling APIs from the domain model.

2 Creating OData APIs

Create OData APIs by right-clicking on an entity > Publish in OData service or right clicking on a module > Add other > Published OData service.

2.1 Published OData Service Document

In the published OData service document, select which attributes and associations are available in the API:

For every published entity, you can define what functionality is available:

  • Create = POST
  • Read = GET
  • Update = PATCH
  • Delete = DELETE

You can also define other capabilities, such as if you can count results (using a $count query), skip results (using a $skip query), or limit the number of results returned (using a $top query).

2.2 OpenAPI 3 Contract and Test Page

When you start your app, you see the Swagger UI documentation and test page:

The test page lists all accepted parameters and example payloads for regular responses and error payloads:

It provides a JSON schema of all the payload types:

And it provides an OpenAPI 3.0.1 contract:

3 Retrieving Data

OData REST APIs work as you would expect a REST API to function. Below are some examples using the REST Client plugin in Visual Studio Code.

3.1 Fetching All Resources

The following call is an example of fetching all customers:

GET http://localhost:8080/odata/CustomerApi/v1/Customers

The response is as follows:

3.2 Getting a Resource by Identifier

Fetch a single Customer resource by adding the identifier between brackets:

GET http://localhost:8080/odata/CustomerApi/v1/Customers(1)

The response is as follows:

OData also supports using multi-field IDs by providing the required attributes as a key value list between the brackets.

3.3 Filtering, Sorting, Paginating, and Selecting Data

OData standardizes how to specify which resources to consume. This provides the client with the tools to ensure the response payload is as small as possible and that the Mendix Runtime service implementation will be able to push down the filtering, sorting, and pagination into the database. This uses the database query optimizer and available indexes to optimize performance.

The following URL parameters are available:

  • $filter – This defines filter expressions for the resource attributes (equals, not equal, smaller, larger, contains, etc.).
  • $top, $skip – This indicates how many resources to skip and how many to return to help implement client-side pagination.
  • $orderby – This defines how to sort the resources in the response payload.
  • $select – This defines which attributes of the resource to return.
  • $expand – This defines which associated resources to include in the response payload.
  • $count – This defines whether or not to return the count of the query result instead of the resources themselves.

For more information about these query options, see Supported OData Operations.

The following example illustrates how you can combine filtering, sorting, pagination, and attribute selection:

GET http://localhost:8080/odata/CustomerApi/v1/Customers?$filter=contains(Lastname, 'a')&$orderby=CompanyName&$select=FirstName,Lastname,CompanyName&$top=2&skip=1

The response is as follows:

Alternatively, you can specify the query in the payload of a POST call, which is useful if you have a long complex query.

4 Creating and Changing Data with Full CRUD

Published OData services in Studio Pro allow you to easily create and change data.

4.1 Inserting New Data

If you select Insertable in the API definition, the client can create new resources using POST. Successfully created data will automatically result in a 201 status code, and a Location header provides the URL of the resulting resource.

Here is an example of a POST call:

POST http://localhost:8080/odata/CustomerApi/v1/Customers

{
    "Firstname": "Jimmy",
    "Lastname": "Smooth",
    "Title": "Engineer",
    "CompanyName": "CustKo"
}

The response is as follows:

The following GET request uses the returned location header to query the new resource at its endpoint:

GET http://localhost:8080/odata/CustomerApi/v1/Customers(5)

The response is as follows:

4.1.1 Using a Prefer Header

Instead of doing the two API calls illustrated above, you also have the option to use the Prefer header. If you give this the value of return=representation, the resulting resource will be returned automatically, resulting in one fewer API call.

See this example of a POST call with a Prefer header:

POST http://localhost:8080/odata/CustomerApi/v1/Customers
Prefer: return=representation

{
    "FirstName": "Alexis",
    "Lastname": "Sweeper",
    "Title": "Ir.",
    "CompanyName": "GadgetsAndBeers"
}

The following is the response:

4.1.2 Creating Resources with Associations

If you want to create a new resource associated with another resource, you can refer to the identifier of the resource in your payload. See the following POST request:

POST http://localhost:8080/odata/CustomerApi/v1/Addresses
Prefer: return=representation

{ 
    "Country: "UK",
    "HouseNumber":"11",
    "PhoneNumber":"123123",
    "Zipcode":"13423",
    "Street":"Mainstreet",
    "Customer":{"@id":"Customers(11)"}
    "City":"Bristol",
    "AddressType":"Home"
}

The response is as follows:

4.2 Modifying Existing Data

The PATCH operation allows you to update resources. Mendix Runtime automatically handles updating the entity; there is no need to implement a microflow to handle this.

Example of a PATCH request:

PATCH http://localhost:8080/odata/CustomerApi/v1/Customers(5)

{
    "FirstName": "Jimmy2"
}

The response is as follows:

And a subsequent GET request:

GET http://localhost:8080/odata/CustomerApi/v1/Customers(5)

The response is as follows:

Validation rules defined on the entity will be respected automatically. You can use a validation microflow if you want to enrich the default behavior, including adding additional validations.

4.2.1 Validation Rules

When changing data with POST, PUT, or DELETE, validation rules specified on the underlying entities are applied automatically. A failed validation rule will result in a HTTP status code 422. The error message will be included in the response payload:

The validation rules on Customer show that both Firstname and Lastname are mandatory. When you try to create a new customer without a last name, this will fail with status code 422, and the error message as defined in the validation rule will be returned in the response. See the following POST request:

POST http://localhost:8080/odata/CustomerApi/v1/Customers

{
    "FirstName": "Jimmy",
    "Title": "Engineer",
    "CompanyName": "CustKo"
}

The response is as follows:

4.2.2 Validation Microflows

You can generate and reuse generated validation microflows. The following example shows a validation microflow for the customer entity.

  1. On a save button, right-click and select Generate validation microflow. The resulting validation microflow looks like this:

  2. Use the Show validation message activity to set the errors to be shown in the UI in this generated validation microflow. This microflow will be called in the insert microflow displayed below.

  3. Specify that you want to use a microflow to insert a new Customer resource via the OData API. This microflow will be called when you do a POST operation on the endpoint of the resource:

  4. In the insert microflow, call the generated validation microflow and commit the object if the validation succeeds:

    If validation fails, the show validation message texts are provided automatically in the response payload. See the following POST request:

    POST http://localhost:8080/odata/CustomerApi/v1/Customers
    
    {
        "FirstName": "Boris",
        "Lastname": "Smith",
        "Title": "",
        "CompanyName": ""
    }
    

    The response is as follows:

4.3 Deleting Data

Deleting is provided using the DELETE operation. See the following DELETE request:

DELETE http://localhost:8080/odata/CustomerApi/v1/Customers(5)

The response returns HTTP/1.1 204 No Content.

4.4 Automatic Standard HTTP Error Codes

OData APIs automatically return the correct HTTP status code if a specified resource cannot be found. See the following DELETE request:

DELETE http://localhost:8080/odata/CustomerApi/v1/Customers(5)

The response is as follows:

5 Performance

OData enables you to specify which attributes you need so other attributes are not included in the response. This reduces the size of the response message.

To reduce the number of round-trips, you can include associated objects in the response using the $expand expression. See the following GET request:

GET http://localhost:8080/odata/CustomerApi/v1/Customers(1)?$expand=Addresses,Notes

The response is as follows:

You can use select and expand in combination with filter, orderby, top, and skip. For more information, see the Filtering, Sorting, Paginating, and Selecting Data section below.

See the following GET request:

GET http://localhost:8080/odata/CustomerApi/v1/Customers
            ?$select=CustomerId,Lastname
            &$expand=Addresses($select=AddressId,City),Notes($select=NoteId,Note)
            &$filter=contains(FirstName,'a')
            &$orderby=CustomerId+desc
            &$top=1

For long queries, place the query in the request body. You can do this by using POST and adding $query to the endpoint. See the following POST request:

POST http://localhost/8080/odata/CustomerApi/v1/Customers/$query
Content-Type: text/plain

The response is as follows:

This result is very similar to using GraphQL, where you can query a graph of objects and limit the attributes returned to only those that you need.

6 API-First: Decoupling APIs from the Domain Model

You may not want to directly publish APIs for your persistable entities because of the following:

  • You want to decouple your API resources from your entities
  • You want to define your services API-first
  • Your data is not stored in the database of your app, but in a third-party data source

There are two ways to take an API-first approach, as explained in API-First vs. API Design-First: A Comprehensive Guide:

  • Define a contract, like an OpenAPI document. This is not supported by Mendix OData services unless the contract is also based on OData.
  • Set the use case and developer experience of using your APIs first. This is not tied to a specific tool. You can start by defining your APIs on a whiteboard, in a text document, or any other tool. The main challenge is to define a resource model that makes sense to your API users.

6.1 Defining a Resource Model

Define a resource model using non-persistable entities, publish them in an OData service, then model microflows to map these resources to the actual source data. This will require you to handle the OData query options in the microflow. Using custom Java actions can simplify this process, as explained in the Combining Data from Two Entities section below.

6.2 Combining Data from Two Entities

Refer to the example domain model for this section.

In this example, you can publish a single REST resource that combines data from the Customer entity and the Address entity. It will join data from both entities and combine the Firstname and Lastname attributes into a single attribute, Fullname. Provide the home address information and exclude other address types:

  1. Add the CustomerHomeAddress entity as a resource to the OData service:

  2. Use an OQL dataset to define the query to fetch this information from your entities:

  3. Define a microflow that will fetch the correct data when a user does a GET on the CustomerHomeAddress resource:

The microflow uses a Java action to translate the OData query to an OQL expression using the OQL Dataset as the base query. This ensures that filtering, sorting, and paging work as expected.

 
     
  1. Do a REST GET call and define which attributes you need, how you want it sorted, and how many objects you need:

    GET http://localhost:8080/odata/CustomerApi/v1/CustomerHomeAddresses?$select=CustomerId,FullName,Street,City&$orderby=City+desc&$top=2
    

    The response is as follows:

  2. You have decoupled your REST resource from your domain model persistent entities. You can change your entities and use the OQL query to ensure the published data remains backwards compatible.

    The Java action used above adds the OData query to the original OQL query as follows:

    With some formatting, it can be more readable. The original OQL query is used as a subquery (inline view) for the OData query. All the expressions will be pushed down into the database and benefit from the performance of the database optimizer:

6.3 Defining Logic in an Insert Microflow

How do you provide logic in a REST API if REST best practices specify that you should only use the default CRUD (create, read, update, delete) operations?

Consider the input parameters of your logic as the REST resource. In this way, executing logic can be modeled by handling the logic in the insert microflow. This allows you to execute the logic when a client POSTs a new resource to your API.

This example shows a CustomerEmailRequest entity that a client can create using an API.

  1. The API will execute the logic to send the customer an email when this resource is created:

  2. Define the logic as the insert (POST) action:

6.4 Running Operations Asynchronously

Consider running operations that take longer to complete asynchronously. This means you tell the client that the request has been received, that it is not yet completely processed, but that it will be done in the background. In Studio Pro, you can use a task queue to schedule the logic to run in the background. In the meantime, the client can GET the resource to see what the status is.

The last activity of the insert microflow calls the SendCustomerEmail microflow using the task queue:

The POST response provides the location where the client can retrieve request status. See the following POST request:

POST http://localhost:8080/odata/CustomerApi/v1/CustomerEmailRequests

{
    "Subject":"Test email",
    "EmailText":"Hello",
    "CustomerId":1
}

The response is as follows:

When you GET the resource from the location provided, the status has the value Sent, indicating that the logic has completed. See the following GET request:

GET http://localhost:8080/odata/CustomerApi/v1/CustomerEmailRequests(12)

The response is as follows:

7 Versioning

Reliable versioning is important for APIs. Client applications should trust your API to not make any incompatible changes that will cause the app to malfunction. Any change you make to an API should always be backwards-compatible, though backwards-incompatible changes can be made in a new major version. Breaking changes can only be introduced in a new major version, offering the end-user a period of time where they can migrate from the old version to the new version. This means you need to have the ability to run two versions of the same API side by side.

With OData, similar to REST APIs in Studio Pro, you have full control over how you define your versions. By default, it is suggested you use semantic versioning, adding the major version number to the URL.

If you need to introduce breaking changes, duplicate the entire OData service and change the major version:

This approach ensures customer applications can migrate at their own pace because you will have the old version and the new major version of the API in your application. Once all customer applications have migrated, you can remove the old API from your application.

8 Read More