Create content items.

Use the /content endpoint to create content. A content type must be specified through the typeId property. You cannot create content without a content type.

Example:

Creates a readied content that contains the name and birthday of a person.

{
  "name": "Person",
  "typeId": "b0798e67-3da2-48b4-b044-016495fa3ead",
  "status": "ready",
  "elements": {
    "name": {
      "elementType": "text",
      "value": "Thomas Watson"
    },
    "birthday": {
      "elementType": "datetime",
      "value": "1874-02-17T00:00:00Z"
    }
  }
}


User roles: admin, manager, editor

Language
Click Try It! to start a request and see the response here!