Get a publication's access rights - Fluid Topics - Latest

Fluid Topics API Reference Guide

Category
Reference Guides
Audience
public
Version
Latest

This web service lets users get information about who (users and groups) can access a publication identified by its ft:publicationId. Three access rights levels exist:

  • PUBLIC: The document is accessible to all users: authenticated or anonymous.
  • AUTHENTICATED: The document is accessible only to authenticated users, whatever groups they belong to.
  • RESTRICTED: The document is accessible only to users from specific groups.
Method Endpoint
GET
/api/khub/documents/{publicationId}/rights
Path parameter Type Description
{publicationId} String The document's identifier.

Response bodies

{
  "accessLevel": "PUBLIC"
}
{
  "accessLevel": "AUTHENTICATED"
}
{
  "accessLevel": "RESTRICTED",
  "groups": [
    "internal",
    "partners"
  ]
}