REST API for File Server in Oracle Integration 3

Search for Users

get

{protocol}//{host}:{port}{basePath}/ic/api/fileserver/v1/users

Search for all users, those configured for File Server, or by group name

Request

Query Parameters

There's no request body for this operation.

Back to Top

Response

Supported Media Types
  • application/json

200 Response

Success
Body (
  1. schema
)
Root Schema : schema
Type: object
Read Only: true
Provides user search result
Show Source
Nested Schema : users
Type: array
Show Source
Nested Schema : userConfig
Type: object
describes user's fileserver metadata
Show Source
  • Read Only: true
    Computed home/landing folder. It can be different from homeDirectory when home type is none as user will derive home from one its group.
  • Read Only: true
  • Home directory or landing folder. Absolute path of the home folder when homeType is not 'None'
  • Allowed Values: [ "Default", "Custom", "None" ]
    The type of home folder the user has. 'Default' is /home/users/{username}. 'Custom' means use the path specified by homeDirectory. 'None' menas there will not be a home folder created for the user and the landing folder willbe determined by thier group membership.
  • Read Only: true
  • Read Only: true
  • Read Only: true
  • Read Only: true
  • publicKeyConfigured: boolean
  • Allowed Values: [ "not configured", "enabled", "disabled" ]
    User's status. 'disabled' users can have permissions set while still being prevented from accessing the server. 'not configured' users will not have any associated permissions or other metadata.
  • userGroups
    Read Only: true
Nested Schema : userGroups
Type: array
Read Only: true
Show Source

401 Response

Not authorized to get users

404 Response

Service not found

500 Response

Internal Server Error
Back to Top