Using Admin UI
This tutorial shows how to use the Admin UI to configure and use a database for Domino REST API. Download the database Demo.nsf
from Resources and follow along. Anything you can do with the Admin UI you can also do using Postman, curl, SwaggerUI, or similar tools. See how to do each of the tasks in this tutorial using Postman and Curl and using SwaggerUI.
Note
The screenshots may vary. The screenshots are based on latest Domino REST API snapshots. Make sure you're up-to-date.
Prepare database access
Download Demo.nsf
from Resources and save it in the Notes data directory.
Login
Go to the Domino REST API Admin UI.
For example
http://restapi.myhost.com:8880/admin/ui
, replacing the host with your Domino REST API's host.
On the login page, enter the administrator username and password, and then click LOG IN.
Landing
A successful login would lead to this landing page:
List available schemas
Click Database Management - Rest API in the landing page. This opens the Schema Management page.
Add a schema
-
In the Schema Management page, click Add Schema.
-
In the Add New Schema dialog, click Create Schema.
-
In the Create Schema dialog:
- Select
Demo.nsf
from the Database drop-down list. - Select an Icon.
- Enter a Schema Name and a Schema Description.
- Click Save Schema.
- Select
This creates a schema that defines what views, folders, document, and agents you can access through the Domino REST API.
Note
If the Only show schemas configured with scopes toggle is turned on, you can't see the created schema because it doesn't have a scope yet.
Create a scope
-
Go back to the landing page by clicking Overview.
-
Click Database Management - Activation. This opens the Scope Management page.
-
Click Add Scope. This opens a pane as shown below:
-
Under Available Schema, click
Demo.nsf
. This shows a list of schemas that usesDemo.nsf
as a database. - Select the schema you created earlier.
-
Under Add New Scope, fill in the form and click Add.
For the Server field, enter the name of the server the scope is available on, or leave it blank for the current server. The value of the entered name must be either the server's hierarchical name or in canonical format. See the following examples for reference:
- MyServer/MyOrg
- CN=MyServer/O=MyOrg
Note
Accessing a scope on a different server will always return an HTTP 302 response. The server to be redirected to will be dictated by the
Fully qualified Internet hostname
from the server connection document of the server that owns the scope.For the Maximum Access Level, the default is Editor. You can set it to another value to set the scope's maximum access anyone using the scope has.
Note
The Maximum Access Level prevents an app that has inherited a user's access rights when the user grants the app access from unauthorized altering of schemas or access control lists. To know more about what each access level allows and to whom the access level is assigned, see Access levels in the ACL.
You can use the scope to access a schema via the Domino REST API. One NSF can be made available under more than one scope, such as with different security settings.
Manage created schema
Go back to the Schema Management page, and click the schema you created earlier. This takes you to the page shown below:
This page allows you to set various configurations to your schema.
Manage database forms
- Click Database Forms from the menu bar. This lists all the forms available for the schema.
-
Select the form that you want to activate, click the corresponding menu icon beside the form's status, and then select Activate.
Tip
Clicking the menu icon and selecting Deactivate corresponding to a form deactivates the form. In the Reset Form dialog, click Yes to confirm.
To make changes to the configured form:
- On the Database Forms tab, click the pencil icon corresponding to the configured form that you want to edit to load the form Access Mode page showing the
default
access mode. -
Under Show fields from, hover over a field item and click the + icon to add the field in the form. Repeat this for all the fields you want to add.
-
Set the Read or Write access formula for each of the fields in the form.
- Click Save.
Manage database views
- Click Database Views from the menu bar. This lists all the views for the selected database.
-
Select the view that you want to activate, and then click the corresponding Active option under Status.
Tip
Clicking the Inactive option corresponding to a view deactivates the view. On the Reset Views Columns dialog, click Yes to confirm deactivation of the view.
Manage database agents
-
Click Database Agents from the menu bar. This lists all the agents for the selected database.
-
Select the agent you want to activate, and then click the corresponding Active option under Status.
Tip
Clicking the Inactive option corresponding to an agent deactivates the agent.
Logout
To log out, click the profile icon and then select Sign Out.
Additional information
Refer to the SwaggerUI tutorial for a UI-driven tutorial for creating a document and more.