/
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 |
---|---|
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"
}
, multiple selections available,
Related content
Woocommerce Access token
Woocommerce Access token
More like this
unicommerce-token-issue
unicommerce-token-issue
More like this
Configure Auth
Configure Auth
More like this
Fynd Authorization
Fynd Authorization
Read with this
Refresh Token Cron for Fynd
Refresh Token Cron for Fynd
Read with this
Fetch orders using Order ID
Fetch orders using Order ID
More like this