GET ReferenceData/legal-frameworks/{territoryId}

Returns all available values for Legal Framework.

Request Information

URI Parameters

NameDescriptionTypeAdditional information
territoryId

Territory Id

integer

Required

Body Parameters

None.

Response Information

Resource Description

List of legal frameworks

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>