Refresh Token

Operations related to refresh token.

Refresh token

post
/auth/refresh-token

Refresh token by organization user

Authorizations
AuthorizationstringRequired
Bearer authentication header of the form Bearer <token>.
Body
refreshTokenstringRequired

Refresh token

Example: eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9
Responses
post
/auth/refresh-token
POST /api/v1/auth/refresh-token HTTP/1.1
Host: abp-api.akinon.net
Authorization: Bearer YOUR_SECRET_TOKEN
Content-Type: application/json
Accept: */*
Content-Length: 55

{
  "refreshToken": "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9"
}
{
  "accessToken": "text",
  "refreshToken": "text"
}

Last updated

Was this helpful?