POST api/Kiosk/AddKioskHotspot

Add Kiosk Hotspot and Kiosk Hotspot Point coordinates Only accessible by Administrative Users

Request Information

URI Parameters

None.

Body Parameters

KioskHotspot
NameDescriptionTypeAdditional information
HotspotId

integer

None.

NodeId

integer

None.

Title

string

None.

LinkType

string

None.

LinkId

integer

None.

CenterX

integer

None.

CenterY

integer

None.

KioskHotspotPointList

Collection of KioskHotspotPoint

None.

Hoteling

boolean

None.

ResTypeId

integer

None.

ResTypeHotelingAllowRecurring

boolean

None.

ResourceTimeFence

ResourceTimeFence

None.

Request Formats

application/json, text/json

Sample:
{
  "HotspotId": 1,
  "NodeId": 2,
  "Title": "sample string 3",
  "LinkType": "sample string 4",
  "LinkId": 5,
  "CenterX": 6,
  "CenterY": 7,
  "KioskHotspotPointList": [
    {
      "PointId": 1,
      "HotspotId": 2,
      "X": 3,
      "Y": 4
    },
    {
      "PointId": 1,
      "HotspotId": 2,
      "X": 3,
      "Y": 4
    }
  ],
  "Hoteling": true,
  "ResTypeId": 9,
  "ResTypeHotelingAllowRecurring": true,
  "ResourceTimeFence": {
    "ResourceId": 1,
    "MaxRecur": 2,
    "FixedDate": "2026-04-04T07:57:55.8330678-04:00",
    "DateRangeFrom": "2026-04-04T07:57:55.8330678-04:00",
    "DateRangeTo": "2026-04-04T07:57:55.8330678-04:00",
    "AllowScheduleLimit": true,
    "LimitType": 7,
    "AllowRecur": true,
    "MaxRecurType": 9
  }
}

application/xml, text/xml

Sample:
<KioskHotspot xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/RSMCP.Entities">
  <CenterX>6</CenterX>
  <CenterY>7</CenterY>
  <Hoteling>true</Hoteling>
  <HotspotId>1</HotspotId>
  <KioskHotspotPointList>
    <KioskHotspotPoint>
      <HotspotId>2</HotspotId>
      <PointId>1</PointId>
      <X>3</X>
      <Y>4</Y>
    </KioskHotspotPoint>
    <KioskHotspotPoint>
      <HotspotId>2</HotspotId>
      <PointId>1</PointId>
      <X>3</X>
      <Y>4</Y>
    </KioskHotspotPoint>
  </KioskHotspotPointList>
  <LinkId>5</LinkId>
  <LinkType>sample string 4</LinkType>
  <NodeId>2</NodeId>
  <ResTypeHotelingAllowRecurring>true</ResTypeHotelingAllowRecurring>
  <ResTypeId>9</ResTypeId>
  <ResourceTimeFence>
    <AllowRecur>true</AllowRecur>
    <AllowScheduleLimit>true</AllowScheduleLimit>
    <DateRangeFrom>2026-04-04T07:57:55.8330678-04:00</DateRangeFrom>
    <DateRangeTo>2026-04-04T07:57:55.8330678-04:00</DateRangeTo>
    <FixedDate>2026-04-04T07:57:55.8330678-04:00</FixedDate>
    <LimitType>7</LimitType>
    <MaxRecur>2</MaxRecur>
    <MaxRecurType>9</MaxRecurType>
    <ResourceId>1</ResourceId>
  </ResourceTimeFence>
  <Title>sample string 3</Title>
</KioskHotspot>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

HttpResponseMessage
NameDescriptionTypeAdditional information
Version

Version

None.

Content

HttpContent

None.

StatusCode

HttpStatusCode

None.

ReasonPhrase

string

None.

Headers

Collection of Object

None.

RequestMessage

HttpRequestMessage

None.

IsSuccessStatusCode

boolean

None.