GET
/
users
/
{userID}
/
socialAccounts
curl --request GET \
  --url https://backendapi.corbado.io/v2/users/{userID}/socialAccounts \
  --header 'Authorization: Basic <encoded-value>'
[
  {
    "socialAccountID": "<string>",
    "providerType": "<string>",
    "identifierValue": "<string>",
    "userID": "<string>",
    "foreignID": "<string>",
    "avatarURL": "<string>",
    "fullName": "<string>"
  }
]

Authorizations

Authorization
string
header
required

Basic authentication header of the form Basic <encoded-value>, where <encoded-value> is the base64-encoded string username:password.

Path Parameters

userID
string
required

ID of user

Query Parameters

sort
string

Field sorting

filter[]
string[]

Field filtering

page
integer
default:1

Page number

pageSize
integer
default:10

Number of items per page

Response

200
application/json

List of social accounts

The response is of type object[].