Get Access Token

This API facilitates the renewal of access tokens by accepting a valid refresh token and returning a new access token. This process is commonly used to maintain user sessions without requiring frequent reauthentication.

Base URL

https://api.globalbanking.fintractglobal.com/

This endpoint takes a refresh token in the form of a JSON web token and returns an access token if the refresh token is valid.

Endpoint

POST

/api/token/refresh/

Request

Request body schema
application/json
refresh:
string

a refresh type JSON web token

Response

201
Response body schema
application/json
refresh:
string

an access type JSON web token

Sample Request

Payload

application/json
{
  "refresh": "5f5328b05fhksngfthdhtdhgfcgfjfjghgfghdhdhg"
}

Sample Response

201

application/json
{
  "refresh": "gdhgvcjgftfgfgfkjhjkgyhgjhggjfdshyuiyyghdrd"
}

To test the API,click here to access our testing interface.