GET api/CustomFieldApi/GetCustomFields?tablename={tablename}&fieldname={fieldname}&orgId={orgId}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| tablename | string |
Required |
|
| fieldname | string |
Required |
|
| orgId | integer |
Required |
Body Parameters
None.
Response Information
Resource Description
Collection of GetCustomFields_Result| Name | Description | Type | Additional information |
|---|---|---|---|
| ID | integer |
None. |
|
| TableName | string |
None. |
|
| FieldName | string |
None. |
|
| Type | string |
None. |
|
| TableFieldId | string |
None. |
|
| FieldNameId | integer |
None. |
|
| Value | string |
None. |
Response Formats
application/json, text/json
Sample:
[
{
"ID": 1,
"TableName": "sample string 1",
"FieldName": "sample string 2",
"Type": "sample string 3",
"TableFieldId": "sample string 4",
"FieldNameId": 1,
"Value": "sample string 5"
},
{
"ID": 1,
"TableName": "sample string 1",
"FieldName": "sample string 2",
"Type": "sample string 3",
"TableFieldId": "sample string 4",
"FieldNameId": 1,
"Value": "sample string 5"
}
]
application/xml, text/xml
Sample:
<ArrayOfGetCustomFields_Result xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/SecurityApi">
<GetCustomFields_Result>
<FieldName>sample string 2</FieldName>
<FieldNameId>1</FieldNameId>
<ID>1</ID>
<TableFieldId>sample string 4</TableFieldId>
<TableName>sample string 1</TableName>
<Type>sample string 3</Type>
<Value>sample string 5</Value>
</GetCustomFields_Result>
<GetCustomFields_Result>
<FieldName>sample string 2</FieldName>
<FieldNameId>1</FieldNameId>
<ID>1</ID>
<TableFieldId>sample string 4</TableFieldId>
<TableName>sample string 1</TableName>
<Type>sample string 3</Type>
<Value>sample string 5</Value>
</GetCustomFields_Result>
</ArrayOfGetCustomFields_Result>