Skip to main content
POST
/
api
/
v1
/
beam
/
{config_id}
/
transforms
/
{transform_uid}
/
filter-values
Add filter values
curl --request POST \
  --url https://api.example.com/api/v1/beam/{config_id}/transforms/{transform_uid}/filter-values
POST /api/v1/beam/{config_id}/transforms/{transform_uid}/filter-values
Adds values to the filter. Duplicates are ignored. Changes take effect immediately — no redeploy needed. Path parameters:
ParameterDescription
config_idPipeline configuration ID
transform_uidUID of the set filter transform
Request body:
{
  "values": ["0x3c499c542cef5e3811e1192ce70d8cc03d5c3359", "0xc2132d05d31c914a87c6611c10748aeb04b58e8f"]
}
FieldRequiredDescription
valuesYesArray of string values to add (min 1 item)
curl -X POST https://api.allium.so/api/v1/beam/${CONFIG_ID}/transforms/${TRANSFORM_UID}/filter-values \
  -H "X-API-Key: ${ALLIUM_API_KEY}" \
  -H "Content-Type: application/json" \
  -d '{ "values": ["0x3c499c542cef5e3811e1192ce70d8cc03d5c3359"] }'
Response:
{ "added": 1 }
Use lowercase values when filtering by addresses, labels, or symbols — this is how values are normalized in the system.