Table of Contents

Search

  1. Preface
  2. Introduction to Informatica MDM - Relate 360
  3. Linking Batch Data
  4. Tokenizing Batch Data
  5. Processing Streaming Data
  6. Creating Relationship Graph
  7. Loading Linked and Consolidated Data into Hive
  8. Searching Data
  9. Monitoring the Batch Jobs
  10. Troubleshooting
  11. Glossary

User Guide

User Guide

Get Entity Details Web Service

Get Entity Details Web Service

The Get Entity Details web service retrieves the details of a record that you specify.

Request URL

Use the POST method to run the Get Entity Details web service.
To run the Get Entity Details web service, use the following URL format:
http://<Host>:<Port>/<WAR File Name>/<Version Number>/<Configuration File Identifier>/GETENTITYDETAILS
For example:
http://localhost:8080/MDMBDRMSYS/
v5.0
/SYS/GETENTITYDETAILS

Request Header

Use the request header to specify the following headers:
Token
Required if you secure the RESTful web services. Authentication token that the Authenticate web service returns. If the token is not valid or you do not specify the
Token
header, the web service request uses the
Authorization
header.
Authorization
Required if you have secured the RESTful web services, but optional if you specify the
Token
header.
Type of authentication and the user credentials in the Base64 format. The RESTful web services use the HTTP basic authentication. Use the following format to specify the value for the
Authorization
header:
Basic <Encoded User Credentials>
Basic
indicates the HTTP basic authentication, and
Encoded User Credentials
indicates the Base64 format of the user name and password separated by a colon. For example,
Authorization: Basic dGVzdDpUZXN0
Accept
Format of the response. The supported response format is JSON. Specify
application/json
as the header value.

Request Body

Use the request body to specify the parameters for the input record.
To specify the input record, use the following request body format:
{ "input":{ "source":"<Source Column Name>", "id":"<Primary Key Column>", "entityType":"<Entity Type>" } }
The request body format uses the following parameters:
Source Column Name
Source name of the input record.
Primary Key Column
Primary key column value of the input record.
Entity Type
Name of the business entity type to which the input record belongs.
The following sample request body specifies the input record that belongs to the Customer business entity type:
{ "input":{ "source":"CRM", "id":"10000005", "entityType":"Customer" } }

Sample Response

The following response shows the input record details:
{ "input":{ "entityType":"Customer", "source":"CRM", "id":"10000005" }, "output":{ "Address":"6625 The Corners Parkway", "FirstName":"David", "GroupNumber":"bdaed85a-dcf8-4330-9716-e53ee19478fb", "LMT_SOURCE_NAME":"CRM", "City":"Norcross", "Gender":"M", "Prefix":"", "Postcode":"30092", "Name":"David Atwood", "MaritalStatus":"", "Networth":"198", "Phone":"(404) 448-5210", "State":"GA", "Country":"United States", "LastName":"Atwood", "id":"10000005", "Age":"17" }, "debug":false, "resultCount":0, "messages":{ } }

0 COMMENTS

We’d like to hear from you!