Flows Metadata & Filtering
Appmixer flows can contain custom metadata specific to your application. This is especially useful for filtering flows and displaying different Flow Managers for different kinds of flows.
Setting Custom Metadata
Setting Custom Metadata using the REST API
$ curl -XPOST "https://api.appmixer.com/flows" -H "Content-Type: application/json" -d '{ "flow": FLOW_DESCRIPTOR, "name": "My Flow #1", "customFields": { "category": "healthcare" } }'$ curl -XPUT "https://api.appmixer.com/flows/9089f275-f5a5-4796-ba23-365412c5666e" -H "Content-Type: application/json" -d '{ "customFields": { "category": "healthcare" } }'Setting Custom Metadata using the Appmixer SDK
appmixer.api.createFlow('myFlow', FLOW_DESCRIPTOR, {
"customFields": { "category": "healthcare" }
});appmixer.api.updateFlow('9089f275-f5a5-4796-ba23-365412c5666e', {
"customFields": { "category": "healthcare" }
});Search Flows Based on Custom Metadata
Filter Flows using the REST API
Filter Flows using the Appmixer SDK
Appmixer UI SDK FlowManager with Custom Metadata
Filter Flows with FlowManager
Last updated
Was this helpful?
