getObjectRecord
/api/v2/objectrecords/{objectRecordId}
All authorized users can retrieve a public object record in eHive. A request to the /api/v2/objectrecords/{objectRecordId}
resource will return an Object Record
JSON object.
Try the getObjectRecord Method
You can enter real values into the form below and test them against our live API. The response you see is a genuine JSON response from the API.
Name | Data Type | Parameter Type | Length | Required | Description |
---|---|---|---|---|---|
objectRecordId | Integer | Path | 64-bit signed two's complement | YES | The id for the Object Record you wish to retrieve. |
Code Examples
Included below are some code snippets from our code samples projects. The examples show the main elements needed to use our API client libraries.
Java
Prerequisites
- Download the Java API client library.
- Create a new Java class file.
- Add the Java API client library JAR to your classpath.
- Create a blank file that is accessible from wherever you are running this example. The file is used to store your API authentication token, so it must be readable and writable. You can name the file anything you like as long as it is valid in Java.
Start Coding
- Instantiate an EHiveApi object. The EHiveApi object contains all of the methods available in the API.
The API requires authentication credentials
so you will need to configure your EHiveApi object with valid credentials. There are a number of ways to instantiate the EHiveApi object but for
this example you will simply pass all of the parameters you need into the EHiveApi object's constructor:
private static String clientId = "...462"; private static String clientSecret = "...98a9"; private static String trackingId = "...eaca"; private static String pathToOauthPropertiesFile = "oauth.properties"; ... EHiveApi eHiveApi = new EHiveApi(clientId, clientSecret, trackingId, pathToOauthPropertiesFile);
- Invoke the getObjectRecord() method and assign the return value to an ObjectRecord domain
object as follows:
ObjectRecord objectRecord = eHiveApi.getObjectRecord(2509L);
- Access the ObjectRecord information using the ObjectRecord domain object's getter method.
Long recordId = objectRecord.getObjectRecordId(); System.out.println(recordId);
View the full example below.
import com.ehive.api.EHiveApi; import com.ehive.api.domain.objects.Attribute; import com.ehive.api.domain.objects.Attribute.AttributeIdentifier; import com.ehive.api.domain.objects.Field; import com.ehive.api.domain.objects.FieldRow; import com.ehive.api.domain.objects.FieldSet; import com.ehive.api.domain.objects.Media; import com.ehive.api.domain.objects.MediaRow; import com.ehive.api.domain.objects.MediaSet; import com.ehive.api.domain.objects.ObjectRecord; import com.ehive.api.exceptions.EHiveApiException; import com.ehive.api.exceptions.EHiveFatalServerException; import com.ehive.api.exceptions.EHiveForbiddenException; import com.ehive.api.exceptions.EHiveNotFoundException; import com.ehive.api.exceptions.EHiveUnauthorizedException; public class GetObjectRecord { private static String clientId = "...462"; private static String clientSecret = "...98a9"; private static String trackingId = "...eaca"; private static String pathToOauthPropertiesFile = "oauth.properties"; private final static Long objectRecordId = 2509L; public static void main(String[] args) throws EHiveApiException, EHiveFatalServerException, EHiveNotFoundException, EHiveUnauthorizedException, EHiveForbiddenException { // Instantiate the EHiveApi object EHiveApi eHiveApi = new EHiveApi(clientId, clientSecret, trackingId, pathToOauthPropertiesFile); // Invoke an API method ObjectRecord objectRecord = eHiveApi.getObjectRecord(objectRecordId); // Print some output using the returned object record object printObjectRecordInfo(objectRecord); } private static void printObjectRecordInfo(ObjectRecord objectRecord) { StringBuilder stringBuilder = new StringBuilder(); stringBuilder.append("Record ID: " + objectRecord.getObjectRecordId().toString() + "\n\n"); for (FieldSet fieldSet : objectRecord.getFieldSets()) { stringBuilder.append("FIELD SET: " + fieldSet.getIdentifier() + "\n"); for (FieldRow fieldRow : fieldSet.getFieldRows()) { for (Field field : fieldRow.getFields()) { for (Attribute attribute : field.getAttributes()) { if (AttributeIdentifier.getIdentifier(attribute.getKey()) == AttributeIdentifier.LABEL) { stringBuilder.append(attribute.getValue() + ":"); } else if (AttributeIdentifier.getIdentifier(attribute.getKey()) == AttributeIdentifier.VALUE) { stringBuilder.append(" " + attribute.getValue() + "\n\n"); } } } } stringBuilder.append("\n\n"); } for (MediaSet mediaSet : objectRecord.getMediaSets()) { stringBuilder.append(mediaSet.getIdentifier().toUpperCase() + " URL: \n"); for (MediaRow mediaRow : mediaSet.getMediaRows()) { for (Media media : mediaRow.getMedia()) { for (Attribute attribute : media.getAttributes()) { if (AttributeIdentifier.getIdentifier(attribute.getKey()) == AttributeIdentifier.URL) { stringBuilder.append(attribute.getValue() + "\n"); } } } } } System.out.println(stringBuilder.toString()); } }
PHP
Prerequisites
- Download the PHP API client library.
- Create a new php script file.
- Add EHiveApi.php from the PHP API client library to your include path.
- Locate the oauth.tok file in the transport/oauth directory of the PHP API client library and ensure that it has both read and write permission enabled.
Start Coding
- Instantiate an EHiveApi object. The EHiveApi class contains all of the functions available to you in the API.
- Configure your EHiveApi object with valid authentication credentials. There are a number of ways to instantiate the EHiveApi object but for this example you will simply pass all of the parameter you need into the EHiveApi object's constructor:
private static $clientId = "...5935"; private static $clientSecret = "...4c4b"; private static $trackingId = "...7861"; ... $eHiveApi = new EHiveApi(GetObjectRecordDemo::$clientId, GetObjectRecordDemo::$clientSecret, GetObjectRecordDemo::$trackingId);
- Invoke the getObjectRecord() method and assign the return value to a variable as follows:
$objectRecord = $eHiveApi->getObjectRecord(2509);
- Access the information on the ObjectRecord object.
echo $objectRecord->objectRecordId;
View the full example below.
require_once '../../lib/ehive_api_client-php-1.0.0/EHiveApi.php'; class GetObjectRecordDemo { private static $clientId = "...5935"; private static $clientSecret = "...4c4b"; private static $trackingId = "...7861"; private static $objectRecordId = 2509; public function printObjectRecordInfo() { // Instantiate the EHiveApi object $eHiveApi = new EHiveApi(GetObjectRecordDemo::$clientId, GetObjectRecordDemo::$clientSecret, GetObjectRecordDemo::$trackingId); // Invoke an API method $objectRecord = $eHiveApi->getObjectRecord(GetObjectRecordDemo::$objectRecordId); // Print some output using the returned record object echo "Record ID: {$objectRecord->objectRecordId}\n"; foreach ($objectRecord->fieldSets as $key => $fieldSet) { echo "FIELD SET: {$fieldSet->identifier}\n"; foreach ($fieldSet->fieldRows as $key => $fieldRow) { foreach ($fieldRow->fields as $key => $field) { foreach ($field->attributes as $key => $attribute) { if ($attribute->key == 'label') { echo "{$attribute->value}:"; } else if ($attribute->key == 'value') { echo " {$attribute->value}\n\n"; } } } } echo "\n\n"; } foreach ($objectRecord->mediaSets as $key => $mediaSet) { echo strtoupper($mediaSet->identifier) . " URL: \n"; foreach ($mediaSet->mediaRows as $key => $mediaRow) { foreach ($mediaRow->media as $key => $media) { foreach ($media->attributes as $key => $attribute) { if ($attribute->key == 'url') { echo " {$attribute->value}\n"; } } } } } } } $getObjectRecordDemo = new GetObjectRecordDemo(); $getObjectRecordDemo->printObjectRecordInfo();