> For the complete documentation index, see [llms.txt](https://pqko.gitbook.io/pqko-discord/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://pqko.gitbook.io/pqko-discord/oauth2/get-user-connections.md).

# Get User Connections

This requires the Access Token

This requires the "connections" scope.

```javascript
OAuth2.getUserConnections(access_token).then((x) => {
    console.log(x)
}).catch((x) => {
    console.log(x)
})
```

This is the response you should receive

```json
{
    "id": "...",
    "name": "...",
    "type": "...",
    "revoked": false,
    "integrations": ["..."],
    "verified": false,
    "friend_sync": false,
    "show_activity": false,
    "visibility": false
}
```
