Flows
Get Flows
GET
https://api.YOUR_TENANT.appmixer.cloud/flows
Return all flows of a user.
curl "https://api.appmixer.com/flows" -H "Authorization: Bearer [ACCESS_TOKEN]"
Query Parameters
Get Flow
GET
https://api.YOUR_TENANT.appmixer.cloud/flows/:id
Return one flow.
curl "https://api.appmixer.com/flows/9089f275-f5a5-4796-ba23-365412c5666e" -H "Authorization: Bearer [ACCESS_TOKEN]"
Path Parameters
Get Flows Count
GET
https://api.YOUR_TENANT.appmixer.cloud/flows/count
Return the number of all flows of a user.
curl "https://api.appmixer.com/flows/count" -H "Authorization: Bearer [ACCESS_TOKEN]"
Create Flow
POST
https://api.YOUR_TENANT.appmixer.cloud/flows
Create a new flow.
curl -XPOST "https://api.appmixer.com/flows" -H "Content-Type: application/json" -d '{ "flow": FLOW_DESCRIPTOR, "name": "My Flow #1", "customFields": { "category": "healthcare" } }'
Request Body
Update Flow
PUT
https://api.YOUR_TENANT.appmixer.cloud/flows/:id
Update an existing flow.
curl -XPUT "https://api.appmixer.com/flows/9089f275-f5a5-4796-ba23-365412c5666e" -H "Content-Type: application/json" -d '{ "flow": FLOW_DESCRIPTOR, "name": "My Flow #2" }'
Path Parameters
Query Parameters
Request Body
Delete Flow
DELETE
https://api.YOUR_TENANT.appmixer.cloud/flows/:id
Delete an existing flow.
curl -XDELETE "https://api.appmixer.com/flows/9089f275-f5a5-4796-ba23-365412c5666e" -H "Authorization: Bearer [ACCESS_TOKEN]"
Path Parameters
Clone Flow
POST
https://api.YOUR_TENANT.appmixer.cloud/flows/:id/clone
Clone a flow
Path Parameters
Request Body
Start/Stop Flow
POST
https://api.YOUR_TENANT.appmixer.cloud/flows/:id/coordinator
Start or Stop an existing flow.
curl -XPOST "https://api.appmixer.com/flows/9089f275-f5a5-4796-ba23-365412c5666e" -H "Content-Type: application/json" -d '{ "command": "start" }'
Path Parameters
Request Body
Send GET request to a component
GET
https://api.YOUR_TENANT.appmixer.cloud/flows/:flowId/components/:componentId
Query Parameters
Send POST request to a component
POST
https://api.YOUR_TENANT.appmixer.cloud/flows/:flowId/components/:componentId
Query Parameters
Send PUT request to a component
PUT
https://api.YOUR_TENANT.appmixer.cloud/flows/:flowId/components/:componentId
Query Parameters
Send DELETE request to a component
DELETE
https://api.appmixer.com/flows/:flowId/components/:componentId
Query Parameters
Last updated