Informatica MDM Cloud SAS REST API Deep Dive

A structured program to understand and utilize REST APIs in Informatica MDM Cloud SAS for interacting with master data entities and workflows. Includes installation and configuration of Postman.

Powered byDeedit Logo

Program Modules

📚

REST API Fundamentals in MDM SAS

Understanding REST APIs, their architecture, and how they are used in Informatica MDM Cloud SAS.

REST API Overview

Weekly

Explore the basic concepts of REST APIs, including request-response cycle, HTTP methods, and status codes.

REST determines how the API looks like.

reflection

Authentication (OAuth 2.0)

Weekly

Learn about OAuth 2.0 authentication in Informatica MDM Cloud SAS.

Informatica MTM cloud uses OOTH 2.0 for authentication

quiz

HTTP Methods (GET, POST, PUT, PATCH, DELETE)

Weekly

Understand the different HTTP methods and their use cases in CRUD operations.

Get is for the request, post is for the response, put is for the updation.

simulation

REST API V2 vs V3

Weekly

Understand the difference between REST API V2 and REST API V3.

Version two supports the XML and JSON calls and version three it just supports JSON calls.

quiz
🛠️

Postman Installation and Configuration

Detailed steps to install, configure, and use Postman for interacting with MDM SAS REST APIs.

Download Postman

Weekly

Download Postman from the official website.

We can download this postman from the postman website.

simulation

Install Postman

Weekly

Install Postman on your local machine by following the on-screen instructions.

Click on this the installer and then follow the instructions which is present on the screen.

simulation

Configure Postman for Cloud SAS

Weekly

Configure Postman by creating a new collection, adding requests, and setting up headers and authorization.

In a postman once we logged in we can create a new collection.

simulation
🚀

Performing REST API Operations

Execute various REST API operations such as search, read, create, update, and delete using Postman.

Get Session ID

Weekly

Obtain a session ID using the login API.

Get session ID using login API v3 submit the following post request with your credence.

simulation

Search API

Weekly

Use the Search API to retrieve data from MDM entities.

If I want to read any data from the customer 360 we can we can go on the search request right search request option.

simulation