Skip to main content

Browse Content for subclient

API can be used to browse contents for adding or updating contents of a NAS subclient

Request Body
  • clientId integer required

    Client ID of NAS

  • browsePath string required

    Browse Path for NAS data. Start from /

Responses

OK


Schema
  • clientId integer

    Client ID of NAS

  • browsePath string

    Browse Path for NAS data. Start from /

  • browseList object[]

    List of contents available

  • size integer

    Size of the content

  • content string

    Content Name

  • isDirectory boolean

    Flag set if its a directory

POST /dobrowse/nas/subclientcontent    

Authorization

type: apiKeyname: Authtokenin: header

Request

Click Edit to configure Base URL
https://CommandCenterHostName/commandcenter/api
Security Scheme
token
Body

{
"clientId": 0,
"browsePath": "string"
}
curl -L -X POST 'https://CommandCenterHostName/commandcenter/api/DoBrowse/NAS/SubClientContent' \
-H 'Content-Type: application/json' \
-H 'Accept: application/json' \
-H 'Authtoken: <API_KEY_VALUE>' \
--data-raw '{
"clientId": 0,
"browsePath": "string"
}'