When you need a model that is only privately accessible, you can adjust the configuration of your model, use a Private API Key, as well as the Content API to ensure privacy.
By default, Builder Page, Section, and Data models are publicly readable.
Tip: When setting a model to be private, consider whether you want all entries of that model to be private. If some of them need to be publicly readable, create a model specifically for private content entries.
To make a model private:
- Go to Models.
- Open your page model.
- Go to Advanced.
- Switch the Public Readable toggle to off.
- Click Save.
- Create content entries from this model for any that you'd like to be private.
The following video shows how to toggle off the Public Readable setting for a Page model, but you can change this setting on any kind of model.
To leverage a private model, you need to create a Private API Key in your Organization Settings. Follow the instructions in the Managing Private Keys section of the API Keys documentation.
When you have your Private API Key, continue with the instructions below.
Use the Content API with your Private API key with the following code, where you replace these values with your own:
modelName
yourPublicAPIKey
yourPrivateAPIKey
let apiUrl = 'https://cdn.builder.io/api/v3/content'
let modelName = 'private-page'
let content = await request(`${apiUrl}/${modelName}?apiKey=${yourPublicAPIKey}&limit=1&userAttributes.urlPath=/some-page`, {
headers: { Authorization: `Bearer ${yourPrivateAPIKey}` },
})
Next, pass the JSON to render as needed; for example as in this React snippet for a model named private-page
:
let page = content.results[0];
if (page) {
return <BuilderComponent model="private-page" content={page} />
}
Models are a foundational part of Builder that you can customize to countless use cases. For more information on what you can do with models, refer to the following documentation:
- Using Custom Fields: You can edit or create many kinds of custom fields on models with a variety of types.
- Targeting and Scheduling: Get the right content to the right people at the right time.