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
. -
The custom role ID of Spot member
-
The status of spot member to include in the result
Values are
Accepted
,Deactivated
,DeclinedInvitation
,Invited
,Left
,Pending
, orRejected
. -
Spot members where invitation date is before a specific date (Unix timestamp format)
-
Spot members where invitation date is after a specific date (Unix timestamp format)
-
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)
-
Spot members where updated date is before a specific date (Unix timestamp format)
-
Spot members where updated date is after a specific date (Unix timestamp format)
curl \
--request GET 'https://openapi.meltingspot.io/v1/spotMembers'
{
"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
}