1
0
Fork 0
mirror of synced 2024-09-20 11:27:56 +12:00
budibase/packages/client/src/api/automations.js
2021-01-08 17:25:06 +00:00

10 lines
266 B
JavaScript

import API from "./api"
/**
* Executes an automation. Must have "App Action" trigger.
*/
export const triggerAutomation = async (automationId, fields) => {
return await API.post({
url: `/api/automations/${automationId}/trigger`,
body: { fields },
})
}