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.WORKFLOWS to 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 Type
    Method
    Description
    jakarta.ws.rs.core.Response
    create(org.keycloak.representations.workflows.WorkflowRepresentation representation)
     
    jakarta.ws.rs.core.Response
    create(org.keycloak.representations.workflows.WorkflowSetRepresentation representation)
     
    List<org.keycloak.representations.workflows.WorkflowRepresentation>
     
     
  • Method Details

    • create

      @POST @Consumes("application/json") jakarta.ws.rs.core.Response create(org.keycloak.representations.workflows.WorkflowRepresentation representation)
    • create

      @Path("set") @POST @Consumes("application/json") jakarta.ws.rs.core.Response create(org.keycloak.representations.workflows.WorkflowSetRepresentation representation)
    • list

      @GET @Produces("application/json") List<org.keycloak.representations.workflows.WorkflowRepresentation> list()
    • workflow

      @Path("{id}") WorkflowResource workflow(@PathParam("id") String id)