Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

FetchAccountBalanceAsync does not accept settings #20

Open
AdrienEtienne opened this issue Mar 25, 2020 · 3 comments
Open

FetchAccountBalanceAsync does not accept settings #20

AdrienEtienne opened this issue Mar 25, 2020 · 3 comments

Comments

@AdrienEtienne
Copy link

Hi there,

When I try to call the FetchAccountBalanceAsync function with an account id, I got this error:

Acklann.Plaid.Exceptions.PlaidException: the following fields are not recognized by this endpoint: Options.

There is my call:

var response = await this._client.FetchAccountBalanceAsync(new GetBalanceRequest
            {
                Secret = this._environmentConfig.Secret,
                ClientId = this._config.ClientId,
                AccessToken = accessToken,
                // TODO: Options should be used here
                Options = new GetBalanceRequest.Settings
                {
                    AccountIds = new string[] {accountId}
                }
            });

It looks like the options dont go through. But if I comment the settings object its working find.

@danports
Copy link

➕ Same issue here.

@pdubb29
Copy link

pdubb29 commented Nov 20, 2020

Same issue here. I plan to work on a pull request soon

@pdubb29
Copy link

pdubb29 commented Nov 20, 2020

Viewing the postman collection here: Plaid Postman Sandbox Collection
There is no request body on top of the required request base.
Just needs a simple update.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging a pull request may close this issue.

3 participants