POST api/SiteGroup/SiteGroupOtherAllowList
Request Information
URI Parameters
None.
Body Parameters
SiteGroupNumRequest| Name | Description | Type | Additional information |
|---|---|---|---|
| SiteGroupNum | integer |
None. |
|
| SessionNum | integer |
None. |
|
| SessionPassword | Collection of byte |
None. |
|
| ApplicationCode | string |
None. |
|
| StagesURL | string |
None. |
Request Formats
application/json, text/json
Sample:
{
"SiteGroupNum": 1,
"SessionNum": 1,
"SessionPassword": "QEA=",
"ApplicationCode": "sample string 2",
"StagesURL": "sample string 3"
}
application/xml, text/xml
Sample:
<SiteGroupNumRequest xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/RapidAPI.Models"> <StagesURL>sample string 3</StagesURL> <ApplicationCode>sample string 2</ApplicationCode> <SessionNum>1</SessionNum> <SessionPassword>QEA=</SessionPassword> <SiteGroupNum>1</SiteGroupNum> </SiteGroupNumRequest>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
SiteGroupOtherAllowListQueryResult| Name | Description | Type | Additional information |
|---|---|---|---|
| ResultSet | Collection of SiteGroupOtherAllowListResult |
None. |
|
| ExcludeColumnList | Collection of string |
None. |
|
| ErrorTypeNum | integer |
None. |
|
| UserErrorMessage | string |
None. |
|
| Success | boolean |
None. |
Response Formats
application/json, text/json
Sample:
{
"ResultSet": [
{
"AllowedSiteGroupNum": 1,
"SiteGroupNum": 1,
"AllowedSiteGroupName": "sample string 1"
},
{
"AllowedSiteGroupNum": 1,
"SiteGroupNum": 1,
"AllowedSiteGroupName": "sample string 1"
}
],
"ExcludeColumnList": [
"sample string 1",
"sample string 2"
],
"ErrorTypeNum": 1,
"UserErrorMessage": "sample string 2",
"Success": true
}
application/xml, text/xml
Sample:
<SiteGroupOtherAllowListQueryResult xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/RapidAPI.Models">
<ErrorTypeNum>1</ErrorTypeNum>
<ExcludeColumnList xmlns:d2p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
<d2p1:string>sample string 1</d2p1:string>
<d2p1:string>sample string 2</d2p1:string>
</ExcludeColumnList>
<Success>true</Success>
<UserErrorMessage>sample string 2</UserErrorMessage>
<ResultSet>
<SiteGroupOtherAllowListResult>
<AllowedSiteGroupName>sample string 1</AllowedSiteGroupName>
<AllowedSiteGroupNum>1</AllowedSiteGroupNum>
<SiteGroupNum>1</SiteGroupNum>
</SiteGroupOtherAllowListResult>
<SiteGroupOtherAllowListResult>
<AllowedSiteGroupName>sample string 1</AllowedSiteGroupName>
<AllowedSiteGroupNum>1</AllowedSiteGroupNum>
<SiteGroupNum>1</SiteGroupNum>
</SiteGroupOtherAllowListResult>
</ResultSet>
</SiteGroupOtherAllowListQueryResult>