GET api/BatchPhaseTypes/LocaleList?languageCode={languageCode}

Request Information

URI Parameters

NameDescriptionTypeAdditional information
languageCode

string

Default value is en

Body Parameters

None.

Response Information

Resource Description

Collection of ViewBatchPhaseTypeLocale
NameDescriptionTypeAdditional information
LanguageId

integer

None.

LanguageCode

string

None.

Id

integer

None.

SystemName

string

None.

OrderSerial

integer

None.

ActiveStatus

boolean

None.

Title

string

None.

Comment

string

None.

Response Formats

application/json, text/json

Sample:
[
  {
    "LanguageId": 1,
    "LanguageCode": "sample string 2",
    "Id": 3,
    "SystemName": "sample string 4",
    "OrderSerial": 5,
    "ActiveStatus": true,
    "Title": "sample string 7",
    "Comment": "sample string 8"
  },
  {
    "LanguageId": 1,
    "LanguageCode": "sample string 2",
    "Id": 3,
    "SystemName": "sample string 4",
    "OrderSerial": 5,
    "ActiveStatus": true,
    "Title": "sample string 7",
    "Comment": "sample string 8"
  }
]

application/xml, text/xml

Sample:
<ArrayOfViewBatchPhaseTypeLocale xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/PoultryManagementAPI.Models">
  <ViewBatchPhaseTypeLocale>
    <ActiveStatus>true</ActiveStatus>
    <Comment>sample string 8</Comment>
    <Id>3</Id>
    <LanguageCode>sample string 2</LanguageCode>
    <LanguageId>1</LanguageId>
    <OrderSerial>5</OrderSerial>
    <SystemName>sample string 4</SystemName>
    <Title>sample string 7</Title>
  </ViewBatchPhaseTypeLocale>
  <ViewBatchPhaseTypeLocale>
    <ActiveStatus>true</ActiveStatus>
    <Comment>sample string 8</Comment>
    <Id>3</Id>
    <LanguageCode>sample string 2</LanguageCode>
    <LanguageId>1</LanguageId>
    <OrderSerial>5</OrderSerial>
    <SystemName>sample string 4</SystemName>
    <Title>sample string 7</Title>
  </ViewBatchPhaseTypeLocale>
</ArrayOfViewBatchPhaseTypeLocale>