Skip to main content
POST
/
auth
/
refresh-token
Refresh access token
curl --request POST \
  --url https://staging.api.commercengine.io/api/v1/{store_id}/storefront/auth/refresh-token \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '{
  "refresh_token": "<string>"
}'
{
  "message": "<string>",
  "success": true,
  "content": {
    "access_token": "<string>",
    "refresh_token": "<string>"
  }
}

Authorizations

Authorization
string
header
required

Access token

Body

application/json
refresh_token
string
required

A string representing the refresh token.

Response

OK

message
string
required

A descriptive message confirming the success or failure of the operation.

success
boolean
required

Indicates whether the request was successful or failure (true for success, false for failure).

content
object
required

An object containing the response content.

I