Getting started
What you need in order to start using our REST API.
To access the Outshifter API, combine the base URL + endpoint. For instance, in order to "retrieve an order" construct the URL to call as follows: BASE URL for environment + /users/me/orders/ → https://api.outshifter.com/users/me/orders/
Use the testing environments to familiarize yourself with the API and to try new things; use the live environments to start real transactions with Outshifter.
Use HTTPS for all your interactions with the Outshifter API.
The Outshifter API Key is used as authentication for all your Outshifter API requests. You need access to your Outshifter Account in order to generate the API Key.
If you haven't already set up an Outshifter Account you need to register for one in order to continue.
- Log in to your Outshifter Account, go to settings (available in the top right hand corner) and select Sales Channels.
- Click on the create button. This will automatically generate the API Key for your user.

- Copy the API Key.

- The Key can be used as an authentication method for all your Outshifter API requests.
In order to send requests to the Outshifter API, you need to be authenticated and supply a token for all requests. Every user in the Outshifter platform has an authorisation token or API Key.
Your API requests will not work unless you include the API token. Make sure you add the API token to the request in the headers as an authorisation key.
Outshifter API Key example: RPMEQ4W-BXA44VW-Q6TVA8X-K12RVGJ
headers: {
authorization: RPMEQ4W-BXA44VW-Q6TVA8X-K12RVGJ
}
Last modified 5mo ago