
Typesense DocumentGet
CertifiedFetch one document from Typesense
Typesense DocumentGet
Fetch one document from Typesense
Retrieves a single document by id from the specified collection.
type: io.kestra.plugin.typesense.DocumentGetExamples
Get a document from a Typesense DB
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
apiKey *Requiredstring
Typesense API key
Admin or search key used for this request; must allow access to the target collection
collection *Requiredstring
Collection name
Name of the Typesense collection; value is rendered before each call
documentId *Requiredstring
Document id
Typesense document id to fetch; must exist in the collection.
host *Requiredstring
Typesense host
Hostname or IP address of the Typesense cluster node or load balancer
port *Requiredstring
Typesense port
TCP port for the Typesense HTTP API; 8108 is the Typesense default
https booleanstring
Use HTTPS
Default false (HTTP). Set to true to call Typesense over HTTPS/TLS
pluginDefaultsRef Non-dynamicstring
Reference (ref) of the pluginDefaults to apply to this task.
Outputs
document object
Fetched document
Document map returned by Typesense for the requested id.