curl --request GET \
--url https://api-next.ofauth.com/v2/access/users/lists/:listId/users \
--header 'apiKey: <api-key>' \
--header 'x-connection-id: <api-key>'{
"list": [
{
"id": 123,
"username": "<string>",
"name": "<string>",
"isVerified": true,
"avatar": "<string>",
"avatarThumbs": {
"c50": "<string>",
"c144": "<string>"
}
}
],
"hasMore": true,
"nextOffset": 123
}List users in user list
Permission Required: lists:read
curl --request GET \
--url https://api-next.ofauth.com/v2/access/users/lists/:listId/users \
--header 'apiKey: <api-key>' \
--header 'x-connection-id: <api-key>'{
"list": [
{
"id": 123,
"username": "<string>",
"name": "<string>",
"isVerified": true,
"avatar": "<string>",
"avatarThumbs": {
"c50": "<string>",
"c144": "<string>"
}
}
],
"hasMore": true,
"nextOffset": 123
}Requires a connection via the x-connection-id header.
Number of items to return (1-100, default: 10)
1 <= x <= 100Number of items to skip (default: 0)
x >= 0Was this page helpful?