Skip to content

Feat: Added Support for Connected Accounts#1201

Merged
tanya732 merged 1 commit into
v4from
sdk-6738-add-connected-accounts-support
Oct 6, 2025
Merged

Feat: Added Support for Connected Accounts#1201
tanya732 merged 1 commit into
v4from
sdk-6738-add-connected-accounts-support

Conversation

@tanya732
Copy link
Copy Markdown
Contributor

@tanya732 tanya732 commented Oct 6, 2025

Changes

Added Support for below Endpoint:

Path Method Type Method Name
/users/{id}/connected-accounts GET getConnectedAccounts

References

Please include relevant links supporting this change such as a:

  • support ticket
  • community post
  • StackOverflow post
  • support forum thread

Manual Testing Snippets

  1. Install node autho using npm install auth0
  2. Initialize your client class with a client ID, client secret and a domain from auth0 dashboard
// Get Connected Accounts

async function connectedAccounts() {
  const client = new ManagementClient({
    domain: "<DOMIAN>",
    clientId: "<CLIENT_ID>",
    clientSecret: "<CLIENT_SECRET>"
  });

  const getConnectedAccounts = await client.users.getConnectedAccounts({ id: "<USER_ID>", take: 2 });
  console.log("getConnectedAccounts", getConnectedAccounts);
}

Testing

Please describe how this can be tested by reviewers. Be specific about anything not tested and reasons why. If this library has unit and/or integration testing, tests should be added for new functionality and existing tests should complete without errors.

  • This change adds unit test coverage
  • This change adds integration test coverage

Checklist

@tanya732 tanya732 requested a review from a team as a code owner October 6, 2025 11:25
@tanya732 tanya732 merged commit 0f9bc3e into v4 Oct 6, 2025
1 check passed
@tanya732 tanya732 deleted the sdk-6738-add-connected-accounts-support branch October 6, 2025 14:05
@tanya732 tanya732 mentioned this pull request Oct 8, 2025
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

2 participants