GET api/MasterData/Progress/Selectors

Get progress selectors

Request Information

URI Parameters

None.

Body Parameters

None.

Response Information

Resource Description

Collection of ProgressSelectorDto
NameDescriptionTypeAdditional information
Value

integer

None.

Text

string

None.

Response Formats

application/json, text/json

Sample:
[
  {
    "value": 1,
    "text": "sample string 2"
  },
  {
    "value": 1,
    "text": "sample string 2"
  }
]

text/html

Sample:
[{"value":1,"text":"sample string 2"},{"value":1,"text":"sample string 2"}]

application/xml, text/xml

Sample:
<ArrayOfProgressSelectorDto xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/TR.eSAM.SubcontractModule.Application.Dtos.Dtos.ProgressAgg">
  <ProgressSelectorDto>
    <Text>sample string 2</Text>
    <Value>1</Value>
  </ProgressSelectorDto>
  <ProgressSelectorDto>
    <Text>sample string 2</Text>
    <Value>1</Value>
  </ProgressSelectorDto>
</ArrayOfProgressSelectorDto>