List Live participants

GET /v1/lives/{liveId}/participants

List Live participants

Path parameters

  • liveId string Required

    The id of the Live

Query parameters

  • page integer | null

    The page number in a paginated set of results

  • limit integer | null

    The limit of results to be returned per page

  • firstname[eq] string

    Search participants with a specific firstname

  • firstname[contains] string

    Search participants that contains this in the firstname

  • lastname[eq] string

    Search participants with a specific lastname

  • lastname[contains] string

    Search participants that contains this in the lastname

  • email[eq] string

    Search participants with a specific email

  • email[contains] string

    Search participants that contains this in the email

  • type[eq] string

    Search participants with a specific type

    Values are Participant, Speaker, or Host.

  • type[in] array[string]

    Search participants with one of theses types

    Values are Participant, Speaker, or Host.

  • status[eq] string

    Search participants with a specific status

    Values are Accepted, Invited, or Declined.

  • status[in] array[string]

    Search participants with one of theses status

    Values are Accepted, Invited, or Declined.

  • hasReplayed[eq] string

    Search for participants who replayed the Live

  • hasParticipated[eq] string

    Search for participants who participated to the Live

Responses

  • 200 application/json

    Live participants returned successfully

    Hide response attributes Show response attributes object
    • items array[object] Required

      The items found

      Hide items attributes Show items attributes object
      • id string Required

        The id of the participant.

      • liveId string Required

        The Live id of the participant.

      • spotMemberId string Required

        The ID of the Spot member associated to the participant

      • spotMemberEmail string Required

        The email of the Spot member associated to the participant

      • spotMemberFirstname object | null Required

        The Spot member firstname associated to the participant. Can be null for a participant invited by email.

      • spotMemberLastname object | null Required

        The Spot member lastname associated to the participant. Can be null for a participant invited by email.

      • status string Required

        The status of the participant.

        Values are Accepted, Invited, or Declined.

      • type string Required

        The type of the participant.

        Values are Participant, Speaker, or Host.

      • invitedAt string(date-time) | null Required

        The invitation date of the participant.

      • registeredAt string(date-time) | null Required

        The registration date of the participant.

      • isHighlighted boolean Required

        The highlight value of the participant.

      • metrics object Required

        The metrics of the participant.

        Hide metrics attributes Show metrics attributes object
        • viewTime integer | null Required

          The view time on the participant.

        • hasReplayed boolean | null Required

          Indicates if the participant has seen the Live replay

        • hasParticipated boolean | null Required

          Indicates if the participant has participated to the Live.

    • total integer Required

      The total number of items found

  • 400

    Malformed payload

GET /v1/lives/{liveId}/participants
curl \
 --request GET 'https://openapi.meltingspot.io/v1/lives/{liveId}/participants'
Response examples (200)
{
  "items": [
    {
      "id": "string",
      "liveId": "string",
      "spotMemberId": "string",
      "spotMemberEmail": "string",
      "spotMemberFirstname": {},
      "spotMemberLastname": {},
      "status": "Accepted",
      "type": "Participant",
      "invitedAt": "2025-05-04T09:42:00Z",
      "registeredAt": "2025-05-04T09:42:00Z",
      "isHighlighted": true,
      "metrics": {
        "viewTime": 42,
        "hasReplayed": true,
        "hasParticipated": true
      }
    }
  ],
  "total": 42
}