Refresh Token Endpoint
Refresh an Access Token
Request Headers
Sample Request
Response
Success Response
User Validation Endpoint
The Refresh Token Endpoint
allows clients to obtain a new OAuth2 access token by submitting a valid refresh token along with the corresponding client ID.
URL:
https://api.accounda.com/v1/token/refresh/
Method:
POST
Content-Type:
application/x-www-form-urlencoded
Authorization
string
Bearer token for accessing the endpoint. Format: Bearer your_refresh_token.
Client-ID
string
The client identifier issued during client registration.
https
POST /v1/token/refresh/ HTTP/1.1 Host: api.accounda.com Authorization: Bearer your_refresh_token Client-ID: your_client_id Content-Type: application/json
Content-Type:
application/json
On success, the API returns a JSON object containing the new access token, refresh token, token type, and expiration time.
Error Response
Status Code:
200 OK
json
{ "access_token": "new_access_token", "refresh_token": "new_refresh_token", "token_type": "Bearer", "expires_in": 3600 }
If the request fails due to missing or invalid request headers, the API returns an error message.
Security
Status Code:
400 Bad Request
Missing or Invalid Refresh Token
json
{ "error": "Invalid Authorization header format." }
Invalid Client-ID or Refresh Token
json
{ "error": "Invalid Client-ID or refresh token." }
Expired Refresh Token
json
{ "error": "Refresh token has expired." }
This endpoint requires client ID (client_id) and a refresh token. All API requests should be made over HTTPS to ensure data security.
Notes
- The access token is valid for a limited time (3600 seconds by default) and should be refreshed before it expires.
- The refresh token is valid for a maximum of 7 days and will expire after usage.
Request an Access Token
Um auf geschützte Bereiche der API zuzugreifen, benötigst du einen Access Token.
Access Token Endpoint
Validate User Authentication
Verifiziere die Authentifizierung eines Nutzers, um eine korrekte Anmeldung sicherzustellen.
User Validation Endpoint
Retrieve User Information
Greife auf die Benutzerinformationen zu, um Details zu einem autorisierten Nutzer abzurufen.
User Information Endpoint