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. Mass Ingestion Files REST API
  7. Mass Ingestion Streaming 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 folder

Creating a folder

You can create a folder in the Default project or specify a different project.
You can create a maximum of 5000 folders using
Informatica Intelligent Cloud Services
REST API.

POST request

To create a folder in the Default project, use the following URI:
/public/core/v3/folders
To create a folder in a project other than the Default project, use one of the following URIs:
/public/core/v3/projects/<project ID>/folders
/public/core/v3/projects/name/<project name>/folders
Include the following information:
Field
Type
Required
Description
name
String
Yes
Name of the folder.
description
String
-
Description of the folder .

POST response

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

POST example

To create a folder in the Orders project, you might send a request similar to the following example:
POST <baseApiUrl>/public/core/v3/projects/name/Orders/folders Content-Type: application/json Accept: application/json INFA-SESSION-ID: <sessionId> { "name":"Northwest Orders", "description": "Orders from northwest offices" }
You might receive a response similar to the following example:
{ "id": "kTrYZ8fInr1Uw3ugQbOuWe", "name": "Northwest Orders", "description": "Orders from northwest offices", "updatedBy": "scotty@infa.com", "updateTime": "2022-04-13T18:20:40.325Z" }

0 COMMENTS

We’d like to hear from you!