GET api/Location_of_Organizations
Get Organization List as
Request Information
URI Parameters
None.
Body Parameters
None.
Response Information
Resource Description
Collection of org_location| Name | Description | Type | Additional information | 
|---|---|---|---|
| OrganizationId | integer | None. | |
| OrgCode | string | None. | |
| OrganizationName | string | None. | |
| OrganizationShortName | string | None. | |
| CountryName | string | None. | 
Response Formats
application/json, text/json
            Sample:
        
[
  {
    "OrganizationId": 1,
    "OrgCode": "sample string 2",
    "OrganizationName": "sample string 3",
    "OrganizationShortName": "sample string 4",
    "CountryName": "sample string 5"
  },
  {
    "OrganizationId": 1,
    "OrgCode": "sample string 2",
    "OrganizationName": "sample string 3",
    "OrganizationShortName": "sample string 4",
    "CountryName": "sample string 5"
  }
]
        application/xml, text/xml
            Sample:
<ArrayOforg_location xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/WebApplicationITTF1.Controllers">
  <org_location>
    <CountryName>sample string 5</CountryName>
    <OrgCode>sample string 2</OrgCode>
    <OrganizationId>1</OrganizationId>
    <OrganizationName>sample string 3</OrganizationName>
    <OrganizationShortName>sample string 4</OrganizationShortName>
  </org_location>
  <org_location>
    <CountryName>sample string 5</CountryName>
    <OrgCode>sample string 2</OrgCode>
    <OrganizationId>1</OrganizationId>
    <OrganizationName>sample string 3</OrganizationName>
    <OrganizationShortName>sample string 4</OrganizationShortName>
  </org_location>
</ArrayOforg_location>