Flows
get
https://api.appmixer.com
/flows
Get Flows
get
https://api.appmixer.com
/flows/:id
Get Flow
get
https://api.appmixer.com
/flows/count
Get Flows Count
post
https://api.appmixer.com
/flows
Create Flow
put
https://api.appmixer.com
/flows/:id
Update Flow
delete
https://api.appmixer.com
/flows/:id
Delete Flow
post
https://api.appmixer.com
/flows/:id/coordinator
Start/Stop Flow
get
https://api.appmixer.com
/variables/:flowId
Get Variables
If no parameters besides
flowId
are passed, variables for the entire flow are returned in the following format:{
'component1': {
'properties': {
// properties variables
},
'inputs': {
'in1': {
'srcComponentId1': {
'out1': {
'dynamic': [],
'static': {}
},
'out2': {
'dynamic': [],
'static': {}
},
},
'srcComponentId2': {
'out': {
'dynamic': [],
'static': {}
}
}
},
'in2': {
'srcComponentId1': {
'out1': {
'dynamic': [],
'static': {}
}
}
}
}
},
'component2': {
'properties': {
'dynamic': [],
'groups': null,
'inputs': null,
'schema': null,
'static': {}
}
// component2 has no input ports so there's no 'inputs'
}
}
Last modified 3yr ago