Client SDKs
Last updated
Last updated
We provide an official client SDK for the fulfillmenttools platform (which is in beta status), and you can generate a client using third-party tools.
The official fulfillmenttools client SDK in TypeScript is now available on and and can be used wherever you run JavaScript.
The TypeScript SDK is open source and licensed under the MIT License. This means that you can use it in your projects and contribute to its development.
Currently, this client SDK does not provide access to all of our API's features, but we are continuously extending it and pushing out new versions. We hope you will find it easy to use and are looking forward to your feedback.
Another approach is to use , which can generate client SDKs from an OpenAPI specification for a wide range of programming languages.
Of course, you can also use other tools (e.g. ) or choose not to generate classes/types and manually model the pieces you need for your particular use case.
Here's an example of how to generate a TypeScript client:
Follow the on GitHub.
Download our fulfillmenttools OpenAPI specification .
Use the Swagger Codegen CLI tool to generate a TypeScript client:
This will put the generated classes into the client
folder. In this folder, the api.ts
file contains the generated namespaces, interfaces, etc. and is especially interesting for us.
Depending on your preferences, you can use all the generated client classes or only pick up the generated enum, interface, namespace, type
and implement the actual client yourself.