GET Api/BBB/GetBBBNeeds?internalMeetingId={internalMeetingId}

Request Information

URI Parameters

NameDescriptionTypeAdditional information
internalMeetingId

string

Required

Body Parameters

None.

Response Information

Resource Description

BigBlueButtonNeedsModel
NameDescriptionTypeAdditional information
Logo

string

None.

Welcome

string

None.

Presentation

string

None.

Title

string

None.

Success

boolean

None.

Message

string

None.

Response Formats

application/json, text/json

Sample:
{
  "Logo": "sample string 1",
  "Welcome": "sample string 2",
  "Presentation": "sample string 3",
  "Title": "sample string 4",
  "Success": true,
  "Message": "sample string 6"
}

application/xml, text/xml

Sample:
<BBBController.BigBlueButtonNeedsModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Api.NovinSchool.com.Controllers">
  <Message xmlns="http://schemas.datacontract.org/2004/07/Api.NovinSchool.com.Models.Response">sample string 6</Message>
  <Success xmlns="http://schemas.datacontract.org/2004/07/Api.NovinSchool.com.Models.Response">true</Success>
  <Logo>sample string 1</Logo>
  <Presentation>sample string 3</Presentation>
  <Title>sample string 4</Title>
  <Welcome>sample string 2</Welcome>
</BBBController.BigBlueButtonNeedsModel>