Deprecated. This function is being discontinued in the upcoming months. We are working to provide alternatives, and we'll provide timely updates before implementing any changes. We understand that this transition might present challenges, and we appreciate your patience and understanding.
Deletes a workflow.
The deleteWorkflow()
function returns a Promise when the specified workflow
has been deleted.
This function requires you to specify the ID of a workflow. To learn about retrieving IDs in the Workflow API, see Retrieving IDs.
function deleteWorkflow(workflowId: string): Promise<void>;
ID of the workflow to delete.
import { Permissions, webMethod } from "wix-web-module";
import { workflows } from "wix-crm-backend";
export const deleteWorkflow = webMethod(Permissions.Anyone, (workflowId) => {
return workflows.deleteWorkflow(workflowId);
});
// Returns a promise that resolves to void.
Deprecated. This function is being discontinued in the upcoming months. We are working to provide alternatives, and we'll provide timely updates before implementing any changes. We understand that this transition might present challenges, and we appreciate your patience and understanding.
Retrieves a workflow card by ID.
The getCard()
function returns a Promise that resolves to the card
with the specified ID.
This function requires you to specify the ID of a card. To learn about retrieving IDs in the Workflow API, see Retrieving IDs.
ID of the card to retrieve.
Deprecated. This function is being discontinued in the upcoming months. We are working to provide alternatives, and we'll provide timely updates before implementing any changes. We understand that this transition might present challenges, and we appreciate your patience and understanding.
Retrieves a phase by ID.
The getPhaseInfo()
function returns a Promise that resolves to the phase
with the specified ID.
This function requires you to specify the ID of a phase. To learn about retrieving IDs in the Workflow API, see Retrieving IDs.
ID of the phase to retrieve.
Deprecated. This function is being discontinued in the upcoming months. We are working to provide alternatives, and we'll provide timely updates before implementing any changes. We understand that this transition might present challenges, and we appreciate your patience and understanding.
Retrieves a workflow by ID.
The getWorkflowInfo()
function returns a Promise that resolves to the workflow info
with the specified ID.
This function requires you to specify the ID of a workflow. To learn about retrieving IDs in the Workflow API, see Retrieving IDs.
ID of the workflow to retrieve.
Deprecated. This function is being discontinued in the upcoming months. We are working to provide alternatives, and we'll provide timely updates before implementing any changes. We understand that this transition might present challenges, and we appreciate your patience and understanding.
Retrieves a list of a workflow's cards.
The listCards()
function returns a Promise that resolves to a list of the
the specified workflow's cards.
Use the options
parameter to specify which cards to retrieve and in which
order to retrieve them. Must use either phaseId
or fetchOnlyArchived
.
Cards can be sorted based on their "id"
, "name"
,
"phaseId"
, "createdDate"
, "updatedDate"
, "source"
, and "position"
.
If no limit
parameter is passed, the first 50 cards are returned. Sort order
defaults to by "phaseId"
and then by "position"
ascending.
This function requires you to specify the ID of a workflow. To learn about retrieving IDs in the Workflow API, see Retrieving IDs.
ID of the workflow to retrieve cards from.
Options to use when retrieving the list of cards.