GET
/
v5
/
app
/
members
curl --request GET \
  --url https://{defaultHost}/v5/app/members \
  --header 'Authorization: Bearer <token>'
{
  "pagination": {
    "current_page": 123,
    "total_pages": 123,
    "next_page": 123,
    "prev_page": 123,
    "total_count": 123
  },
  "data": [
    {
      "id": "<string>",
      "company_id": "<string>",
      "user_id": "<string>",
      "status": "drafted",
      "most_recent_action": "canceling",
      "joined_at": 123,
      "user": {
        "id": "<string>",
        "name": "<string>",
        "username": "<string>",
        "email": "<string>",
        "profile_pic_url": "<string>",
        "created_at": 123,
        "profile_pic_url_32": "<string>",
        "profile_pic_url_64": "<string>",
        "profile_pic_url_128": "<string>"
      }
    }
  ]
}

Authorizations

Authorization
string
header
required

App API key for /v5/app and /v5/company endpoints

Query Parameters

company_id
string

An ID of a company to filter by, which will look like biz_*************

user_id
string

An ID of a user to filter by, which will look like user_*************

status
enum<string>

A status to filter by.

Available options:
joined,
left
experience_id
string

An ID of an experience to filter by, which will look like exp_*************

A search to filter by. This will search the member's name and username.

page
integer
default:1

The page number to retrieve

per
integer
default:10

The number of resources to return per page. There is a limit of 50 results per page.

Response

200 - application/json
members retrieved
pagination
object
required
data
object[]
required