Realm-Members
Search Realm Member
Realm-Members
Search Realm Member
GET
/
api
/
v1
/
realms
/
{realmId}
/
members
/
search
curl --request GET \
--url https://api.drip.re/api/v1/realms/{realmId}/members/search \
--header 'Authorization: Bearer <token>'
{
"data": [
{
"id": "<string>",
"realmMemberId": "<string>",
"dynamicId": "<string>",
"username": "<string>",
"displayName": "<string>",
"imageUrl": "<string>",
"email": "<string>",
"about": "<string>",
"alias": "<string>",
"metadata": {},
"firstVisit": "2023-11-07T05:31:56Z",
"lastVisit": "2023-11-07T05:31:56Z",
"joinedAt": "2023-11-07T05:31:56Z",
"referralId": "<string>",
"credentials": [
{
"format": "<string>",
"publicIdentifier": "<string>",
"oauthProvider": "<string>",
"oauthAccountId": "<string>"
}
],
"balances": [
{
"balance": 123,
"currencyId": "<string>",
"currencyName": "<string>",
"currencyEmoji": "<string>"
}
],
"teamMembership": {
"id": "<string>",
"role": "<string>",
"scopes": [
"<string>"
]
}
}
]
}
Authorizations
API Key
Query Parameters
Available options:
drip-id
, twitter-id
, discord-id
, wallet
, email
, username
Comma-separated list of values to search for
Response
200
application/json
Default Response
curl --request GET \
--url https://api.drip.re/api/v1/realms/{realmId}/members/search \
--header 'Authorization: Bearer <token>'
{
"data": [
{
"id": "<string>",
"realmMemberId": "<string>",
"dynamicId": "<string>",
"username": "<string>",
"displayName": "<string>",
"imageUrl": "<string>",
"email": "<string>",
"about": "<string>",
"alias": "<string>",
"metadata": {},
"firstVisit": "2023-11-07T05:31:56Z",
"lastVisit": "2023-11-07T05:31:56Z",
"joinedAt": "2023-11-07T05:31:56Z",
"referralId": "<string>",
"credentials": [
{
"format": "<string>",
"publicIdentifier": "<string>",
"oauthProvider": "<string>",
"oauthAccountId": "<string>"
}
],
"balances": [
{
"balance": 123,
"currencyId": "<string>",
"currencyName": "<string>",
"currencyEmoji": "<string>"
}
],
"teamMembership": {
"id": "<string>",
"role": "<string>",
"scopes": [
"<string>"
]
}
}
]
}