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 |
|
| Path parameter | Type | Description |
|---|---|---|
{publicationId} |
String | The document's identifier. |
It is necessary to provide an Ft-Calling-App value when using Fluid Topics web services. See Fluid Topics calling app.
Response bodies
{
"accessLevel": "PUBLIC"
}
{
"accessLevel": "AUTHENTICATED"
}
{
"accessLevel": "RESTRICTED",
"groups": [
"internal",
"partners"
]
}