Skip to main content

List Work Items

GET 

/work-items

This gets a collection of work items belonging to either the specified user(admin required), or the current user.

Request

Query Parameters

    limit int32

    Possible values: <= 250

    Default value: 250

    Max number of results to return. See V3 API Standard Collection Parameters for more information.

    Example: 250
    offset int32

    Offset into the full result set. Usually specified with limit to paginate through the results. See V3 API Standard Collection Parameters for more information.

    Example: 0
    count boolean

    If true it will populate the X-Total-Count response header with the number of results that would be returned if limit and offset were ignored.

    Since requesting a total count can have a performance impact, it is recommended not to send count=true if that value will not be used.

    See V3 API Standard Collection Parameters for more information.

    Example: true
    ownerId string

    ID of the work item owner.

Responses

List of work items

Schema
  • Array [
  • id string

    ID of the work item

    requesterId string

    ID of the requester

    requesterDisplayName string

    The displayname of the requester

    ownerId string

    The ID of the owner

    ownerName string

    The name of the owner

    created date-time
    modified date-time
    description string

    The description of the work item

    state WorkItemState

    Possible values: [FINISHED, REJECTED, RETURNED, EXPIRED, PENDING, CANCELED, null]

    The state of a work item

    type WorkItemType

    Possible values: [UNKNOWN, GENERIC, CERTIFICATION, REMEDIATION, DELEGATION, APPROVAL, VIOLATIONREVIEW, FORM, POLICYVIOLATION, CHALLENGE, IMPACTANALYSIS, SIGNOFF, EVENT, MANUALACTION, TEST]

    The type of the work item

    remediationItems object
    id string

    The ID of the certification

    targetId string

    The ID of the certification target

    targetName string

    The name of the certification target

    targetDisplayName string

    The display name of the certification target

    applicationName string

    The name of the application/source

    attributeName string

    The name of the attribute being certified

    attributeOperation string

    The operation of the certification on the attribute

    attributeValue string

    The value of the attribute being certified

    nativeIdentity string

    The native identity of the target

    approvalItems object
    id string

    The approval item's ID

    account string

    The account referenced by the approval item

    application string

    The name of the application/source

    name string

    The attribute's name

    operation string

    The attribute's operation

    value string

    The attribute's value

    state WorkItemState

    Possible values: [FINISHED, REJECTED, RETURNED, EXPIRED, PENDING, CANCELED, null]

    The state of a work item

    name string

    The work item name

    completed date-time
    numItems integer

    The number of items in the work item

    errors string[]
  • ]
Loading...