Skip to content

Commit

Permalink
yarn pages
Browse files Browse the repository at this point in the history
  • Loading branch information
dphuang2 committed Mar 28, 2024
1 parent 8cba7eb commit af5de4e
Show file tree
Hide file tree
Showing 6 changed files with 15,834 additions and 0 deletions.
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"
})
```
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"
})
```
Loading

0 comments on commit af5de4e

Please sign in to comment.