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

    Default value: 0

    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 stringnullable

    ID of the requester

    requesterDisplayName stringnullable

    The displayname of the requester

    ownerId stringnullable

    The ID of the owner

    ownerName string

    The name of the owner

    created date-time
    modified date-timenullable
    description string

    The description of the work item

    state WorkItemState (string)nullable

    Possible values: [Finished, Rejected, Returned, Expired, Pending, Canceled, null]

    The state of a work item

    type WorkItemType (string)

    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[]

    nullable

  • Array [

  • 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[]

    nullable

  • Array [

  • id string

    The approval item's ID

    account stringnullable

    The account referenced by the approval item

    application string

    The name of the application/source

    name stringnullable

    The attribute's name

    operation string

    The attribute's operation

    value stringnullable

    The attribute's value

    state WorkItemState (string)nullable

    Possible values: [Finished, Rejected, Returned, Expired, Pending, Canceled, null]

    The state of a work item

  • ]

  • name stringnullable

    The work item name

    completed date-timenullable
    numItems integernullable

    The number of items in the work item

    errors string[]

    form

    object

    nullable

    id stringnullable

    ID of the form

    name stringnullable

    Name of the form

    title string

    The form title

    subtitle string

    The form subtitle.

    targetUser string

    The name of the user that should be shown this form

    sections object[]
  • ]

Loading...