Show examples in:
Create a new record

The payload to pass to create a new record always depends on the specific settings of its model and the fields it declares.

When creating a new record, you don't need to specify a value for every field of it's model, as the ones you don't specify will be set to the field's default value (if available), or null (which is a valid value for every type of field).

Example Basic example

Suppose our project contains a "Dog" model (ID: 1234, API key: dog) with the following fields:

Field API keyField type
nameSingle-line string (string)
breedSingle-line string (string)
descriptionMultiple-paragraph text (text)
ageInteger (integer)

We can create a new dog record like this:

import { buildClient } from "@datocms/cma-client-node";
async function run() {
// Make sure the API token has access to the CMA, and is stored securely
const client = buildClient({ apiToken: process.env.DATOCMS_API_TOKEN });
const record = await client.items.create({
item_type: { type: "item_type", id: "1234" },
name: "Buddy",
breed: "Labrador",
description: "Very friendly and calm.\nI love it.",
age: 4,
});
console.log(record);
}
run();

Different values for different field types

If you do want to provide an explicit value for a field, then each type of field requires a different type of value. Most of the field types require scalar values — ie. a Single-line string requires a string, an Integer field requires a number, etc:

{
// If the model has a `title` single-line string field...
"name": "Alfie",
// If the model has an `age` integer field...
"age": 4
// And so on :)
}

Some other fields, like Geo-location or Color fields, require objects instead of simple data types:

{
// If the model has a `location` field of type 'Geo-location'...
"location": { "latitude": 45.0703393, "longitude": 7.686864 },
// If the model has an `accent_color` field of type 'Color'...
"accent_color": { "red": 239, "green": 208, "blue": 156, "alpha": 255 }
}

We'll analyze in detail every different type of field that DatoCMS offers in the following examples.

Example Managing scalar fields
Example Adding assets to records
Example Links to other records
Example Modular content fields
Example Structured text fields

Localized fields

Fields can be localized. If that's the case, records need to express a value for multiple locales using an object, whose keys represent the locale itself.

If your model has the "All locales required?" option turned on, then you MUST express a field value for all environment's locales:

{
// If the model has a `title` single-line string field...
"name": {
"en": "Alfie",
"it": "Asso"
},
// If the model has an `color` field...
"age": {
"en": { "red": 255, "green": 0, "blue": 0, "alpha": 255 },
"it": { "red": 0, "green": 255, "blue": 0, "alpha": 255 }
}
// And so on :)
}
Example Localising content

Suppose our project primary environment is set up to have two different locales ("en" and "it"), and contains a "Dog" model (ID: 1234, API key: dog) with the following fields:

Field API keyLocalizedField type
nameSingle-line string (string)
ageInteger (integer)

On localized fields, records express a value for multiple locales using an object, whose keys represent the locale itself:

import { buildClient } from "@datocms/cma-client-node";
async function run() {
// Make sure the API token has access to the CMA, and is stored securely
const client = buildClient({ apiToken: process.env.DATOCMS_API_TOKEN });
const record = await client.items.create({
item_type: { type: "item_type", id: "1234" },
name: {
en: "Alfie",
it: "Asso",
},
age: {
en: 30,
it: 12,
},
});
console.log(record);
}
run();

Otherwise, you can just define a subset of them (as long as all localized fields express the exact same subset!):

{
// Even if the environment has many locales, since the model has the "All locales required?" option
// turned off, we can define only the Italian locale:
"name": {
"it": "Asso"
},
"age": {
"it": { "red": 0, "green": 255, "blue": 0, "alpha": 255 }
}
}
Example Localising content with a sub-selection of locales

If your model does not require all environment's locales to be present (that is the "All locales required?" option is turned off), then you can create a record defining only a subset of the environment's locales.

import { buildClient } from "@datocms/cma-client-node";
async function run() {
// Make sure the API token has access to the CMA, and is stored securely
const client = buildClient({ apiToken: process.env.DATOCMS_API_TOKEN });
const record = await client.items.create({
item_type: { type: "item_type", id: "1234" },
name: {
it: "Asso",
},
age: {
it: 12,
},
});
console.log(record);
}
run();

