Skip to content

Commit

Permalink
docs: update docs to include redirectUri in getMultipleCredentialsGro…
Browse files Browse the repository at this point in the history
…upJoinUrl
  • Loading branch information
waddaboo committed Dec 11, 2024
1 parent 039bba5 commit 21488eb
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 3 deletions.
4 changes: 3 additions & 1 deletion apps/docs/docs/api-sdk.md
Original file line number Diff line number Diff line change
Expand Up @@ -494,10 +494,12 @@ import { DashboardUrl } from "@bandada/api-sdk"
const dashboardUrl = DashboardUrl.DEV
const groupId = "10402173435763029700781503965100"
const commitment = "1"
const redirectUri = "http://localhost:3003"

const url = apiSdk.getMultipleCredentialsGroupJoinUrl(
dashboardUrl,
groupId,
commitment
commitment,
redirectUri
)
```
4 changes: 3 additions & 1 deletion apps/docs/docs/tutorials/api-sdk/groups.md
Original file line number Diff line number Diff line change
Expand Up @@ -273,11 +273,13 @@ import { DashboardUrl } from "@bandada/api-sdk"
const dashboardUrl = DashboardUrl.DEV
const groupId = "your-group-id"
const commitment = "commitment-value"
const redirectUri = "http://localhost:3003"

const url = apiSdk.getMultipleCredentialsGroupJoinUrl(
dashboardUrl,
groupId,
commitment
commitment,
redirectUri
)
```

Expand Down
4 changes: 3 additions & 1 deletion libs/api-sdk/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -517,10 +517,12 @@ import { DashboardUrl } from "@bandada/api-sdk"
const dashboardUrl = DashboardUrl.DEV
const groupId = "10402173435763029700781503965100"
const commitment = "1"
const redirectUri = "http://localhost:3003"

const url = apiSdk.getMultipleCredentialsGroupJoinUrl(
dashboardUrl,
groupId,
commitment
commitment,
redirectUri
)
```

0 comments on commit 21488eb

Please sign in to comment.