/
Get Access Token

Get Access Token

Step1. Extract tenant details: username, password and tenant name from DB.

Step2. Prepare the Access Token URL using tenant name, username, password, grant_type and clientId as Query params where grant_type and clientId will be static for all tenant accounts.

Sample URL:

https://{tenant_name}.unicommerce.com/oauth/token?grant_type=password&client_id=my-trusted-client &username={{username}}&password={{password}}

For testing purpose use below values for Query params:

Keys

Values

Keys

Values

tenant_name

eshopbox

username

ajay@eshopbox.com

password

eshop@123

grant_type

password

clientId

my-trusted-client

Step3. Using the above prepared URL make a HTTP GET Request to fetch Access Token.

Step4. Response from Unicommerce

{ "access_token": "465c6055-6670-485b-b9ee-aa2a319d2897", "token_type": "bearer", "refresh_token": "d9cc08cf-3436-4982-b2ff-97aeb4ae3216", "expires_in": 36402, "scope": "read trust write" }

Related content