GET api/Region/{id}
Returns a single Region.
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| id | globally unique identifier |
Required |
Body Parameters
None.
Response Information
Resource Description
SupportObjModel| Name | Description | Type | Additional information |
|---|---|---|---|
| Id | globally unique identifier |
None. |
|
| Name | string |
None. |
|
| Code | string |
None. |
|
| Active | boolean |
None. |
Response Formats
application/json, text/json
Sample:
{
"Id": "c57d41b8-b3e2-4b8c-ab3a-e210b9a65242",
"Name": "sample string 2",
"Code": "sample string 3",
"Active": true
}
text/xml
Sample:
<SupportObjModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Privacy.Proc.API.Models.Common"> <Active>true</Active> <Code>sample string 3</Code> <Id>c57d41b8-b3e2-4b8c-ab3a-e210b9a65242</Id> <Name>sample string 2</Name> </SupportObjModel>