curl --request POST \
--url https://api.siftstack.com/api/v1/ingestion-configs \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"assetName": "<string>",
"flows": [
{
"name": "<string>",
"channels": [
{
"name": "<string>",
"dataType": "CHANNEL_DATA_TYPE_UNSPECIFIED",
"component": "<string>",
"unit": "<string>",
"description": "<string>",
"enumTypes": [
{
"name": "<string>",
"key": 123,
"isSigned": true
}
],
"bitFieldElements": [
{
"name": "<string>",
"index": 123,
"bitCount": 123
}
]
}
]
}
],
"organizationId": "<string>",
"clientKey": "<string>"
}
'{
"ingestionConfig": {
"ingestionConfigId": "<string>",
"assetId": "<string>",
"clientKey": "<string>"
}
}Create an ingestion config.
curl --request POST \
--url https://api.siftstack.com/api/v1/ingestion-configs \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"assetName": "<string>",
"flows": [
{
"name": "<string>",
"channels": [
{
"name": "<string>",
"dataType": "CHANNEL_DATA_TYPE_UNSPECIFIED",
"component": "<string>",
"unit": "<string>",
"description": "<string>",
"enumTypes": [
{
"name": "<string>",
"key": 123,
"isSigned": true
}
],
"bitFieldElements": [
{
"name": "<string>",
"index": 123,
"bitCount": 123
}
]
}
]
}
],
"organizationId": "<string>",
"clientKey": "<string>"
}
'{
"ingestionConfig": {
"ingestionConfigId": "<string>",
"assetId": "<string>",
"clientKey": "<string>"
}
}Documentation Index
Fetch the complete documentation index at: https://docs.siftstack.com/llms.txt
Use this file to discover all available pages before exploring further.
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
The request for a call to IngestionConfigService_CreateIngestionConfig to create an ingestion configs.
The request for a call to IngestionConfigService_CreateIngestionConfig to create an ingestion configs.
Show child attributes
The client_key field is a user-defined string you can supply to uniquely identify
an ingestion config (and retrieve it via GetIngestionConfig).
An error is returned if you try to create an ingestion config with a
client_key that already exists.
A successful response.
The result of a call to IngestionConfigService_CreateIngestionConfig.
Show child attributes
Was this page helpful?