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

DELETERECORD Web Service

DELETERECORD Web Service

The DELETERECORD web service indicates to read the input data and delete the matching records from the repository. Before you run the DELETERECORD web service, run the GETRECORDLAYOUT web service to get the layout for the input data in the JSON format based on the configuration file. Based on the layout, you can specify the input data for the DELETERECORD web service.

Request URL

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

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.
Content-Type
Format of the request body. The supported format is JSON. Specify
application/json
as the header value.

Request Body

Use the request body to specify the input data for the DELETERECORD web service based on the layout that the GETRECORDLAYOUT web service returns.
The following sample body contains a record that you want to delete:
{ "keyData":{ "LMT_SOURCE_NAME":"AML", "ROWID":"0000300001" }, "record":{ }, "resultCount":0, "messages":{ } }

Sample Response

The following sample response shows a record that the DELETERECORD web service submits for processing:
{ "keyData":{ "LMT_SOURCE_NAME":"AML", "ROWID":"0000300001" }, "record":{ }, "resultCount":1, "messages":{ "Message.1":"Record submitted for Processing" } }

0 COMMENTS

We’d like to hear from you!