POST api/UserCode?isRadioPath={isRadioPath}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| isRadioPath | boolean |
Required |
Body Parameters
Collection of UserCode| Name | Description | Type | Additional information |
|---|---|---|---|
| Account | string |
None. |
|
| PanelUserNo | integer |
None. |
|
| Description | string |
None. |
|
| Type | integer |
None. |
|
| Code | string |
None. |
|
| Scheduled | integer |
None. |
Request Formats
application/json, text/json
Sample:
[
{
"Account": "sample string 1",
"PanelUserNo": 2,
"Description": "sample string 3",
"Type": 4,
"Code": "sample string 5",
"Scheduled": 6
},
{
"Account": "sample string 1",
"PanelUserNo": 2,
"Description": "sample string 3",
"Type": 4,
"Code": "sample string 5",
"Scheduled": 6
}
]
application/xml, text/xml
Sample:
<ArrayOfUserCode xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/GeminiiSecureWebAPI.Model">
<UserCode>
<Account>sample string 1</Account>
<Code>sample string 5</Code>
<Description>sample string 3</Description>
<PanelUserNo>2</PanelUserNo>
<Scheduled>6</Scheduled>
<Type>4</Type>
</UserCode>
<UserCode>
<Account>sample string 1</Account>
<Code>sample string 5</Code>
<Description>sample string 3</Description>
<PanelUserNo>2</PanelUserNo>
<Scheduled>6</Scheduled>
<Type>4</Type>
</UserCode>
</ArrayOfUserCode>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
Collection of DBResponse| Name | Description | Type | Additional information |
|---|---|---|---|
| Account | string |
None. |
|
| SLNo | integer |
None. |
|
| ErrorCode | integer |
None. |
|
| ErrorMessage | string |
None. |
Response Formats
application/json, text/json
Sample:
[
{
"Account": "sample string 1",
"SLNo": 2,
"ErrorCode": 3,
"ErrorMessage": "sample string 4"
},
{
"Account": "sample string 1",
"SLNo": 2,
"ErrorCode": 3,
"ErrorMessage": "sample string 4"
}
]
application/xml, text/xml
Sample:
<ArrayOfDBResponse xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/GeminiiSecureWebAPI.Model">
<DBResponse>
<Account>sample string 1</Account>
<ErrorCode>3</ErrorCode>
<ErrorMessage>sample string 4</ErrorMessage>
<SLNo>2</SLNo>
</DBResponse>
<DBResponse>
<Account>sample string 1</Account>
<ErrorCode>3</ErrorCode>
<ErrorMessage>sample string 4</ErrorMessage>
<SLNo>2</SLNo>
</DBResponse>
</ArrayOfDBResponse>