Get Row Field
Retrieve a single field value from a row from a business object. The result is not JSON encoded, and is the literal value.
HTTP Request
GET /icweb.dll/bo/{tableName}/{keyValue}/{fieldname}?format={format}
URI Parameters
Name |
In |
Required |
Type |
Description |
|
Path |
Yes |
String |
Table Name of the business object. |
|
Path |
Yes |
Integer |
Id of the row to be returned. |
|
Path |
Yes |
String |
Field Name within the business object. |
|
Path |
No |
string |
Format of results. Possible values are |
|
Path |
No |
Integer |
Where this is a multi-page document, such as PDF, return the specific page rendered as |
Responses
Name |
Type |
Description |
200 OK |
OK |
|
404 Not Found |
No row found for specified |
|
404 Not Found |
Field |
Literal Value
The response contains the literal value of the field. The content type in the response header describes the type of content returned.
Example
Retrieve the name of a workpack.
Request
GET /icweb.dll/bo/Workpack/4/Name
Response
Content-Type: text/plain
2015 ROV Inspection
Example
Retrieve the icon for an Asset
Request
GET /icweb.dll/bo/Comp_Icon/4/Icon
Response
Content-Type: image/png
{binaryData}