Introduction

Cloudpress allows you to set additional field values when exporting content to Contentful. This document gives you more information on the Contentful field support in Cloudpress.

Please refer to the Export additional fields to your CMS documentation for information on specifying the values when exporting from Google Docs and Notion.

Field names

When updating additional field values during export, you will need to specify the name of a field in Contentful for which you want to set a value. The field name you supply to Cloudpress must be the Field ID for a field in your Content model in Contentful. Open the definition of the relevant Content model in Contentful, and click on the Edit link next to the field.

Navigate to the field settings

The Field ID is displayed on the field settings dialog. The correct name you must use in the example below will be slug.

Copy the field ID from Contentful

Field types and allowed values

When you create a field in Contentful, you need to specify the field type. The field type can be seen on the Content model, next to the name of the field:

View the field types for your content model

Cloudpress supports updating values for the following field types:

Field typeAllowed values
Short textAny text value
Long textAny text value
IntegerA text value representing a number, e.g. 123
DecimalA text value representing a decimal, e.g. 1.23
Date & TimeA text value representing a date in https://en.wikipedia.org/wiki/ISO_8601, e.g. 2022-09-24T09:24:53
BooleanA text value represents a boolean value. The value must be either true or false
Short text, listA text value representing a single item (e.g. Travel) or a list of items, delimited by a semicolon (;), e.g. Travel; Shopping.
ReferenceA text value with the id of the referenced entry. If the field is configured with a validation rule that limits the referenced entry to specific entry types, you can also use the title of the referenced entry. See more detail below.
References, manyA text value with the id of the referenced entry. You can use a semicolon (;) to separate multiple entries, e.g. Category 1; Category 2. If the field is configured with a validation rule that limits the referenced entry to specific entry types, you can also use the title of the referenced entry. See more detail below.
MediaAn image value

Non-supported field types

Currently, Cloudpress does not support updating ”Rich text” and ”Media, many files” field types.

Working with referenced entries

As mentioned above, when working with the Reference and References, many field types, you can use either the id of referenced entry or the title of the referenced entry. Let’s look at these in more detail.

“Reference” field type

Suppose we have a “Blog Post” model that is defined as follows:

Blog post model with a reference to the Author content type

Note that we have an “Author” field configured as a Reference field. Drilling into the settings of this field, you can notice that the field is configured with a validation rule that limits the references entry to Authors.

Validation settings for the Author field

Now, let’s look at the Author model. You can see that the model has Name field configured as the entry title.

The Name field on the Author content type

In this case, when updating the author field in the Blog Post, the value can be either the id or name of an author.

For example, let’s say we have the following author entries in Contentful.

IdName
2h06k81RVAAI9R0N6GsbWFPeter Parker
pqI6NaSl9sW6bOr3fZzNMJames Earl Jones

If you want to set the author to Peter Parker, you can set the value for the author field to either 2h06k81RVAAI9R0N6GsbWF or Peter Parker.

“References, many” field type

The “References, many” field type works similar to the normal “Reference” field type discussed above, except that you can set the value to multiple entries by separating them with a semicolon (;).

Let’s look at our “Blog Post” model from before:

The Categories field on the Blog Post model

Note that we have a “Categories” field configured as a “References, many” field. Drilling into the settings of this field, you can notice that the field is configured with a validation rule that limits the references entry to Categories.

The validation rules for the Categories field

Now, let’s look at the “Category” model. You can see that the model has a “Name” field configured as the entry title.

The definition of the Category content type

In this case, when updating the categories field in the “Blog Post”, the value can be either the id or name of a category.

For example, let’s say we have the following category entries in Contentful.

IdName
l6sfqcZGhxgREl9UB0cKoTravel
6doYzrj2D79n6tYJ2lsOZdAsia

If you want to set the categories field to “Travel”, you can set the value to either l6sfqcZGhxgREl9UB0cKo or Travel. If you want to set the categories field to both categories, you can set the value to either l6sfqcZGhxgREl9UB0cKo; 6doYzrj2D79n6tYJ2lsOZd, or Travel; Asia.

You can even mix the use of id and name. For example, you can set the value to l6sfqcZGhxgREl9UB0cKo; Asia, which will assign both categories to the field.