-
Notifications
You must be signed in to change notification settings - Fork 376
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
6 changed files
with
15,834 additions
and
0 deletions.
There are no files selected for viewing
28 changes: 28 additions & 0 deletions
28
generator/konfig-docs/src/pages/sdk/belvo/typescript/_first-request.mdx
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
```typescript index.ts | ||
// List all links | ||
const listAllResponse = belvo.links.listAll({ | ||
page: 1 | ||
pageSize: 100 | ||
omit: "field1,field2" | ||
fields: "field1,field2,field3" | ||
id: "24ccab1d-3a86-4136-a6eb-e04bf52b356f" | ||
idIn: "24ccab1d-3a86-4136-a6eb-e04bf52b356f,beb2b197-3cf7-428d-bef3-f415c0d57509" | ||
institution: "erebor_mx_retail" | ||
institutionIn: "erebor_mx_retail,gringotts_mx_retail" | ||
accessMode: "single" | ||
createdAt: "2022-05-05" | ||
createdAtGt: "2022-05-05" | ||
createdAtGte: "2022-05-04" | ||
createdAtLt: "2022-04-01" | ||
createdAtLte: "2022-03-30" | ||
createdAtRange: "2022-03-03,2022-05-04" | ||
createdByNotIn: "578947e2-3c9a-4401-bbad-59b2f2d2b91b,d3d941ab-4ca5-43c1-8b23-db329ee4cb7e" | ||
externalId: "InternalUser4000" | ||
externalIdIn: "InternalUser4000,InternalUser4001" | ||
institutionUserId: "ezFoxjPDr7YnASnOaft5F3zt7D0kurgDNlLtZFjxUo0=" | ||
institutionUserIdIn: "ezFoxjPDr7YnASnOaft5F3zt7D0kurgDNlLtZFjxUo0=,YwuTM0uEEh1BbVgDZBcNpa_-Tm3l2q8ZkZNrlhp-pNA=" | ||
refreshRate: "24h" | ||
status: "invalid" | ||
statusIn: "invalid,unconfirmed" | ||
}) | ||
``` |
19 changes: 19 additions & 0 deletions
19
generator/konfig-docs/src/pages/sdk/belvo/typescript/_getting-started.mdx
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
```typescript index.ts | ||
import { Belvo } from 'belvo-typescript-sdk'; | ||
|
||
const belvo = new Belvo({ | ||
/* | ||
* Belvo employs **basic authentication** using your secret keys. Just use your secretId as the `username` and secretPassword as the `password`. For example: | ||
* | ||
* ```text Authentication example | ||
* curl \ | ||
* -u =BASE64-SECRET_ID=:=BASE64-SECRET_PASSWORD= | ||
* https://sandbox.belvo.com/api/ | ||
* ``` | ||
* | ||
* For information on how to get your API keys, check out our [Get Started in 5 Minutes](https://developers.belvo.com/docs/get-started-in-5-minutes) DevPortal article. | ||
*/ | ||
username: "USERNAME", | ||
password: "PASSWORD" | ||
}) | ||
``` |
Oops, something went wrong.