GET api/RBPartIndex/GetFieldList?v={v}&t={t}&ft={ft}
Retrieve RB PART BLOB field list.
Request Information
URI Parameters
Name | Description | Type | Additional information |
---|---|---|---|
v |
Version, default: 0 for all versions. |
integer |
Required |
t |
Authentication token. |
string |
Required |
ft |
Field type: 1: static field, 2: dynamic field, 3: all field types (default). |
integer |
Default value is 3 |
Body Parameters
None.
Response Information
Resource Description
Collection of RBPartFieldName | Description | Type | Additional information |
---|---|---|---|
FieldId | integer |
None. |
|
FieldName | string |
None. |
|
ColumnLabel | string |
None. |
|
DataType | string |
None. |
|
FieldType | RBPartFieldType |
None. |
Response Formats
application/json, text/json
Sample:
[ { "FieldId": 1, "FieldName": "sample string 2", "ColumnLabel": "sample string 3", "DataType": "sample string 4", "FieldType": 1 }, { "FieldId": 1, "FieldName": "sample string 2", "ColumnLabel": "sample string 3", "DataType": "sample string 4", "FieldType": 1 } ]
application/xml, text/xml
Sample:
<ArrayOfRBPartField xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/InteractiveDataFIA.BondEdge.PartCommon"> <RBPartField> <ColumnLabel>sample string 3</ColumnLabel> <DataType>sample string 4</DataType> <FieldId>1</FieldId> <FieldName>sample string 2</FieldName> <FieldType>Static</FieldType> </RBPartField> <RBPartField> <ColumnLabel>sample string 3</ColumnLabel> <DataType>sample string 4</DataType> <FieldId>1</FieldId> <FieldName>sample string 2</FieldName> <FieldType>Static</FieldType> </RBPartField> </ArrayOfRBPartField>