Pushes records through the Pipeline, directly to an index. You can make the call synchronous by providing the watch parameter, for asynchronous calls, you can use the observability endpoints and/or debugger dashboard to see the status of your task.
If you want to leverage the pre-indexing data transformation, this is the recommended way of ingesting your records.
This method is similar to pushTask, but requires an indexName instead of a taskID. If zero or many tasks are found, an error will be returned.
addObject, deleteIndex, editSettingsYour Algolia application ID.
Your Algolia API key with the necessary permissions to make the request. Permissions are controlled through access control lists (ACL) and access restrictions. The required ACL to make a request is listed in each endpoint's reference.
Name of the index on which to perform the operation.
"ALGOLIA_INDEX_NAME"
When provided, the push operation will be synchronous and the API will wait for the ingestion to be finished before responding.
This is required when targeting an index that does not have a push connector setup (e.g. a tmp index), but you wish to attach another index's transformation to it (e.g. the source index name).
Which indexing operation to perform:
addObject: adds records to an index.
Equivalent to the "Add a new record (with auto-generated object ID)" operation.updateObject: adds or replaces records in an index.
Equivalent to the "Add or replace a record" operation.partialUpdateObject: adds or updates attributes within records.
Equivalent to the "Add or update attributes" operation with the createIfNoExists parameter set to true.
(If a record with the specified objectID doesn't exist in the specified index, this action creates adds the record to the index)partialUpdateObjectNoCreate: same as partialUpdateObject, but with createIfNoExists set to false.
(A record isn't added to the index if its objectID doesn't exist)deleteObject: delete records from an index.
Equivalent to the "Delete a record" operation.delete. Delete an index. Equivalent to the "Delete an index" operation.clear: delete all records from an index. Equivalent to the "Delete all records from an index operation".addObject, updateObject, partialUpdateObject, partialUpdateObjectNoCreate, deleteObject, delete, clear OK
Universally unique identifier (UUID) of a task run.
"6c02aeb1-775e-418e-870b-1faccd4b2c0f"
Universally unique identifier (UUID) of an event.
"6c02aeb1-775e-418e-870b-1faccd4b2c0f"
This field is always null when used with the Push endpoint. When used for a source discover or source validate run, it will include the sampled data of the source.
in case of error, observability events will be added to the response.
a message describing the outcome of the operation that has been ran (push, discover or validate) run.
Date of creation in RFC 3339 format.