Authentication
How to authenticate to our API.
Last updated
Was this helpful?
How to authenticate to our API.
Last updated
Was this helpful?
To start using the API you need 3 main things:
Email address for the vendor
The password vendor
JWT (JSON Web Token) Key
Using the email & password to generate the JWT Key, by calling the Authorization method. It will return a lot of JSON formatted data, for now we just need the JWT Key, which looks something like this:
You guessed it, the key that we need is in line #4 called "access_token". This key will be used in most of our API calls.
Once you got it all, look at this:
This method call above is to test the creation of a customer on your own store, just to validate that the authorization process is completed successfully.