Overview
A page in Domo is a screen where you can view a “collection” of data, which is typically displayed in cards. You use a page to organize, manage, and share content to other users in Domo.

Page use cases
The Page API allows you to extend Domo’s platform to support multiple use cases:
- Automate external processes to administer and manage content within Domo
- Easily copy pages, page collections, or cards within an instance
- Grant access to groups or users to a page
- Lock or unlock the capability to edit a page’s information or content.
Quickstart
Creating a new page in Domo, updating the page layout by adding collections for cards, and then sharing the new page with users and groups requires three steps.- Create a page
- Create page collections
- Share a page with users or groups
NOTE: In order to utilize this Quickstart you will need to obtain an access token or you can leverage any of Domo’s SDKs which will also handle authentication.
Step 1: Create a page
The first step to managing content in Domo is to create a page. When initially creating a new page, you can automatically add existing cards and grant access to users and groups within the initial request. This code creates a page via the Page API:
Sample Request
See this sample request in Java, Python.Sample Response
page_id value to page name in your own database to utilize when creating page collections or making updates to the page’s content.
Step 2: Create a page collection
Now that you’ve created a page and added cards, you can now organize the page’s content into page collections. NOTE: In order to add cards to a page collection, the cards must already exist on the page. To add a card to the page, you may either add cards when you create or update the Page via the API.
Sample Request
See this sample request in Java, Python.Returns
Returns the parameter of success or error based on the page ID being valid.Sample Response
Step 3: Share page with users or groups
When you share a page with a user, the page itself is added to the page tab row in the user’s personalized Domo view, and the name of the page is added to the user’s Pages listing in the People tab. When you share a page with a group, the page is added to the Domo view of every member of that group, and the name of the page is added to the group’s Content Accessible by this Group listing in the Groups tab. Users you’ve shared with have access to the page and all the cards in it (unless you restrict access to specific cards in the page using the Share dialog). In order to share a page with either a group or user, the
visibility object needs to be added as a parameter with either an array of group_ids or user_ids you wish to grant access.