POST api/Kiosk/AddKioskNode
Add Kiosk Node Only accessible by Administrative Users
Request Information
URI Parameters
None.
Body Parameters
KioskNode| Name | Description | Type | Additional information |
|---|---|---|---|
| NodeId | integer |
None. |
|
| Title | string |
None. |
|
| Notes | string |
None. |
|
| ImageId | integer |
None. |
|
| LocationId | integer |
None. |
|
| LocationName | string |
None. |
|
| ParentNodeId | integer |
None. |
|
| UserDepartment | string |
None. |
|
| IconScale | integer |
None. |
Request Formats
application/json, text/json
Sample:
{
"NodeId": 1,
"Title": "sample string 2",
"Notes": "sample string 3",
"ImageId": 4,
"LocationId": 5,
"LocationName": "sample string 6",
"ParentNodeId": 7,
"UserDepartment": "sample string 8",
"IconScale": 1
}
application/xml, text/xml
Sample:
<KioskNode xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/RSMCP.Entities"> <IconScale>1</IconScale> <ImageId>4</ImageId> <LocationId>5</LocationId> <LocationName>sample string 6</LocationName> <NodeId>1</NodeId> <Notes>sample string 3</Notes> <ParentNodeId>7</ParentNodeId> <Title>sample string 2</Title> <UserDepartment>sample string 8</UserDepartment> </KioskNode>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
HttpResponseMessage| Name | Description | Type | Additional information |
|---|---|---|---|
| Version | Version |
None. |
|
| Content | HttpContent |
None. |
|
| StatusCode | HttpStatusCode |
None. |
|
| ReasonPhrase | string |
None. |
|
| Headers | Collection of Object |
None. |
|
| RequestMessage | HttpRequestMessage |
None. |
|
| IsSuccessStatusCode | boolean |
None. |