GET ReferenceData/tender-processes/{territoryId}

Returns Returns all available values for Tender Process.

Request Information

URI Parameters

NameDescriptionTypeAdditional information
territoryId

integer

Required

Body Parameters

None.

Response Information

Resource Description

List of tender processes

Collection of CustomFieldValue
NameDescriptionTypeAdditional information
Other

Other flag

boolean

None.

SourceUniqueId

ID

string

None.

Title

Title

string

None.

LocalResourceKey

Local resource key

string

None.

Response Formats

application/json, text/json

Sample:
[
  {
    "Other": true,
    "SourceUniqueId": "sample string 2",
    "Title": "sample string 3",
    "LocalResourceKey": "sample string 4"
  },
  {
    "Other": true,
    "SourceUniqueId": "sample string 2",
    "Title": "sample string 3",
    "LocalResourceKey": "sample string 4"
  }
]

application/xml, text/xml

Sample:
<ArrayOfCustomFieldValue xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Sif.Source.Api.Models">
  <CustomFieldValue>
    <LocalResourceKey>sample string 4</LocalResourceKey>
    <SourceUniqueId>sample string 2</SourceUniqueId>
    <Title>sample string 3</Title>
    <Other>true</Other>
  </CustomFieldValue>
  <CustomFieldValue>
    <LocalResourceKey>sample string 4</LocalResourceKey>
    <SourceUniqueId>sample string 2</SourceUniqueId>
    <Title>sample string 3</Title>
    <Other>true</Other>
  </CustomFieldValue>
</ArrayOfCustomFieldValue>