Typesense DocumentGet

Typesense DocumentGet

Certified

Fetch one document from Typesense

Retrieves a single document by id from the specified collection.

yaml
type: io.kestra.plugin.typesense.DocumentGet

Get a document from a Typesense DB

yaml
id: typesense_get_document
namespace: company.team

tasks:
  - id: get_document
    type: io.kestra.plugin.typesense.DocumentGet
    documentId: "0"
    apiKey: "{{ secret('TYPESENSE_API_KEY') }}"
    port: 8108
    host: localhost
    collection: Countries
Properties

Typesense API key

Admin or search key used for this request; must allow access to the target collection

Collection name

Name of the Typesense collection; value is rendered before each call

Document id

Typesense document id to fetch; must exist in the collection.

Typesense host

Hostname or IP address of the Typesense cluster node or load balancer

Typesense port

TCP port for the Typesense HTTP API; 8108 is the Typesense default

Use HTTPS

Default false (HTTP). Set to true to call Typesense over HTTPS/TLS

Reference (ref) of the pluginDefaults to apply to this task.

Fetched document

Document map returned by Typesense for the requested id.