We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c76eedd commit 1cba9a3Copy full SHA for 1cba9a3
src/PeerBerry.API/PeerBerryClient.cs
@@ -88,7 +88,7 @@ public async Task InitializeUsingTokensAsync(string accessToken, string refreshT
88
public async Task<BalanceMainReponse?> GetBalanceMainAsync()
89
=> await SendRequest<BalanceMainReponse>(HttpMethod.Get, "v2/investor/balance/main", true);
90
public async Task<ProfileResponse?> GetProfileAsync()
91
- => await SendRequest<ProfileResponse>(HttpMethod.Get, $"v2/investor/profile", true);
+ => await SendRequest<ProfileResponse>(HttpMethod.Get, $"v2/investor/profile", false);
92
93
public async Task<LoansResponse?> GetLoansAsync(int offset = 0, int pageSize = 40, Dictionary<string, string?>? searchParams = null, string sort = "-loanId")
94
{
0 commit comments