CredentialsBefore using this method, retrieve your API key and the appropriate Sift URL for your environment. See Authentication.
/api/v2/ingest endpoint without pre-registering an ingestion config. Sift creates the asset and channels automatically if they do not already exist.
Example request
Request fields
asset_name
The name of the asset. If the asset does not exist, it will be created. Required.
run_id
The
run_id returned from a previous CreateRun call. Optional.organization_id
The organization ID of the organization that owns the asset. Only required if you are a member of multiple organizations. Optional otherwise.
data
The array of data objects to ingest.
data[].timestamp
The timestamp used for every value in the sibling
values array. Must be in RFC3339 format. Required.data[].values
The array of channel values. Every value is assigned the timestamp from the sibling
timestamp field.data[].values[].channel
The name of the channel. Required.
data[].values[].value
The channel value. Supported types are string, boolean, and number. Required.