SDK
SDK C# v2.x
2

GetAsync #

Gets a document.

Arguments #

Copied to clipboard!
public async Task<JObject> GetAsync(
  string index, 
  string collection, 
  string id);


Argument Type Description
index
string
Index name
collection
string
Collection name
id
string
Document ID

Return #

A JObject representing the document content.

Property Type Description
_id
string
Document ID
_source
JObject
Document content

Exceptions #

Throws a KuzzleException if there is an error. See how to handle errors.

Usage #

Copied to clipboard!
try {
  await kuzzle.Document.CreateAsync(
    "nyc-open-data",
    "yellow-taxi",
    JObject.Parse(@"{""capacity"": 4}"),
    id: "some-id");
  JObject response =
    await kuzzle.Document.GetAsync("nyc-open-data", "yellow-taxi", "some-id");
  Console.WriteLine(response.ToString());
  /*
  {
    "_id":"some-id",
    "_version":1,
    "_source":{
      "capacity":4,
      "_kuzzle_info":{
        "author":"-1",
        "createdAt":1538402859880,
        "updatedAt":null,
        "updater":null
      }
    }
  }
  */
  Console.WriteLine("Success");
} catch (KuzzleException e) {
  Console.Error.WriteLine(e);
}