Read a Workflow

get

/content/management/api/v1.1/workflows/{id}

Request

Path Parameters
Query Parameters
  • This parameter is used to control the returned fields in each workflow in the list. This parameter accepts a comma-separated list of field names or all. These fields will be returned for each workflow in the list. All the field names are case-sensitive, users must provide the correct field names in the query. Each workflow has both standard fields (id, name, description, applicationName, revision, source, externalId, isEnabled, createdBy, createdDate, updatedBy, updatedDate) and additional fields (repositories, roles, properties)' When fields is specified as all (in lower case), all the standard and additional fields are returned. The standard fields are always returned in the response and cannot be filtered out. The user can filter out only the additional fields. This parameter is optional in the query, and by default the result shows only standard fields in the response. Any incorrect or invalid field name given in the query will throw an error.

    Example: ?fields=repositories,roles,properties
    This returns all standard fields along with the repositories , properties and roles additional fields for each workflow.
    Example: ?fields=all
    This will return all standard fields and all additional fields for each workflow.
Back to Top

Response

Supported Media Types

200 Response

OK.
Body ()
Root Schema : Workflow
Type: object
Workflow
Show Source
Nested Schema : date
Type: object
date
Show Source
Nested Schema : properties
Type: object
Additional Properties Allowed
Show Source
Properties of a workflow.
Nested Schema : repositories
Type: array
Assigned repositories of a workflow.
Show Source
Nested Schema : roles
Type: array
Roles of a workflow.
Show Source
Nested Schema : additionalProperties
Type: object
Nested Schema : RepositoryId
Type: object
RepositoryId
Show Source

304 Response

Not modified.

400 Response

Bad request.

404 Response

Not found.

500 Response

Internal server error.
Back to Top