Skip to content

DealMakerTech/api

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 

Repository files navigation

DealMaker API

DealMaker Logo

About

This README is for the 1.0.0 version of the DealMaker API

Support

If you want to see how API will render your requests, you can try it out online at https://docs.dealmaker.tech/

For more support, contact [email]

List of Features

Releases

Version Release Date
1.0.0 TBD

Supported Languages

The current version supports the following languages:

  • Javascript
  • Ruby

Please review the next sections for each supported languages and available samples.

Clients

Samples

Generating a Custom Client

Custom clients can be generated using OpenAPI/Swagger codegen. We currently provide a swagger.json configuration file which can be used to generate your client. The client structure will be similar to our current clients as they are also built using OpenAPI.

This example uses the Docker version of OpenAPI Generator. More information and a list of supported languages can be found on their GitHub repository.

To generate a custom client with OpenAPI Generator, follow these steps:

  1. Clone the repository
  2. Ensure Docker is installed and running
  3. From the repository folder, run the following command (replace $CLIENT_LANGUAGE with the id of your desired language):
docker run --rm -v "${PWD}:/local" openapitools/openapi-generator-cli generate \
  -i /local/v1/swagger.json \
  -g $CLIENT_LANGUAGE \
  -o /local/v1/clients/$CLIENT_LANGUAGE
  1. Your generated client will be generated into v1/clients/$CLIENT_LANGUAGE.

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published