Skip to main content
POST
/
api
/
auth
/
refresh
Rotate access and refresh tokens
curl --request POST \
  --url https://app.narrativebanking.com/api/auth/refresh \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "refreshToken": "<refresh-jwt>"
}
'
{
  "accessToken": "<string>",
  "refreshToken": "<string>"
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Body

application/json
refreshToken
string
required

Response

Tokens rotated

accessToken
string
required
refreshToken
string
required