Skip to main content
GET
/
api
/
v1
/
teams
/
{team_id}
/
segments
/
{segment_id}
/
members
List Members
curl --request GET \
  --url https://api.member.dev/api/v1/teams/{team_id}/segments/{segment_id}/members \
  --header 'Authorization: Bearer <token>'
{
  "data": [
    {
      "attributes": {
        "contact_id": "<string>",
        "team_id": "<string>"
      },
      "id": "<string>",
      "type": "team_contact_ref"
    }
  ],
  "links": {},
  "meta": {}
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

team_id
string
required
segment_id
string
required

Query Parameters

page[after]
string | null
page[size]
integer
default:50
Required range: 1 <= x <= 200

Response

Successful Response

JSON:API list response for team-contact-ref resources.

Returned by GET /{segment_id}/members. The meta and links shapes mirror the pattern used by other paginated list endpoints in this module.

data
TeamContactRefResource · object[]
required
meta
Meta · object
required