Quickstart
This tutorial will guide you through the initial setup required to make your first API call to fulfillmenttools.
Setup Access
If you haven't already done so, request your free trial at https://fulfillmenttools.com/en/request-free-trial/ to get started immediately!
You will receive the following details:
URL of your fulfillmenttools instance (a "tenant"). We refer to this value by using
https://{YOUR_TENANT_NAME}.api.fulfillmenttools.com
it throughout the documentation. Use this URL for requests to the REST API.URL to the fulfillmenttools Backoffice to use in your browser.
Credentials for the project's initial admin user comprising username and password.
A security-related API key (used for Authorization). Will be referred to as
AUTHKEY
in this documentation.
Request an auth token
Once your tenant is ready, you can request an auth token by sending the following request with your user credentials:
If all credentials are successful, the endpoint will respond with a body similar to the following
The idToken
is your auth token for any future requests to the platform. Make sure to always include it as a header in each of your requests:
Add a facility
Make sure to include the Content-Type: application/json
header to all of your requests
You are now ready to make your first API Call. In this example, we will add a simple facility to your tenant:
If successful, the endpoint will respond with 201 CREATED
The facility will now be visible in the backoffice, and you can use the facility ID to make all further requests.
Next steps
You are now equipped with the basic knowledge to make your first steps on our platform. If you're looking for a guided walkthrough to get to know fulfillmenttools better, we recommend checking out the Integration Tutorial.
Additionally, the following resources will be helpful to learn more about our platform and available features:
If you have any questions, please feel free to get in touch with us at professionalservice@fulfillmenttools.com!
Last updated