Show examples in:
    Update a record

    Updating record is very similar to creating a new one from scratch, so make sure to read that guide and all the examples for more details.

    When updating you can pass just the fields you want to change.

    Updating and version locking

    DatoCMS optionally supports optimistic locking. When updating an existing record, you can specify its current version within the appropriate meta property. DatoCMS compares this version with the current version stored to ensure that a client doesn't overwrite a record that has since been updated. If the version changed in-between, DatoCMS would reject the update with a 422 STALE_ITEM_VERSION error.

    For more information, take a look at the Javascript examples.

    Example Simple update operation
    Example Optimistic-locking update operation

    Working with block records

    Block records live inside of Modular Content, Structured Text and Single Block fields, which require different data structures as their value: while Modular Content is simply an array of blocks, Single Block accept only one block. Structured Text accepts a Structured text document, which in turn might contain a number of block nodes interspersed with textual content.

    We’ll get to some detailed examples for both fields below, but the general idea that applies to both of them is that to preserve the atomicity property of ACID transactions, DatoCMS prohibits you from creating/editing/deleting blocks directly; you always need to add/edit/remove blocks by performing a create/update operation on the record that embeds them, so:

    • If you want to add a block to a particular field, you need to add to the existing field value the new “fragment” related to the new block;
    • If you want to edit a block that’s already present in the field, you need to pass the whole field value and replace only the “fragment” related to such block, while keeping the rest unchanged;
    • If you want to remove a block that’s already present in the field, you need to pass the whole field value and only remove the "fragment” related to such block, while keeping the rest unchanged.

    Depending on the endpoints you're going to use, the “fragment” representing the block can be simply its ID, or a full JSON API object:

    EndpointHTTP request blocks representationHTTP response blocks representation
    GET /itemsN/AID
    GET /items?nested=trueN/AJSON
    resource object
    GET /item/
    N/AID
    GET /item/
    ?nested=true
    N/AJSON
    resource object
    POST /itemsJSON
    resource object
    ID
    PUT /items/
    ID or JSON
    resource object
    ID

    During an update operation, to reference a block:

    • when you want to make some changes to the content of a specific block, you pass the complete JSON
      resource object (complete with its existing id);
    • when you want to add a totally new block, you pass the complete JSON
      resource object (with no ID of course, as it’s a new object);
    • when you don’t want to make any change to an existing block, you can pass just the block ID (the update operation will be faster this way, as it won’t have to process it).
    Example Update a block record in a Modular Content field
    Example Reorder block records in a Modular Content field
    Example Add a block record in a Modular Content field
    Example Remove a block record in a Modular Content field

    Working with localized content

    Before diving in, the key concepts to remember are the following:

    • Localization is handled on a per-field basis. That is, in the same model, some fields can have a different value specified for each locale, and some others just a single (non-localized) value.
    • On localized fields, records express a value for multiple locales using an object, whose keys represent the environment’s locales.
    • The locales specified in a record must be coherent across each localized field. That is, if you have two localized fields, they must share the same locale keys. You cannot ie. specify locales en and it for the title field, and only en for the content field.
    • When a model contains one or more localized fields, it can enforce the presence of a value for all locales, or not.
    • Every user/API token is linked to a role, which in turn specifies which locales can be managed by the user/API token itself on a per-model level.

    Above we said that when you perform an update operation to a record, you can pass just the fields you want to change, and not all of them. When dealing with localized content, the only exception to this rule is when you have a model that does not enforce a value for every locale, and you want to add or remove a locale on a specific record. Only in this case, you are required to pass all localized fields in the payload to enforce a locales coherence between all the localized fields.

    Also, when you want to update the value for a specific localized field, you always need to pass an object containing the value for each locale you want to preserve, not just the one you might want to update, otherwise you’ll get an error.

    If your API token can only manage a subset of locales, during an update operation you are required not to include in the payload any other locales. In this case, the content for the locales you cannot control and that you won’t pass will be kept intact by the system.

    In the following table, you’ll find a recap showing the result of an update operation, depending on the API token permissions, the locales already present in a record, and the locales specified in the payload of the update operation itself:

    Role can manage content inRecord contains localized fields with content inPayload contains all localized fields with content inResult for the update operation
    EnglishEnglishEnglishEnglish is updated.
    English, ItalianEnglishEnglish, ItalianEnglish is updated.
    Italian is added.
    English, ItalianEnglish, ItalianEnglishEnglish is updated.
    Italian is removed.
    English, ItalianEnglish, ItalianEnglish, ItalianEnglish is updated.
    Italian is updated.
    English, Italian, FrenchEnglish, ItalianEnglish, FrenchEnglish is updated.
    Italian is removed.
    French is added.
    EnglishEnglish, ItalianEnglishEnglish is updated.
    Italian is preserved.
    English, ItalianEnglish, FrenchEnglish, ItalianEnglish is updated.
    French is preserved.
    Italian is added.
    English, ItalianEnglish, FrenchItalianEnglish is removed.
    French is preserved.
    Italian is added.
    Example Add a locale
    Example Remove a locale

    Body Parameters

    meta.created_at  Optional  string

    Date of creation

    meta.first_published_at  Optional  null, string

    Date of first publication

    meta.current_version  Optional  string  Example: "4234"

    The ID of the current record version (for optimistic locking, see the example)

    meta.stage  Optional  string, null

    The new stage to move the record to

    item_type  Optional  { 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.