POST api/Admin/GetSubProjectAndFilterInfo?projectId={projectId}&fresh={fresh}

GetSubProjectAndFilterInfo info based on project id

Request Information

URI Parameters

NameDescriptionTypeAdditional information
projectId

projectId

integer

Required

fresh

fresh

boolean

Default value is False

Body Parameters

None.

Response Information

Resource Description

GetSubProjectAndFilterInfo info based on project id

API_Data_ListOfSubProjectFilterInfo
NameDescriptionTypeAdditional information
Success

boolean

None.

Error

ErrorInfo

None.

Data

Collection of SubProjectFilterInfo

None.

Response Formats

application/json, text/json

Sample:
{
  "Success": true,
  "Error": {
    "ErrorCode": 1,
    "ErrorMessage": "sample string 1"
  },
  "Data": [
    {
      "ID": 1,
      "Name": "sample string 2",
      "Value": 3,
      "OwnerID": 4,
      "StateID": 5,
      "OwnerName": "sample string 6",
      "StateName": "sample string 7",
      "LastOpenDate": "2024-12-21 15:00:36"
    },
    {
      "ID": 1,
      "Name": "sample string 2",
      "Value": 3,
      "OwnerID": 4,
      "StateID": 5,
      "OwnerName": "sample string 6",
      "StateName": "sample string 7",
      "LastOpenDate": "2024-12-21 15:00:36"
    }
  ]
}

application/xml, text/xml

Sample:
<API_Data_ArrayOfSubProjectFilterInfo xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/TechExcel.DTKService.Model.Common">
  <Data xmlns:d2p1="http://schemas.datacontract.org/2004/07/TechExcel.DTKService.Model.Binding">
    <d2p1:SubProjectFilterInfo>
      <d2p1:ID>1</d2p1:ID>
      <d2p1:LastOpenDate>2024-12-21T19:00:36.8243182-08:00</d2p1:LastOpenDate>
      <d2p1:Name>sample string 2</d2p1:Name>
      <d2p1:OwnerID>4</d2p1:OwnerID>
      <d2p1:OwnerName>sample string 6</d2p1:OwnerName>
      <d2p1:StateID>5</d2p1:StateID>
      <d2p1:StateName>sample string 7</d2p1:StateName>
      <d2p1:Value>3</d2p1:Value>
    </d2p1:SubProjectFilterInfo>
    <d2p1:SubProjectFilterInfo>
      <d2p1:ID>1</d2p1:ID>
      <d2p1:LastOpenDate>2024-12-21T19:00:36.8243182-08:00</d2p1:LastOpenDate>
      <d2p1:Name>sample string 2</d2p1:Name>
      <d2p1:OwnerID>4</d2p1:OwnerID>
      <d2p1:OwnerName>sample string 6</d2p1:OwnerName>
      <d2p1:StateID>5</d2p1:StateID>
      <d2p1:StateName>sample string 7</d2p1:StateName>
      <d2p1:Value>3</d2p1:Value>
    </d2p1:SubProjectFilterInfo>
  </Data>
  <Error>
    <ErrorCode>1</ErrorCode>
    <ErrorMessage>sample string 1</ErrorMessage>
  </Error>
  <Success>true</Success>
</API_Data_ArrayOfSubProjectFilterInfo>