MyAccount API
TypeScript
import { MyAccountClient } from "github.com/auth0/myaccount-js"; async function main() { const client = new MyAccountClient({ token: "<token>", }); await client.connectedAccounts.connections.list({ from: "from", take: 1, }); } main();
{ "connections": [ { "name": "<string>", "strategy": "<string>", "scopes": [ "<string>" ] } ], "next": "<string>" }
Bearer and DPoP tokens are supported depending on the API configuration
Cursor for pagination - start retrieving results from this point
Number of results to return (1-20)
x >= 1
Successfully retrieved available connections
20
Show child attributes
The token to retrieve the next page of connections (if there is one)
Was this page helpful?