GET api/CostEstimateAssignment_Tables?calcArgs={calcArgs}&compCode={compCode}

Request Information

URI Parameters

NameDescriptionTypeAdditional information
calcArgs

string

Required

compCode

string

Required

Body Parameters

Dictionary of string [key] and string [value]

Request Formats

application/json, text/json

Sample:
{
  "sample string 1": "sample string 2",
  "sample string 3": "sample string 4"
}

application/xml, text/xml

Sample:
<ArrayOfKeyValueOfstringstring xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
  <KeyValueOfstringstring>
    <Key>sample string 1</Key>
    <Value>sample string 2</Value>
  </KeyValueOfstringstring>
  <KeyValueOfstringstring>
    <Key>sample string 3</Key>
    <Value>sample string 4</Value>
  </KeyValueOfstringstring>
</ArrayOfKeyValueOfstringstring>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

CEASelectionList
NameDescriptionTypeAdditional information
Name

string

None.

CEASelectionTableGroups

Collection of CEASelectionTableGroup

None.

Response Formats

application/json, text/json

Sample:
{
  "Name": "sample string 1",
  "CEASelectionTableGroups": [
    {
      "TableRow": [
        {
          "ItemType": 0,
          "Name": "sample string 1",
          "DataType": 0,
          "TextValue": "sample string 2",
          "DecimalValue": 3.0
        },
        {
          "ItemType": 0,
          "Name": "sample string 1",
          "DataType": 0,
          "TextValue": "sample string 2",
          "DecimalValue": 3.0
        }
      ]
    },
    {
      "TableRow": [
        {
          "ItemType": 0,
          "Name": "sample string 1",
          "DataType": 0,
          "TextValue": "sample string 2",
          "DecimalValue": 3.0
        },
        {
          "ItemType": 0,
          "Name": "sample string 1",
          "DataType": 0,
          "TextValue": "sample string 2",
          "DecimalValue": 3.0
        }
      ]
    }
  ]
}

application/xml, text/xml

Sample:
<CEASelectionList xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Fabric">
  <CEASelectionTableGroups>
    <CEASelectionTableGroup>
      <TableRow>
        <TableItem>
          <DataType>text</DataType>
          <DecimalValue>3</DecimalValue>
          <ItemType>field</ItemType>
          <Name>sample string 1</Name>
          <TextValue>sample string 2</TextValue>
        </TableItem>
        <TableItem>
          <DataType>text</DataType>
          <DecimalValue>3</DecimalValue>
          <ItemType>field</ItemType>
          <Name>sample string 1</Name>
          <TextValue>sample string 2</TextValue>
        </TableItem>
      </TableRow>
    </CEASelectionTableGroup>
    <CEASelectionTableGroup>
      <TableRow>
        <TableItem>
          <DataType>text</DataType>
          <DecimalValue>3</DecimalValue>
          <ItemType>field</ItemType>
          <Name>sample string 1</Name>
          <TextValue>sample string 2</TextValue>
        </TableItem>
        <TableItem>
          <DataType>text</DataType>
          <DecimalValue>3</DecimalValue>
          <ItemType>field</ItemType>
          <Name>sample string 1</Name>
          <TextValue>sample string 2</TextValue>
        </TableItem>
      </TableRow>
    </CEASelectionTableGroup>
  </CEASelectionTableGroups>
  <Name>sample string 1</Name>
</CEASelectionList>