Get a Favorite Folder

get

/rest/v16/favoriteFolders/{id}

This endpoint returns a favorite folder available to the user.

Request

Supported Media Types
Path Parameters
Query Parameters
Back to Top

Response

Supported Media Types

Default Response

Body ()
Root Schema : Favorite Folders
Type: object
Title: Favorite Folders
Show Source
Nested Schema : Folder Type
Type: object
Title: Folder Type
Indicates type of folder
Show Source
  • Title: Display Value
    Translated display name of the type for which fixed list of values can be defined.
  • Title: Id
    Primary Key of the fixed list of value resource.
  • Title: Lookup Code
    Language independent code of the fixed list of value.
Back to Top

Examples

The following example shows how to retrieve the specified favorite folder by submitting a GET request to the REST resource using cURL. For more information about cURL, see Use cURL.

curl - X GET - i - H "Authorization: Basic dXNlcm5hbWU6cGFzc3dvcmQg" - H "Content-type: application/json"
https://sitename.oracle.com/rest/v16/favoriteFolders/123

Response Body Sample

{
  "id": 123,
  "name": "SUV List",
  "isShared": true,
  "canAdd": true,
  "dateAdded": "08/17/2021 2:00 AM",
  "dateModified": "08/17/2021 2:00 AM",
  "createdBy": "john.jones",
  "links": ...
}
Back to Top