Field type values

Single-line string

The field accepts String values.

Multi-line text

The field accepts simple String values.

Boolean

The field accepts simple Boolean values.

Integer

The field accepts simple Integer values.

Float

The field accepts simple Float values.

Date

The field accepts String values in ISO 8601 date format (ie. "2015-12-29").

Date time

The field accepts String values in ISO 8601 date-time format (ie. "2020-04-17T16:34:31.981+01:00").

If you're on legacy timezone management, remember that when sending an ISO8601 datetime you should keep in mind that the system will ignore any provided timezone, and will use the project's timezone instead.

Color

The field accepts an object with the following properties:

PropertyRequiredType
redInteger between 0 and 255
greenInteger between 0 and 255
blueInteger between 0 and 255
alphaInteger between 0 and 255
JSON

The field accepts String values that are valid JSON.

Location

The field accepts an object with the following properties:

PropertyRequiredType
latitudeFloat between -90.0 to 90
longitudeFloat between -180.0 to 180
SEO

The field accepts an object with the following properties:

PropertyRequiredTypeDescription
titleStringTitle meta tag (max. 320 characters)
descriptionStringDescription meta tag (max. 320 characters)
imageUpload IDAsset to be used for social shares
twitter_card"summary", "summary_large_image"Type of Twitter card to use
no_indexBooleanWhether the noindex meta tag should be returned
Slug

The field accepts String values that satisfy the following regular expression: /^[a-z0-9_]+(?:\-[a-z0-9]+)*$/.

External video

The field accepts an object with the following properties:

PropertyRequiredTypeDescriptionExample
provider"youtube", "vimeo", "facebook"External video provider"youtube"
provider_uidStringUnique identifier of the video within the provider"vUdGBEb1i9g"
urlURLURL of the video"https://www.youtube.com/watch?v=qJhobECFQYk"
widthIntegerVideo width459
heightIntegerVideo height344
thumbnail_urlURLURL for the video thumb"https://i.ytimg.com/vi/vUdGBEb1i9g/hqdefault.jpg"
titleStringTitle of the video"Next.js Conf Booth Welcoming!"
Single-asset

The field accepts an object with the following properties:

PropertyRequiredTypeDescriptionExample
upload_idUpload IDID of an asset"3429022"
titleStringTitle for the asset, if you want to override the asset's default value (see Upload default_field_metadata)"From my trip to Italy"
altStringAlternate text for the asset, if you want to override the asset's default value (see Upload default_field_metadata)"Florence skyline"
focal_point{ x: Float, y: Float }, nullFocal point for the asset, if you want to override the asset's default value (see Upload default_field_metadata). Values must be expressed as Float between 0 and 1. Focal point can only be specified for image assets.{ "x": 0.34, "y": 0.45 }
custom_dataRecord<String, String>An object containing custom keys that you can use on your frontend projects{ "watermark_image": "true" }
Asset gallery

This field accepts an Array of objects with the following properties:

PropertyRequiredTypeDescriptionExample
upload_idUpload IDID of an asset"3429022"
titleStringTitle for the asset, if you want to override the asset's default value (see Upload default_field_metadata)"https://www.youtube.com/watch?v=vUdGBEb1i9g"
altStringAlternate text for the asset, if you want to override the asset's default value (see Upload default_field_metadata)"vUdGBEb1i9g"
focal_point{ x: Float, y: Float }, nullFocal point for the asset, if you want to override the asset's default value (see Upload default_field_metadata). Values must be expressed as Float between 0 and 1. Focal point can only be specified for image assets.{ "x": 0.34, "y": 0.45 }
custom_dataRecord<String, String>An object containing custom keys that you can use on your frontend projects{ "watermark_image": "true" }
Single link

This field accepts a String representing the ID of the linked record.

Multiple links

This field accepts an Array<String> representing the IDs of the linked records.

Modular content

When a record is being read, this field returns an Array<String> representing the IDs of the inner block records.

When a record is being created, this field must contain an Array of objects representing the inner block records:

Example:

[
{
"type": "item",
"attributes": {
// ... put your fields values here
},
"relationships": {
"item_type": {
"data": {
// the block model
"id": "435822",
"type": "item_type",
}
}
},
},
// ...
]

