Sqabl APIs
  1. Arena
Sqabl APIs
  • APIs
    • Auth
      • Sign Up
      • Sign In
      • Sign Out
      • Refresh Access Token
      • Get user by token
      • Change password
    • OTP
      • Verify OTP
      • Generate OTP
      • OTP Status
    • User
      • Get user
      • Get user by token
      • Update user
      • Get user's followers
      • Get user's followees
      • Get user's referred members
      • Get user's interacted items
      • Get user's bookmarks
      • Flag a user
      • Follow user
      • Unfollow user
      • Block a user
      • Unblock a user
      • Delete user's picture
      • Delete user
    • Users
      • Get users
    • Arenas
      • Get arenas
      • Create an arena
      • Invite users to arenas
    • Arena
      • Get arena
        GET
      • Update arena
        PUT
      • Join an arena
        POST
      • Leave an arena
        POST
      • Get arena members
        GET
      • Add users to arena
        POST
      • Remove members from an arena
        DELETE
      • Update an arena member
        PUT
    • Posts
      • Get posts
      • Create a post
    • Post
      • Get a post
      • Update a post
      • Delete a post
      • Flag a post
      • Flame a post
      • Unflame a post
      • Save a post
      • Unsave a post
      • Hide a post
      • Get post participants
      • Participate in a post
      • Get post comments
      • Comment on a post
    • Comment
      • Get comment
      • Delete a comment
      • Flag a comment
      • Flame a comment
      • Unflame a comment
      • Save a comment
      • Unsave a comment
    • Alerts
      • Get user's alerts
      • Mark some or all alerts read
    • Flags
      • get flags
    • Faqs
      • get faqs
    • Interests
      • get interests
    • Search
      • get popular search keywords
    • Signed Upload URL
      • get signed url for upload
  1. Arena

Get arena members

Prod Env
https://api.sqabl.com/v1
Prod Env
https://api.sqabl.com/v1
GET
/arena/{id}/members

Request

Path Params
id
string 
required
Query Params
as
enum<string> 
optional
Allowed values:
fansmoderatorsall
pageSize
integer 
optional
For pagination; specifies the maximum number of items to fetch.
lastEvaluatedKey
string 
optional
Check the APIs doc on how to use this.
keyword
string 
optional
Search query.

Request samples

Shell
JavaScript
Java
Swift
Go
PHP
Python
HTTP
C
C#
Objective-C
Ruby
OCaml
Dart
R
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request GET 'https://api.sqabl.com/v1/arena//members?as&pageSize&lastEvaluatedKey&keyword'

Responses

🟢200Success
application/json
Body
object {0}
Example
{
    "success": true,
    "statusCode": 200,
    "data": [
        {
            "id": "cm1n5ubk200008ov3f8907ugy",
            "displayName": "Hiseous Hiseous",
            "imageSrc": "https://image.url/",
            "dateJoined": "2024-09-29 11:51:58"
        },
        {
            "id": "cm1n5ubk200008ov3f8907ugy",
            "displayName": "Hiseous Hiseous",
            "imageSrc": "https://image.url/",
            "dateJoined": "2024-09-29 11:51:58",
            "isModerator": true
        },
        {
            "id": "cm1n5ubk200008ov3f8907ugy",
            "displayName": "Hiseous Hiseous",
            "imageSrc": "https://image.url/",
            "dateJoined": "2024-09-29 11:51:58"
        }
    ]
}
Previous
Leave an arena
Next
Add users to arena
Built with