Testing Management API
# help-with-umbraco
g
Hi, I trying out the management api by creating document, but having issue with entering data in fields. The document is created but all added fields have empty data, this an example of the data im sending:
Copy code
{
  "values": [
    {
      "culture": "sv-SE",
      "alias": "slug",
      "value": "contact-us"
    },
    {
      "culture": "sv-SE",
      "alias": "headline",
      "value": "Testing headline text"
    },
    {
      "culture": "sv-SE",
      "alias": "body",
      "value": "<p>testing tiptap editor</p>"
    }
  ],
  "variants": [
    {
      "name": "TestPage"
    }
  ],
  "parent": {
    "id": "64dec3e3-e46c-4c0a-bb04-12c89a45fb74"
  },
  "documentType": {
    "id": "9339ee78-b78c-454f-a933-0c138471f4fb"
  },
  "template": {
    "id": "27f371ee-e597-43fa-b4f4-8acba86de5ef"
  }
}
Anybody with the same issue?
3 Views