Welcome to the Panopto Community

Please note: All new registrants to the Panopto Community Forum must be approved by a forum moderator or admin. As such, if you navigate to a feature that is members-only, you may receive an error page if your registration has not yet been approved. We apologize for any inconvenience and are approving new members as quickly as possible.

Is there any API can buck enroll users into different folders?

Is there any API can buck enroll users into different folders? For example, user 1, 2, 3 access to folder A, user 4, 5, 6 access to folder B.

Answers

  • Hi Yue,

    Yes, but with an important limitation:

    • There is no single “multi-folder matrix” bulk call (one request assigning different user lists to different folders).
    • You can bulk users per folder via SOAP AccessManagement:
    • GrantUsersAccessToFolder(auth, folderId, IEnumerable<Guid> userIds, role)

    So your example is done as 2 calls:

    1. folderId=A, userIds=[1,2,3]
    2. folderId=B, userIds=[4,5,6]

    I hope this helps.

    Thanks,

    Adis

Sign In or Register to comment.