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 442ef95 commit 48f0f6dCopy full SHA for 48f0f6d
src/api/resources/accounts/client/Client.ts
@@ -193,10 +193,10 @@ export class Accounts {
193
request: Pipedream.CreateAccountOpts,
194
requestOptions?: Accounts.RequestOptions,
195
): Promise<core.WithRawResponse<Pipedream.Account>> {
196
- const { app, externalUserId, oauthAppId, ..._body } = request;
+ const { appId, externalUserId, oauthAppId, ..._body } = request;
197
const _queryParams: Record<string, string | string[] | object | object[] | null> = {};
198
- if (app != null) {
199
- _queryParams["app"] = app;
+ if (appId != null) {
+ _queryParams["app_id"] = appId;
200
}
201
202
if (externalUserId != null) {
0 commit comments