Table of Contents

Search

  1. Preface
  2. Informatica Intelligent Cloud Services REST API
  3. Platform REST API version 2 resources
  4. Platform REST API version 3 resources
  5. Data Integration REST API
  6. File Ingestion and Replication REST API
  7. Streaming Ingestion and Replication REST API
  8. Model Serve REST API
  9. RunAJob utility
  10. ParamSetCli utility
  11. REST API codes
  12. REST API resource quick references

REST API Reference

REST API Reference

Creating a project

Creating a project

Create projects to organize your assets.

POST request

To create a project, send a POST request using the following URI:
/public/core/v3/projects
You can create a maximum of 500 projects using
Informatica Intelligent Cloud Services
REST API.
Include the following information:
Field
Type
Required
Description
name
String
Yes
Name of the project.
description
String
-
Description of the project.

POST response

If successful, returns the projects object with the following details:
Field
Type
Description
id
String
Project ID.
name
String
Project name.
description
String
Project description.
updatedBy
String
User who created the project.
updateTime
String
Date and time the project was created.

POST example

To create a project, you might send a request similar to the following example:
POST <baseApiUrl>/public/core/v3/projects Content-Type: application/json Accept: application/json INFA-SESSION-ID: <sessionId> { "name":"Orders", "description": "Orders from all regions" }
You might receive a response similar to the following example:
{ "id": "kTKQG4Kv3uhgQleaOoUbWu", "name": "Orders", "description": "Orders from all regions", "updatedBy": "scotty@infa.com", "updateTime": "2022-04-12T23:40:40.395Z" }

0 COMMENTS

We’d like to hear from you!