All URIs are relative to https://api.flat.io/v2
Method | HTTP request | Description |
---|---|---|
getAuthenticatedUser | GET /me | Get current user profile |
UserDetails getAuthenticatedUser()
Get current user profile
Get details about the current authenticated User.
var FlatApi = require('flat-api');
var defaultClient = FlatApi.ApiClient.instance;
// Configure OAuth2 access token for authorization: OAuth2
var OAuth2 = defaultClient.authentications['OAuth2'];
OAuth2.accessToken = 'YOUR ACCESS TOKEN';
var apiInstance = new FlatApi.AccountApi();
var callback = function(error, data, response) {
if (error) {
console.error(error);
} else {
console.log('API called successfully. Returned data: ' + data);
}
};
apiInstance.getAuthenticatedUser(callback);
This endpoint does not need any parameter.
- Content-Type: application/json
- Accept: application/json