Interface WorkflowsResource
public interface WorkflowsResource
- Since:
- Keycloak server 26.4.0. All the child endpoints are also available since that version
This endpoint including all the child endpoints require feature
Profile.Feature.WORKFLOWSto be enabled. Note that feature is experimental in 26.4.0 and there might be backwards incompatible changes in the future versions of admin-client and Keycloak server
-
Method Summary
Modifier and TypeMethodDescriptionjakarta.ws.rs.core.Responsecreate(WorkflowRepresentation representation) getScheduledWorkflows(String resourceId) list()
-
Method Details
-
create
@POST @Consumes({"application/json","application/yaml"}) jakarta.ws.rs.core.Response create(WorkflowRepresentation representation) -
list
-
list
-
getScheduledWorkflows
@Path("scheduled/{resource-id}") @GET @Produces("application/json") List<WorkflowRepresentation> getScheduledWorkflows(@PathParam("resource-id") String resourceId) -
workflow
-