NFT
Wallets
Data Transformations
- Data Transformations Overview
- Filter Data Sources
- Filters
- Workflows
Chains
- Overview
- Solana
- Bitcoin
- Ethereum
- Polygon
- Arbitrum
- Base
- Optimism
- Oasys
- Monad Testnet
Deep Dives
Update Values in a filter
Update values for a filter data source
POST
/
api
/
v1
/
streams
/
data-management
/
filter-data-sources
/
{data_source_id}
/
values
curl --request POST \
--url https://api.allium.so/api/v1/streams/data-management/filter-data-sources/{data_source_id}/values \
--header 'Content-Type: application/json' \
--header 'X-API-KEY: <api-key>' \
--data '{
"operation": "ADD",
"values": [
"<string>"
]
}'
{
"message": "<string>"
}
Authorizations
Path Parameters
Body
application/json
Response
200
application/json
Successful Response
The response is of type object
.
curl --request POST \
--url https://api.allium.so/api/v1/streams/data-management/filter-data-sources/{data_source_id}/values \
--header 'Content-Type: application/json' \
--header 'X-API-KEY: <api-key>' \
--data '{
"operation": "ADD",
"values": [
"<string>"
]
}'
{
"message": "<string>"
}
Assistant
Responses are generated using AI and may contain mistakes.