This README is for the 1.0.0
version of the DealMaker API
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]
-
Create an Investor
Version | Release Date |
---|---|
1.0.0 |
TBD |
The current version supports the following languages:
- Javascript
- Ruby
Please review the next sections for each supported languages and available samples.
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:
- Clone the repository
- Ensure Docker is installed and running
- 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
- Your generated client will be generated into
v1/clients/$CLIENT_LANGUAGE
.