POST api/v1/facility/event/new
Request Information
URI Parameters
None.
Body Parameters
NewFacilityEventBindingModel| Name | Description | Type | Additional information |
|---|---|---|---|
| Request | FacilityEvent |
None. |
|
| Authentication | AuthenticationModel |
None. |
Request Formats
application/json, text/json
Sample:
{
"Request": {
"AvailableSpots": 25,
"Description": "Sample event for an ISV/EDU",
"Price": 25.0,
"URL": "https://event.com/1234 - public URL for event",
"PartnerName": "ISV name",
"RemoteId": 1,
"EventDate": "2025-12-10T06:57:36.4685011Z",
"RemoteRoomId": 2
},
"Authentication": {
"Id": "170200123 - sample only, user your ID",
"Key": "467512342123 - sample only, user your Key"
}
}
application/xml, text/xml
Sample:
<NewFacilityEventBindingModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Api.Models">
<Authentication>
<Id>170200123 - sample only, user your ID</Id>
<Key>467512342123 - sample only, user your Key</Key>
</Authentication>
<Request>
<EventDate>2025-12-10T06:57:36.4685011Z</EventDate>
<RemoteId>1</RemoteId>
<RemoteRoomId>2</RemoteRoomId>
<AvailableSpots>25</AvailableSpots>
<Description>Sample event for an ISV/EDU</Description>
<PartnerName>ISV name</PartnerName>
<Price>25.0</Price>
<URL>https://event.com/1234 - public URL for event</URL>
</Request>
</NewFacilityEventBindingModel>
Response Information
Resource Description
CalendaringOutgoingModel| Name | Description | Type | Additional information |
|---|---|---|---|
| Message | MessageModel |
None. |
Response Formats
application/json, text/json
Sample:
{
"Message": {
"Code": "sample string 1",
"Description": "sample string 2"
}
}
application/xml, text/xml
Sample:
<CalendaringOutgoingModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Api.Models">
<Message>
<Code>sample string 1</Code>
<Description>sample string 2</Description>
</Message>
</CalendaringOutgoingModel>