Refresh the Access Token

post

/ic/api/process/v1/auth/token/refresh

Gets a new access token using a refresh token. The caller may post to this resource to obtain a new access token which gives access to Decision Modeling Service for 15 minutes. The caller MUST put the refresh token string in the authorization header of the HTTP post request.

Request

Header Parameters
  • Authorization header MUST be set to type Bearer and an access token must be provided i.e. 'Bearer '
    Default Value: Bearer XXXXX.XXXXX.XXXXX
Back to Top

Response

Supported Media Types

200 Response

Successful Response
Body ()
Root Schema : AccessToken
Type: object
Show Source
Nested Schema : BaseToken
Type: object
Show Source
Example Response (application/json)
{
    "accessToken":{
        "jwtToken":"JSUzI1NiIsInR5cCI6IkpX9.eyJleHAiOjC01YzgwOW4iOiJqY29vcGVyIiwQ.Ay6FY2LRNslKXQHVw73JC5UyF7741cg",
        "expiry":900
    }
}

401 Response

Unauthorized
Back to Top