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

Authorizations

Authorization
string
header
required

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

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.