List inherited folder referrers

Lists the domains a folder inherits from its parent folders.

Recent Requests
Log in to see full request history
TimeStatusUser Agent
Retrieving recent requests…
LoadingLoading…

GET /library/{library_id}?action=folder_refer_inherited

Lists the domains a folder inherits from its parent folders, walking up the hierarchy. Use it to answer "why is this subfolder protected when I never configured it?".

🚧

action=folder_refer_inherited is required

Both action and folder_id are required query parameters.

📘

Authorization

Requires a valid API token in the Authorization header (without Bearer prefix). The library_id must belong to the authenticated user.

HTTP Method & Path

GET /library/{library_id}?action=folder_refer_inherited&folder_id={folder_id}

Base URL: https://api-v2.pandavideo.com.br

Authentication Requirements

HeaderValue
AuthorizationYour Panda API token (no Bearer prefix)

Path Parameters

NameTypeRequiredDescription
library_idstring (uuid)yesLibrary ID owned by the authenticated user

Query Parameters

NameTypeRequiredDescription
actionstringyesFixed value: folder_refer_inherited
folder_idstring (uuid)yesSubfolder whose inherited domains you want to list

Response

Success Response (200)

Same shape as List folder referrers. Each item's origin.id tells which folder the domain comes from.

{
  "refers": [
    {
      "id": "789e4567-e89b-12d3-a456-426614174999",
      "url": "course.mysite.com",
      "type": "ALLOW",
      "status": "active",
      "origin": { "type": "folder", "id": "parent-folder-uuid" }
    }
  ]
}
📘

Reading the result

origin.id different from the folder you queried means the domain was inherited from that parent folder. Subfolders inherit from their parent folder — not from the library-level list.

Error Responses

StatusWhen
400Missing or unknown action
404Folder not found
500Internal error

Example Usage

cURL

curl -X GET \
  "https://api-v2.pandavideo.com.br/library/{library_id}?action=folder_refer_inherited&folder_id={subfolder_id}" \
  -H "Authorization: $PANDA_API_TOKEN"

Related

  • Domains set directly on the folder: GET /library/{library_id}?action=folder_refer
Path Params
uuid
required

Library ID owned by the authenticated user

Query Params
uuid
required

Folder to inspect

Response

Language
Credentials
Header
LoadingLoading…
Response
Click Try It! to start a request and see the response here! Or choose an example:
application/json