GET api/GetOrgTypes?StoreID={StoreID}&Key={Key}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| StoreID | string |
Required |
|
| Key | string |
Required |
Body Parameters
None.
Response Information
Resource Description
OrgTypeArr| Name | Description | Type | Additional information |
|---|---|---|---|
| OrgTypeList | Collection of OrgTypeDtl |
None. |
Response Formats
application/json, text/json
Sample:
{
"OrgTypeList": [
{
"OrgTypeCode": "sample string 1",
"OrgTypeName": "sample string 2",
"OrgTypeSort": "sample string 3"
},
{
"OrgTypeCode": "sample string 1",
"OrgTypeName": "sample string 2",
"OrgTypeSort": "sample string 3"
}
]
}
application/xml, text/xml
Sample:
<OrgTypeArr xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/JSON_API_UDB">
<OrgTypeList>
<OrgTypeDtl>
<OrgTypeCode>sample string 1</OrgTypeCode>
<OrgTypeName>sample string 2</OrgTypeName>
<OrgTypeSort>sample string 3</OrgTypeSort>
</OrgTypeDtl>
<OrgTypeDtl>
<OrgTypeCode>sample string 1</OrgTypeCode>
<OrgTypeName>sample string 2</OrgTypeName>
<OrgTypeSort>sample string 3</OrgTypeSort>
</OrgTypeDtl>
</OrgTypeList>
</OrgTypeArr>