GET GlobalIndicators/SourceApplication
Returns all global indicators related to SOURCE application.
Request Information
URI Parameters
None.
Body Parameters
None.
Response Information
Resource Description
Global indicators
Collection of GlobalIndicator| Name | Description | Type | Additional information |
|---|---|---|---|
| Id |
Defines the indicator's id |
integer |
None. |
| Name |
Defines the indicator's key |
string |
None. |
| Value |
Defines the indicator's value |
integer |
None. |
Response Formats
application/json, text/json
Sample:
[
{
"Id": 1,
"Name": "sample string 2",
"Value": 1
},
{
"Id": 1,
"Name": "sample string 2",
"Value": 1
}
]
application/xml, text/xml
Sample:
<ArrayOfGlobalIndicator xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Sif.Source.Api.Models">
<GlobalIndicator>
<Id>1</Id>
<Name>sample string 2</Name>
<Value>1</Value>
</GlobalIndicator>
<GlobalIndicator>
<Id>1</Id>
<Name>sample string 2</Name>
<Value>1</Value>
</GlobalIndicator>
</ArrayOfGlobalIndicator>