Home
Home
  1. Authentication
  • BizeeBuy API Introduction
  • V1
    • Authentication
      • Generate Access Token
        POST
      • Refresh Access Token
        POST
    • Masters
      • Get Warehouse List
      • Finished Goods List
      • Material List
    • Purchase
    • GRN
    • Inventory
      • FG Stock Status
      • Material Stock Status
    • Production
      • Batch List
      • Material Consumption
    • Sales
      • Sales Order Dispatch
      • Sales Order Status
      • Turnover & Gross Margin Report
      • FG Demand Status Report
      • Get Sales
      • Get Sales Invoices
    • TrueGradient
      • Item Master - FG
      • Sales Order Status
      • FG Inventory-Batchwise
      • Open Purchase Orders
      • Item Master - Materials
      • FG BoM
  1. Authentication

Refresh Access Token

POST
https://api.bizeebuy.com/oauth2/token
This API helps to refresh the access token if the existing access is expired. Access this API as described to re-genreate the new access token based on the refresh token you received during the authentication.

Request

Body Params application/json
client_id
string 
required
client_secret
string 
required
grant_type
string 
required
refresh_token
refresh_token
string 
required
Example
{
    "client_id":"YOUR_CLIENT_ID",
    "client_secret":"YOUR_CLIENT_SECRET",
    "grant_type":"refresh_token",
    "refresh_token":"YOUR_REFRESH_TOKEN"
}

Responses

🟢200Success
application/json
Body
access_token
string 
required
expires_in
number 
required
token_type
string 
required
Bearer
scope
string 
required
Examples
{
    "access_token": "1ed467987894835c015456464636d83f5",
    "expires_in": 86400,
    "token_type": "Bearer",
    "scope": null
}
Previous
Generate Access Token
Next
Get Warehouse List
Built with