Automate Catalog Registration

Last modified: February 14, 2024

1 Introduction

The Catalog is a metadata hub for managing shared registered assets made available through OData and OpenAPI services. Registering data to the Catalog happens automatically when deploying an app with a published service to Mendix Cloud.

For users deploying to a (virtual) private cloud, you can follow the steps in this document to automate registration to the Catalog in your pipeline.

2 Prerequisites

Before you begin, make sure you have the following:

3 Starting Point: dependencies.json

A file called dependencies.json lists all published and consumed services in your app. This file contains information you will need to make the API calls in the next steps.

Create an .mda package that includes dependencies.json. Go to the Environments page in the Developer Portal and click Create Package From Team server, or run mxbuild (see MxBuild for information on how to build a Mendix Deployment Package).

You can also find dependencies.json in Deployment > Model folder of your Mendix application.

4 Change the Data Structure

Ensure your contract metadata will be accepted by transforming dependencies.json using the Transform endpoint of the Registration API (see the Registration API section in Catalog APIs).

For this section, you will need:

  • A personal access token
  • The dependencies.json file
  • Endpoint location Name (found in the metadata.json file for your exposed service, in an array called Constants, under Name)
  • Endpoint location Value (found in the metadata.json file for your exposed service, in an array called Constants, under DefaultValue)

Follow the steps in Registering an environment through the Catalog Registration API to prepare your service details. When finished, register the application.

5 Register the Application

To register the application, you need:

Follow the steps for registering an application through the Registration API.

Upon completion, you will have the application_UUID.

6 Register the Environment

To register the environment, you will need:

Follow the steps in Registering an environment through the Catalog Registration API to register the environment of your application. When finished, register the endpoint (or endpoints).

Upon completion, you will have the environment_UUID.

7 Register the Endpoint Endpoints

To register the service endpoint (or endpoints), you will need:

  • A Personal Access Token
  • The application_UUID
  • The environment_UUID
  • The Service Path, Name, and ContractType
  • Service Version and Security Scheme
  • Service Contract with Type and Value

Follow the steps for registering services (endpoints) through the Catalog Registration API.

If you want to register more than one service for the same application and environment at once, add another object to the Endpoints list in the request body.