GET api/organization/getAllNames
Request Information
URI Parameters
None.
Body Parameters
None.
Response Information
Resource Description
Collection of OrgObj| Name | Description | Type | Additional information |
|---|---|---|---|
| Key | string |
None. |
|
| Name | string |
None. |
Response Formats
application/xml, text/xml
Sample:
<ArrayOfOrgObj xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/CCT.VerifyDocClient.API.Controllers">
<OrgObj>
<Key>sample string 1</Key>
<Name>sample string 2</Name>
</OrgObj>
<OrgObj>
<Key>sample string 1</Key>
<Name>sample string 2</Name>
</OrgObj>
</ArrayOfOrgObj>
application/json, text/json
Sample:
[
{
"Name": "sample string 2",
"Key": "sample string 1"
},
{
"Name": "sample string 2",
"Key": "sample string 1"
}
]