Nurama Developers
Projects

Get the public audit report for a project

Returns a paginated list of project assets that are or have been publicly exposed — either via a `PublicAssetLink` (direct download link) or via membership in a `Public` file system. Requires `canGetPublicAudit` (project/workspace owners and admins).

GET
/projects/{projectId}/public-audit

Returns a paginated list of project assets that are or have been publicly exposed — either via a PublicAssetLink (direct download link) or via membership in a Public file system. Requires canGetPublicAudit (project/workspace owners and admins).

Authorization

bearerAuth
AuthorizationBearer <token>

In: header

Path Parameters

projectId*string

Unique ID of the project.

Formatuuid

Query Parameters

currentlyPublic?boolean

When true, returns only assets currently public — those with an active PublicAssetLink or membership in an active, non-expired public file system. When false (default), returns all assets that have ever been public.

Defaultfalse
page?integer

Page number for index pagination.

Range1 <= value
Default1
limit?integer

Number of results per page.

Range1 <= value <= 100
Default20

Response Body

application/json

application/json

application/json

curl -X GET "https://example.com/projects/497f6eca-6276-4993-bfeb-53cbbbba6f08/public-audit"
{  "page": 0,  "limit": 0,  "totalPages": 0,  "totalResults": 0,  "queryAt": 0,  "results": [    {      "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",      "name": "string",      "mediaType": "string",      "thumbnail": {        "keyPath": "string"      },      "creator": {        "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",        "firstName": "string",        "middleName": "string",        "lastName": "string",        "company": "string",        "userName": "string",        "displayName": "string",        "avatarId": "ac572b6e-802b-4b9e-a602-0786d4441e67",        "avatar": "01d8bd6c-6014-46aa-b5b1-14d337c9c779",        "color": "#ffffff",        "email": "user@example.com",        "isEmailVerified": false,        "hasPassword": false,        "allowOauthAutolink": true,        "mfaEnabled": false,        "mfaType": "totp",        "status": "active",        "accountType": "standard",        "globalRoles": [          "string"        ],        "preferences": {},        "language": "en",        "externalIds": {},        "lastSeen": "2019-08-24T14:15:22Z",        "hasUsedTrial": false,        "hasUsedDemo": false,        "hasSeen": [          "string"        ],        "awards": [          "staff"        ],        "createdAt": "2019-08-24T14:15:22Z",        "updatedAt": "2019-08-24T14:15:22Z"      },      "publicFileSystems": [        {          "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",          "title": "string",          "status": "active"        }      ],      "publicLinkCount": 0,      "hasActivePublicLink": true,      "everPublic": true,      "createdAt": "2019-08-24T14:15:22Z"    }  ]}