curl --request GET \
--url https://api-next.ofauth.com/v2/access/self/tagged-friend-users \
--header 'apiKey: <api-key>' \
--header 'x-connection-id: <api-key>'{
"list": [
{
"id": 123,
"type": "<string>",
"name": "<string>",
"user": {
"id": 123,
"name": "<string>",
"username": "<string>",
"isVerified": true,
"avatar": "<string>",
"isHidden": true
}
}
],
"hasMore": true
}List tagged friend users
Permission Required: profile:read
curl --request GET \
--url https://api-next.ofauth.com/v2/access/self/tagged-friend-users \
--header 'apiKey: <api-key>' \
--header 'x-connection-id: <api-key>'{
"list": [
{
"id": 123,
"type": "<string>",
"name": "<string>",
"user": {
"id": 123,
"name": "<string>",
"username": "<string>",
"isVerified": true,
"avatar": "<string>",
"isHidden": true
}
}
],
"hasMore": true
}Requires a connection via the x-connection-id header.
Number of items to return (1-20, default: 10)
1 <= x <= 20Number of items to skip (default: 0)
x >= 0Filter: all forms or only pending
all, pending Sort by date or name
date, name Sort direction
asc, desc Search/filter text
100Was this page helpful?