DocumentGet ​Document​Get

yaml
type: "io.kestra.plugin.meilisearch.documentget"
yaml
id: meilisearch_get_flow
namespace: company.team

variables:
  id: a123
  index: pokemons
  host: http://172.18.0.3:7700/

tasks:
  - id: get_document
    type: io.kestra.plugin.meilisearch.DocumentGet
    index: "{{ vars.index }}"
    documentId: "{{ vars.id }}"
    url: "{{ vars.host }}"
    key: "{{ secret('MEILISEARCH_MASTER_KEY') }}"
Properties