GET api/ChoiceList?projectId={projectId}&fieldId={fieldId}&fieldName={fieldName}

Get field choice list based on field id or field name

Request Information

URI Parameters

NameDescriptionTypeAdditional information
projectId

integer

Required

fieldId

integer

Default value is 0

fieldName

string

Default value is

Body Parameters

None.

Response Information

Resource Description

Get field choice list based on field id or field name

API_Data_ListOfChoiceObject
NameDescriptionTypeAdditional information
Success

boolean

None.

Error

ErrorInfo

None.

Data

Collection of ChoiceObject

None.

Response Formats

application/json, text/json

Sample:
{
  "Success": true,
  "Error": {
    "ErrorCode": 1,
    "ErrorMessage": "sample string 1"
  },
  "Data": [
    {
      "Id": 1,
      "Name": "sample string 2",
      "IsActive": true
    },
    {
      "Id": 1,
      "Name": "sample string 2",
      "IsActive": true
    }
  ]
}

application/xml, text/xml

Sample:
<API_Data_ArrayOfChoiceObject xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/TechExcel.DTKService.Model.Common">
  <Data>
    <ChoiceObject>
      <Id>1</Id>
      <IsActive>true</IsActive>
      <Name>sample string 2</Name>
    </ChoiceObject>
    <ChoiceObject>
      <Id>1</Id>
      <IsActive>true</IsActive>
      <Name>sample string 2</Name>
    </ChoiceObject>
  </Data>
  <Error>
    <ErrorCode>1</ErrorCode>
    <ErrorMessage>sample string 1</ErrorMessage>
  </Error>
  <Success>true</Success>
</API_Data_ArrayOfChoiceObject>