2019.1

Table Of Contents
Finding Specific Data Entities in the Server
Problem
You want to find specific Data Entities stored within the PlanetPress Connect Server based on
a set of search criteria.
Solution
The solution is to create a request using the following URI and method type and submit it to the
server via the Entity REST service:
Find Data Entity
/rest/serverengine/entity/find
PUT
Example
HTML5
e-find-data-entity.html
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Find Data Entity Example</title>
<script src="../../common/lib/js/jquery-
3.2.1.min.js"></script>
<script src="../../common/js/common.js"></script>
<script src="js/e-find-data-entity.js"></script>
<link rel="stylesheet" href="../../common/css/styles.css">
<link rel="stylesheet" href="css/styles.css">
</head>
<body>
<h2>Entity Service - Find Data Entity Example</h2>
<form>
<fieldset>
<legend>Search Parameters</legend>
<div>
<label for="entity">Entity Type:</label>
<select id="entity">
<option value="DATARECORDS">Data
Records</option>
Page 148