GET
/users/{principalId}Get a portal user
Get detailed information about a portal user, including their activity
Parameters
| Name | In | Type | Description |
|---|---|---|---|
principalIdrequired | path | string | Principal ID |
Response
Portal user details
| Field | Type | Description |
|---|---|---|
principalIdrequired | string | Principal ID |
userIdrequired | string | User ID |
namerequired | string | null | |
emailrequired | string | |
imagerequired | string | null | Profile image URL |
emailVerifiedrequired | boolean | Whether email is verified |
joinedAtrequired | string | When the user joined |
postCountrequired | number | Number of posts created |
commentCountrequired | number | Number of comments made |
voteCountrequired | number | Number of votes cast |
createdAtrequired | string | Account creation date |
engagedPostsrequired | object[] | Posts the user has engaged with |
Errors
401Unauthorized404Portal user not foundExample request
curl \
"https://feedback.quackback.io/api/v1/users/:principalId" \
-H "Authorization: Bearer qb_your_api_key_here"