When a record is being updated, make sure to include the ID of the already existing block records, or if the block is not subject to any change, just pass its ID:

[
// we don't need to change anything to these two blocks, just pass their IDs:
"9862635",
"9862636",
// we want to change some field values for this block!
{
"id": "9862637",
"type": "item",
"attributes": {
// ... put the block fields to be changed here
},
"relationships": {
"item_type": {
"data": {
// the block model
"id": "435822",
"type": "item_type",
}
}
},
},
]
Single block

When a record is being read, this field returns a <String> representing the ID of the inner block record.

When a record is being created, this field must contain an object representing the inner block record:

Example:

{
"type": "item",
"attributes": {
// ... put your fields values here
},
"relationships": {
"item_type": {
"data": {
// the block model
"id": "435822",
"type": "item_type",
}
}
},
},
// ...

When a record is being updated, make sure to include the ID of the already existing block record, or if the block is not subject to any change, just pass its ID:

// we don't need to change anything to this block, just pass its ID:
"9862635"
// we want to change some field values for this block!
{
"id": "9862637",
"type": "item",
"attributes": {
// ... put the block fields to be changed here
},
"relationships": {
"item_type": {
"data": {
// the block model
"id": "435822",
"type": "item_type",
}
}
},
}
Structured text

This field accepts a Structured Text document.

When a record is being created, the item attribute of block nodes must be the entire block record instead of the ID:

Example:

{
"schema": "dast",
"document": {
"type": "root",
"children": [
{
"type": "block",
"item": {
"type": "item",
"attributes": {
// ... put your fields values here
},
"relationships": {
"item_type": {
"data": {
// the block model
"id": "435822",
"type": "item_type",
}
}
},
}
}
]
},
}

When a record is being updated, make sure to include the ID of the already existing block records, or if the block is not subject to any change, just pass its ID:

{
"schema": "dast",
"document": {
"type": "root",
"children": [
{
"type": "block",
// this block is not subject to any change, just pass its ID
"item": "34823428"
},
{
"type": "block",
// we want to change some field values for this block!
"item": {
"id": "34823424",
"type": "item",
"attributes": {
// ... put the block fields to be changed here
},
"relationships": {
"item_type": {
"data": {
// the block model
"id": "435822",
"type": "item_type",
}
}
}
}
}
]
}
}

Body Parameters

id  string  Optional
RFC 4122 UUID of record expressed in URL-safe base64 format
meta.created_at  Optional  string

Date of creation

meta.first_published_at  Optional  null, string

Date of first publication

item_type  Required  { type: "item_type", id: item_type.id }

The record's model

creator  Optional  { type: "account", id: account.id }, { type: "access_token", id: access_token.id }, { type: "user", id: user.id }, { type: "sso_user", id: sso_user.id }, { type: "organization", id: organization.id }

The entity (account/collaborator/access token/sso user) who created the record. It must be an object with type (e.g. 'account') and id properties.

Returns

Returns a item resource object.

Other examples

Example Tree-like structure

Suppose our project contains a "Menu Item" model (ID: 1234, API key: menu_item) that is configured to be organized as a tree, and has a single field:

Field API keyLocalizedField type
nameSingle-line string (string)

In this example we'll create a hierarchy of three records.

In tree-like collections, records can specify two additional fields, parent_id and position, so that they can express who is their parent record, and which is their position relative to its siblings:

import { buildClient } from "@datocms/cma-client-node";
async function run() {
// Make sure the API token has access to the CMA, and is stored securely
const client = buildClient({ apiToken: process.env.DATOCMS_API_TOKEN });
const parent = await client.items.create({
item_type: { type: "item_type", id: "1234" },
name: "Parent",
});
console.log(parent);
const child1 = await client.items.create({
item_type: { type: "item_type", id: "1234" },
name: "Child 1",
parent_id: parent.id,
position: 1,
});
console.log(child1);
const child2 = await client.items.create({
item_type: { type: "item_type", id: "1234" },
name: "Child 2",
parent_id: parent.id,
position: 2,
});
console.log(child2);
}
run();