Skip to main content
GET
/
api
/
v1
/
contact-auth
/
me
/
hubs
Get Me Hubs
curl --request GET \
  --url https://api.member.dev/api/v1/contact-auth/me/hubs \
  --header 'Authorization: Bearer <token>'
{
  "data": [
    {
      "attributes": {
        "branding": {},
        "is_private": true,
        "slug": "<string>",
        "team_id": "<string>",
        "title": "<string>"
      },
      "id": "<string>",
      "type": "hubs"
    }
  ]
}

Authorizations

Authorization
string
header
required

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

Query Parameters

team_id
string | null

Optional team_id filter

Response

Successful Response

JSON:API collection envelope for GET /me/hubs.

data
HubMeResource · object[]
required