We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e9c63c6 commit ce543b3Copy full SHA for ce543b3
1 file changed
walkthrough.md
@@ -21,8 +21,8 @@ async function main() {
21
});
22
const client = new PassbaseClient(config);
23
24
- const settings = await client.getProjectSettings();
25
- console.log(JSON.stringify(settings, null, 4));
+ const identity = await client.getIdentityById("<uuid>");
+ console.log(JSON.stringify(identity, null, 4));
26
}
27
28
main().catch(err => {
0 commit comments