Skip to main content

Find by Workspace

This endpoint provides access to your meeting stats filtered by workspace.

caution

This route needs to be authenticated, see Authentication here

Endpoint

GET https://nodeapi.superviz.com/meetingstats/{organizationUUid}

Route Parameters

NameTypeDescriptionRequired
organizationUuidStringID of your workspace

Query String Parameters (for filters)

NameTypeDescriptionRequired
meetingIdStringID of meeting
initialDateDate/StringDate for initial data
endDateDate/StringDate for ends data

For more precise filter, you need to pass a timestampsZ in initialDate and endDate

eg
initialDate = "2022-08-03T08:00:00.000Z"
endDate = "2022-08-03T22:00:00.000Z"

the final url looks like this:
https://nodeapi.superviz.com/meetingstats/{organizationUUid}?initialDate="2022-08-03T08:00:00.000Z"&endDate="2022-08-03T22:00:00.000Z"

Returns

NameTypeDescription
uuidStringUuid of record
idNumberId of record
meetingIdStringId of meeting
organizationIdStringWorkspace Uuid
userIdStringUser uuid
priceNumberAmount that will be charged for each meeting
meetingMinutesNumberMeeting Duration
recordingMinutesNumberRecording duration
startedAtDateDate of meeting started
endedAtDateDate of meeting ended
createdAtDateDate of record is created
participantsArrayList of participants in meeting

Responses

200 OK

[
{
"uuid": "e71b7c9f-00d3-435c-ae8f-b70e975fc7b7",
"id": 107,
"meetingId": "go7e6m",
"organizationId": "e3d17563-1a4e-4471-bd72-a0a7e8d719bc",
"userId": "0e1170d5-145d-4607-ab2f-cbd63f0f985e",
"meetingMinutes": 5,
"recordingMinutes": 0,
"price": 5,
"startedAt": "2022-05-12T21:51:24.915Z",
"endedAt": "2022-05-12T22:01:25.470Z",
"createdAt": "2022-05-12T22:01:28.796Z",
"participants": [
{
"uuid": "cd798927-b3c3-46c3-986f-5525e29a9ea9",
"id": 101,
"userId": "0e1171d5-165d-4607-ab2f-cbd63f0f985e",
"permission": "member",
"name": "user name",
"createdAt": "2022-05-12T22:01:28.817Z",
"updatedAt": "2022-05-12T22:01:28.817Z",
"deletedAt": null
}
]
}
]

401 Unauthorized

{
"statusCode": 401,
"message": "Unauthorized"
}

500 Internal Server Error (User is not developer)

{
"statusCode": 500,
"message": "User 0e1170d5-165d-4607-ab2f-cbd63f1f985e has no permission to getStats User 0e1170d5-165d-4607-bb2f-cbd63f0f985e",
"error": "Internal Server Error"
}