Waiting for engine...
Skip to main content

Boomi MFT - File Sharing API Reference (1.16) - Favorites

Toggle Pane

Download OpenAPI Specification: Download

Favorites Service

The Favorites REST Web Services provide endpoints for managing and retrieving user-designated favorite items within the file system. These APIs enable the addition or removal of specific files or folders from the favorites list by their unique identifiers, as well as the retrieval of collections of favorite files, folders, or both, with optional filtering parameters.

Add Folder to Favorites

Add folder with the specified id to favorites.

Invocation Scenarios

Mark folder whose ID is specified in URL as favorite

Authorizations:
SessionAuth

Responses

Delete Folder from Favorites

Remove folder with the specified ID from favorites.

Authorizations:
SessionAuth

Responses

Add File to Favorites

Add file with the specified ID to favorites.

Authorizations:
SessionAuth

Responses

Delete File from Favorites

Remove file with the specified ID from favorites.

Authorizations:
SessionAuth

Responses

Retrieve All Content in Favorites

Retrieves a collection of file and folder information structures marked as favorites. Result can be filtered by options.

Authorizations:
SessionAuth

Responses

Response Schema: application/json
Array of objects (ThruPublicFileInfo)

Collection of file information structures

Array of objects (ThruPublicFolderInfo)

Collection of folder information structures

Response samples

Content type
application/json
{
  • "Files": [
    • {
      }
    ],
  • "Folders": [
    • {
      }
    ]
}

Retrieve Files in Favorites

Retrieves a collection of file information structures marked as favorites. Result can be filtered by options.

Authorizations:
SessionAuth

Responses

Response Schema: application/json
Array of objects (ThruPublicFileInfo)

Collection of file information structures

Array of objects (ThruPublicFolderInfo)

Collection of folder information structures

Response samples

Content type
application/json
{
  • "Files": [
    • {
      }
    ],
  • "Folders": [
    • {
      }
    ]
}

Retrieve Folders in Favorites

Retrieves a collection of folder information structures marked as favorites. Result can be filtered by options.

Authorizations:
SessionAuth

Responses

Response Schema: application/json
Array of objects (ThruPublicFileInfo)

Collection of file information structures

Array of objects (ThruPublicFolderInfo)

Collection of folder information structures

Response samples

Content type
application/json
{
  • "Files": [
    • {
      }
    ],
  • "Folders": [
    • {
      }
    ]
}