Gets information from a specific folder in the Media Manager.
You can only call this method when authenticated as a Wix app or Wix user identity.
function getFolder(folderId: string): Promise<Folder>;
Folder ID.
import { folders } from "@wix/media";
async function getFolder(folderId) {
const response = await folders.getFolder(folderId);
}
This method doesn’t return any custom errors, but may return standard errors. Learn more about standard Wix errors.