Query parameters
-
The page number in a paginated set of results
-
The limit of results to be returned per page
-
Filters on emails of Spot member to include in the result
-
Filters on firstnames of Spot member to include in the result
-
Filters on lastname of Spot member to include in the result
-
Filters on role of Spot member to include in the result
-
Filters on registration date of Spot member
GET
/v1/channels/{channelId}/spotMembers
curl \
--request GET 'https://openapi.meltingspot.io/v1/channels/{channelId}/spotMembers'
Response examples (200)
{
"items": [
{
"id": "string",
"spotId": "string",
"userId": "string",
"email": "string",
"title": "string",
"lang": "en",
"role": "Member",
"customRoleId": "string",
"status": "Accepted",
"firstname": "string",
"lastname": "string",
"warnings": 42.0,
"embedBaseUrls": {
"default": "string",
"additionalProperty1": "string",
"additionalProperty2": "string"
},
"updatedAt": 42,
"lastActivityAt": 42
}
],
"total": 42
}