SDK
SDK PHP v3.x
1

You are currently looking at the documentation of a previous version of Kuzzle. We strongly recommend that you use the latest version. You can also use the version selector in the top menu.

createDocument #

Create a new document in Kuzzle and instantiate a Document object.


createDocument(Document, [options], [callback]) #

Arguments Type Description
Document object Document object
options JSON object Optional parameters
callback function Optional callback

createDocument([id], content, [options], [callback]) #

Arguments Type Description
id string Optional document identifier
content JSON object Content of the document to create
options JSON object Optional parameters
callback function Optional callback

Options #

Option Type Description Default
volatile JSON object Additional information passed to notifications to other users null
queuable boolean Make this request queuable or not true
refresh string If set to wait_for, Kuzzle will wait for the persistence layer to finish indexing (available with Elasticsearch 5.x and above) undefined
ifExist string If the same document already exists: resolves to an error. Replaces the existing document if set to replace false

Return Value #

Returns the Collection object to allow chaining.


Callback Response #

Returns a Document object containing the newly created document.

Usage #

Copied to clipboard!
<?php
use \Kuzzle\Kuzzle;
use \Kuzzle\Document;
$documentId = 'foobar';
$documentContent = [
  'title' => 'foo',
  'content' => 'bar'
];
$kuzzle = new Kuzzle('localhost');
$dataCollection = $kuzzle->collection('collection', 'index');
try {
  $document = $dataCollection->createDocument($documentContent, $documentId);
  // $document instanceof Document
}
catch (ErrorException $e) {
}