Skip to main content

Add a new API client

Adding an API client requires manual steps in order to setup the tooling, generation scripts and properly generate the code. We recommend getting inspirations from existing clients such as javascript-recommend.

info

Make sure to first setup the repository tooling to ease your journey!

1. Writing specs

We recommend to have a look at existing spec files. The bundled folder is automatically generated, manual changes shouldn't be done in these files.

common spec folder

This folder hosts properties that are common to Algolia or used in multiple clients.

<clientName> spec folder

Example with the search client spec

spec.yml file

This file is the entry point of the client spec, it contains servers, paths and other specific information of the API. We recommend to copy an existing spec.yml file to get started.

<clientName>/common folder

Properties that are common to the client, for properties common to all clients, check the common folder.

<clientName>/paths folder

Path definition of the paths defined in the spec file.

Send additional options to the template

You might want to send additional information to the generators that have no link with your REST API. To do so, you can add parameters starting with x- at the root level of your spec, which will be available in the mustache template under the vendorExtensions object.

Example in the search.yml spec and how it is used in a mustache file.

Guidelines

  • Endpoints: Each file in the paths folder should contain operationIds for a single endpoint, but multiple methods are allowed.
  • Name: If the path file only contain one method, we name the file same as the operationId, but we try to make it less specific if there is multiple methods.
  • Description/Summary: operationIds must have both description and summary.
  • Complex objects: Complex objects (nested arrays, nested objects, , oneOf, allOf, etc.) must be referenced ($ref) in the operationId file and not inlined. This is required to provide a accurate naming and improve readability.

2. Configuring the environment

The generator follows its own configuration file named config/openapitools.json

Generation config

config/openapitools.json and config/clients.config.json hosts the configuration of all of the generated clients with their available languages and extra information.

generators

Generators are referenced by key with the following pattern <languageName>-<clientName>. You can copy an existing object of a client and replace the <clientName> value with the one you'd like to generate.

Below are the options you need to make sure to define for your client, other options are automatically added by our generator.

OptionFileLanguageDescription
outputopenapitools.jsonAllThe output path of the client.
packageVersionopenapitools.jsonJavaScriptThe version you'd like to publish the first iteration of the generated client. It will be automatically incremented.
utilsPackageVersionclients.config.jsonJavaScriptThe version of the utils package. Every utils package should have synchronized version.
packageVersionclients.config.jsonAll (except JavaScript)The version you'd like to publish the first iteration of the generated client. It will be automatically incremented.
gitRepoIdclients.config.jsonAllThe name of the repository.
folderclients.config.jsonAllThe path to the folder that will host the generated code.
modelFolderclients.config.jsonAllThe path to the model folder that will host the generated code.
apiFolderclients.config.jsonAllThe path to the api folder that will host the generated code.
customGeneratorclients.config.jsonAllThe name of the generator used to generate code.

3. Generate new client

You can find all the commands in the CLI > clients commands page and CLI > specs commands page.

4. Implementing the Common Test Suite

Clients needs to be tested, you can read more in the Common Test Suite guide.