Tutorial Nuaudit can reduce the cost of building and maintaining an audit trail. Give your customers the power by embedding the Nuaudit directly within your application UIs.
Get started# Nuaudit is a managed audit trail designed to help organisations meet security and compliance requirements.
Step 1: Create a Trail# The first building block in Nuaudit is a Trail . A Trail is a list of Records , which track activity in your applications.
In a single-tenant environment there is typically one Trail per application. In a multi-tenant environment, such as a SaaS application, typically there is a Trail per customer.
Trails can be created via the Nuaudit console or via the Nuaudit API .
👉
Authenticated users can use the API without providing an API Key.
Creating a Trail via the console# Navigate to Trails in the console.
Select Create Trail .
Enter a name for your trail and save.
Creating a Trail via the API# Navigate to Create Trail in the API documentation.
Enter the organization ID. This can be found from the List Organizations API or via Organizations in the console.
Create the trail.
Collapse operation Collapse operation POST ​/{organization_id}​/trails Create Trail organization_id * required string ( path ) 744a37dsampleorganization01294b8 { "name": "Nuaudit Introduction", "description": "Create a new trail" } Execute Collapse operation Collapse operation Collapse operation Collapse operation Collapse operation Collapse operation Collapse operation Collapse operation Collapse operation Collapse operation Collapse operation
Step 2: Submit Records# Records hold information about who , what , when , where and how a change was made within your application.
Records can only be created via the API.
Submitting a Record via the API# Navigate to Create Record in the API documentation.
Enter the organization ID.
Enter the trail ID. This can be found from the List Trails API or via Trails in the console.
Submit a Record.
👉
Make sure to include a type and an id in the record submission. These are the default fields to index. Index Settings can be changed in the Organization Settings view.
Collapse operation Collapse operation Collapse operation POST ​/{organization_id}​/trails​/{trail_id}​/records Create Record organization_id * required string ( path ) 744a37d0129ff920899a28a9389bf4b8 trail_id * required string ( path ) 6a98547d91d309101dd741d2d1551916 { "actor_record": { "data": { "type": "human", "id": "fry", "email": "fry@example.com", "ip": "127.0.0.1" } }, "resource_record": { "data": { "type": "artwork", "id": "pricelessvase", "year": 1750, "weight": "25kg" } }, "description": "Fry added Vase to Collection" } Execute Collapse operation Collapse operation Collapse operation Collapse operation Collapse operation Collapse operation Collapse operation Collapse operation Collapse operation Collapse operation
Step 3: View Results# Navigate to Trails in the console.
View the record.
Records Date Description Resource Actor 9:22:20 PM GMT+10:00 22 minutes ago Fry added Vase to Collection pricelessvase artwork fry human Click on the actor to view actor details.
Click on the resource to view resource details.
👉
The actor is who the record applies to. The resource is what the record applies to.