GET objectTypes/getObjectFields
Request Information
URI Parameters
None.
Body Parameters
None.
Response Information
Resource Description
ObjectFieldWrapper| Name | Description | Type | Additional information |
|---|---|---|---|
| WasSuccessful | boolean |
None. |
|
| Message | string |
None. |
|
| fieldList | Collection of ObjectField |
None. |
Response Formats
application/json, text/json
Sample:
{
"WasSuccessful": true,
"Message": "sample string 2",
"fieldList": [
{
"FieldName": "sample string 1",
"TableName": "sample string 2",
"PlaceholderToken": "sample string 3",
"ObjectTypeId": 4
},
{
"FieldName": "sample string 1",
"TableName": "sample string 2",
"PlaceholderToken": "sample string 3",
"ObjectTypeId": 4
}
]
}
text/html
Sample:
{"WasSuccessful":true,"Message":"sample string 2","fieldList":[{"FieldName":"sample string 1","TableName":"sample string 2","PlaceholderToken":"sample string 3","ObjectTypeId":4},{"FieldName":"sample string 1","TableName":"sample string 2","PlaceholderToken":"sample string 3","ObjectTypeId":4}]}
application/xml, text/xml
Sample:
<ObjectFieldWrapper xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/ListenerOnline.BusinessEntities.Common">
<Message>sample string 2</Message>
<WasSuccessful>true</WasSuccessful>
<fieldList>
<ObjectField>
<FieldName>sample string 1</FieldName>
<ObjectTypeId>4</ObjectTypeId>
<PlaceholderToken>sample string 3</PlaceholderToken>
<TableName>sample string 2</TableName>
</ObjectField>
<ObjectField>
<FieldName>sample string 1</FieldName>
<ObjectTypeId>4</ObjectTypeId>
<PlaceholderToken>sample string 3</PlaceholderToken>
<TableName>sample string 2</TableName>
</ObjectField>
</fieldList>
</ObjectFieldWrapper>