deleteObjectRecordTag

/api/v2/objectrecords/{objectRecordId}/tags/{rawTag}

All authorized users can delete a tag from a public object record in eHive. A request to the /api/v2/objectrecords/{objectRecordId}/tags/{rawTag} resource will return an ObjectRecordTag JSON object.


Try the deleteObjectRecordTag 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 Value Required Description
objectRecordId Integer Path 64-bit signed two's complement YES The id for the Object Record you wish delete the tag from.
rawTag String Path Max. 100 characters YES The text value representing a tag you wish to delete from the Object Record.

	

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

  1. Download the Java API client library.
  2. Create a new Java class file.
  3. Add the Java API client library JAR to your classpath.
  4. 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

  1. 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);
  2. Invoke the deleteObjectRecordTag() method and assign the return value to an ObjectRecordTag domain object as follows:
    ObjectRecordTag deletedObjectRecordTag = eHiveApi.deleteObjectRecordTag(2509L, tag);
  3. Access the ObjectRecord information using the ObjectRecordTag domain object's getter method.
    String deletedTag = deletedObjectRecordTag.getRawTagName();
    System.out.println(deletedTag);

View the full example below.

import com.ehive.api.EHiveApi;
import com.ehive.api.domain.tags.ObjectRecordTag;
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 DeleteObjectRecordTag {
	
	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);
		
		//Create a new ObjectRecordTag object
		ObjectRecordTag objectRecordTag = new ObjectRecordTag();
		objectTag.setCleanTagName("Mermaid");
		
		// Invoke an API method
		ObjectRecordTag deletedObjectRecordTag = eHiveApi.deleteObjectRecordTag(objectRecordId, objectRecordTag);
		
		// Print some output using the returned object records tag cloud
		printObjectRecordInfo(deletedObjectRecordTag);
		
	}
	
	private static void printObjectRecordInfo(ObjectRecordTag objectRecordTag) {
		StringBuilder stringBuilder = new StringBuilder();
		
		stringBuilder.append("Tag deleted: " + objectRecordTag.getRawTagName() + "\n");
		
		System.out.println(stringBuilder.toString());
	}
}
		


PHP

Prerequisites

  1. Download the PHP API client library.
  2. Create a new php script file.
  3. Add EHiveApi.php from the PHP API client library to your include path.
  4. 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

  1. Instantiate an EHiveApi object. The EHiveApi class contains all of the functions available to you in the API.
  2. 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(deleteObjectRecordTagDemo::$clientId, 
    						 deleteObjectRecordTagDemo::$clientSecret, 
    						 deleteObjectRecordTagDemo::$trackingId);
  3. Invoke the deleteObjectRecordTag() method and assign the return value to a variable as follows:
    $deletedObjectRecordTag = $eHiveApi->deleteObjectRecordTag(2509, $tag);
  4. Access the information on the ObjectRecord object.
    echo $deletedObjectRecordTag->rawTagName;

View the full example below.


require_once '../../lib/ehive_api_client-php-1.0.0/EHiveApi.php';
require_once '../../lib/ehive_api_client-php-1.0.0/domain/objectrecordtags/ObjectRecordTag.php';

class deleteObjectRecordTagDemo {
	
	private static $clientId = "...5935";
	private static $clientSecret = "...4c4b";
	private static $trackingId = "...eaca";
	
	
	private static $objectRecordId = 2509;
	
	
	public function printAccountInfo() {
		
		// Instantiate the EHiveApi object
		$eHiveApi = new EHiveApi(deleteObjectRecordTagDemo::$clientId, 
						 		 deleteObjectRecordTagDemo::$clientSecret, 
						 		 deleteObjectRecordTagDemo::$trackingId);
		
		//Create a new ObjectRecordTag object
		$objectRecordTag = new ObjectRecordTag();
		$objectRecordTag->rawTagName = "Mermaid";
		
		// Invoke an API method
		$deletedObjectRecordTag = $eHiveApi->deleteObjectRecordTag(deleteObjectRecordTagDemo::$objectRecordId, $objectRecordTag);
		
		// Print some output using the returned record tag object
		if ($deletedObjectRecordTag->rawTagName) {
			echo "Tag deleted: ";
			echo $deletedObjectRecordTag->rawTagName;
		}
		
		echo "\n\n";
		
	}
}

$deleteObjectRecordTagDemo = new deleteObjectRecordTagDemo();

$deleteObjectRecordTagDemo->printAccountInfo();