getObjectRecordComments
/api/v2/objectrecords/{objectRecordId}/comments
All authorized users can retrieve comments from an object record in eHive. A request to the /api/v2/objectrecords/{objectRecordId}/comments
resource will return an CommentCollection
JSON object.
Try the getObjectRecordComments 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. |
offset | Integer | Query | 32-bit signed two's complement | NO | The offset query parameters allows you to paginate your search results. |
limit | Integer | Query | 32-bit signed two's complement | NO | The limit query parameters allows you to limit the number of search results per request. |
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 getObjectRecordComments() method and assign the return value to an CommentsCollection domain
object as follows:
CommentsCollection commentsCollection = eHiveApi.getObjectRecordComments(2509L, 0, 12);
- Access the comment information using the Comment domain object's getter method.
String comment = comment.getCommentText(); System.out.println(comment);
View the full example below.
import com.ehive.api.EHiveApi; import com.ehive.api.domain.comments.Comment; import com.ehive.api.domain.comments.CommentsCollection; 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 GetObjectRecordComments { private static String clientId = "...462"; private static String clientSecret = "...98a9"; private static String trackingId = "...eaca"; private static String pathToOauthPropertiesFile = "oauth.properties"; private static Long objectRecordId = 2509L; private static Integer offset = 0; private static Integer limit = 12; 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 CommentsCollection commentsCollection = eHiveApi.getObjectRecordComments(objectRecordId, offset, limit); // Print some output using the returned object record comments printObjectRecordInfo(commentsCollection); } private static void printObjectRecordInfo(CommentsCollection commentsCollection) { StringBuilder stringBuilder = new StringBuilder(); stringBuilder.append("Total number of comments:\t\t " + commentsCollection.getComments().size() + "\n"); for (Comment comment : commentsCollection.getComments()) { stringBuilder.append("Commentor Name:\t\t " + comment.getCommentorName() + "\n"); stringBuilder.append("Commentor Email Address: " + comment.getCommentorEmailAddress() + "\n"); stringBuilder.append("Comment Text:\t\t " + comment.getCommentText() + "\n\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 = "...eaca"; ... $eHiveApi = new EHiveApi(GetObjectRecordsCommentsDemo::$clientId, GetObjectRecordsCommentsDemo::$clientSecret, GetObjectRecordsCommentsDemo::$trackingId);
- Invoke the getObjectRecordComments() method and assign the return value to a variable as follows:
$commentsCollection = $eHiveApi->getObjectRecordComments(2509, 0, 12);
- Access the information on the comment object.
echo $comment->commentText;
View the full example below.
require_once '../../lib/ehive_api_client-php-1.0.0/EHiveApi.php'; class GetObjectRecordsCommentsDemo { private static $clientId = "...5935"; private static $clientSecret = "...4c4b"; private static $trackingId = "...eaca"; private static $objectRecordId = 2509; private static $offset = 0; private static $limit = 12; public function printAccountInfo() { // Instantiate the EHiveApi object $eHiveApi = new EHiveApi(GetObjectRecordsCommentsDemo::$clientId, GetObjectRecordsCommentsDemo::$clientSecret, GetObjectRecordsCommentsDemo::$trackingId); // Invoke an API method $commentsCollection = $eHiveApi->getObjectRecordComments(GetObjectRecordsCommentsDemo::$objectRecordId, GetObjectRecordsCommentsDemo::$offset, GetObjectRecordsCommentsDemo::$limit); // Print some output using the returned comments collection object foreach ($commentsCollection->comments as $comment) { if ($comment->commentorEmailAddress) { echo "Commentor Email Address: " . $comment->commentorEmailAddress . "\n\n"; } if ($comment->commentorName) { echo "Commentor name: " . $comment->commentorName . "\n\n"; } if ($comment->commentText) { echo "Comment text: " . $comment->commentText . "\n\n"; } } echo "\n\n"; } } $getObjectRecordsCommentsDemo = new GetObjectRecordsCommentsDemo(); $getObjectRecordsCommentsDemo->printAccountInfo();