Refresh Token
Operations related to refresh token.
Refresh token by organization user
Authorizations
AuthorizationstringRequired
Bearer authentication header of the form Bearer <token>.
Body
refreshTokenstringRequiredExample:
Refresh token
eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9Responses
201
Created
application/json
400
Bad Request
application/json
401
Unauthorized
application/json
post
/auth/refresh-tokenPOST /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?

