Query parameters
-
The page number in a paginated set of results
-
The limit of results to be returned per page
-
The emails of spot member to include in the result
-
The firstnames of spot member to include in the result
-
The lastnames of spot member to include in the result
-
The roles of spot member to include in the result
Values are
Member
orAdmin
. -
Spot members where registration date is before a specific date (Unix timestamp format)
-
Spot members where registration date is after a specific date (Unix timestamp format)
GET
/v1/forums/{forumId}/spotMembers
curl \
--request GET 'https://openapi.meltingspot.io/v1/forums/{forumId}/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
}
],
"total": 42
}