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
Possible values: <= 250
Default value: 250
Max number of results to return. See V3 API Standard Collection Parameters for more information.
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.
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.
ID of the work item owner.
Responses
- 200
- 401
- 403
- 404
- 429
- 500
List of work items
- application/json
- Schema
- Example (from schema)
Schema
Array [
Array [
]
Array [
]
Array [
]
]
ID of the work item
ID of the requester
The displayname of the requester
The ID of the owner
The name of the owner
Time when the work item was created
Time when the work item was last updated
The description of the work item
Possible values: [Finished
, Rejected
, Returned
, Expired
, Pending
, Canceled
]
The state of a work item
Possible values: [Generic
, Certification
, Remediation
, Delegation
, Approval
, ViolationReview
, Form
, PolicyVioloation
, Challenge
, ImpactAnalysis
, Signoff
, Event
, ManualAction
, Test
]
The type of the work item
remediationItems
object[]
nullable
A list of remediation items
The ID of the certification
The ID of the certification target
The name of the certification target
The display name of the certification target
The name of the application/source
The name of the attribute being certified
The operation of the certification on the attribute
The value of the attribute being certified
The native identity of the target
approvalItems
object[]
nullable
A list of items that need to be approved
The approval item's ID
The account referenced by the approval item
The name of the application/source
The attribute's name
The attribute's operation
The attribute's value
Possible values: [Finished
, Rejected
, Returned
, Expired
, Pending
, Canceled
, null
]
The state of a work item
The work item name
The time at which the work item completed
The number of items in the work item
form
object
ID of the form
Name of the form
The form title
The form subtitle.
The name of the user that should be shown this form
sections
object[]
Sections of the form
Name of the FormItem
Label of the section
List of FormItems. FormItems can be SectionDetails and/or FieldDetails
An array of errors that ocurred during the work item
[
{
"id": "2c9180835d2e5168015d32f890ca1581",
"requesterId": "2c9180835d2e5168015d32f890ca1581",
"requesterDisplayName": "John Smith",
"ownerId": "2c9180835d2e5168015d32f890ca1581",
"ownerName": "Jason Smith",
"created": "2017-07-11T18:45:37.098Z",
"modified": "2018-06-25T20:22:28.104Z",
"description": "Create account on source 'AD'",
"state": "Finished",
"type": "Generic",
"remediationItems": [
{
"id": "2c9180835d2e5168015d32f890ca1581",
"targetId": "2c9180835d2e5168015d32f890ca1581",
"targetName": "john.smith",
"targetDisplayName": "emailAddress",
"applicationName": "Active Directory",
"attributeName": "phoneNumber",
"attributeOperation": "update",
"attributeValue": "512-555-1212",
"nativeIdentity": "jason.smith2"
}
],
"approvalItems": [
{
"id": "2c9180835d2e5168015d32f890ca1581",
"account": "john.smith",
"application": "Active Directory",
"name": "emailAddress",
"operation": "update",
"value": "[email protected]",
"state": "Pending"
}
],
"name": "Account Create",
"completed": "2018-10-19T13:49:37.385Z",
"numItems": 19,
"form": {
"id": "2c9180835d2e5168015d32f890ca1581",
"name": "AccountSelection Form",
"title": "Account Selection for John.Doe",
"subtitle": "Please select from the following",
"targetUser": "Jane.Doe",
"sections": [
{
"name": "Field1",
"label": "Section 1",
"formItems": []
}
]
},
"errors": [
"The work item ID that was specified was not found."
]
}
]
Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.
- application/json
- Schema
- Example (from schema)
Schema
A message describing the error
{
"error": "JWT validation failed: JWT is expired"
}
Forbidden - Returned if the user you are running as, doesn't have access to this end-point.
- application/json
- Schema
- Example (from schema)
- 403
Schema
Array [
]
Array [
]
Fine-grained error code providing more detail of the error.
Unique tracking id for the error.
messages
object[]
Generic localized reason for error
The locale for the message text, a BCP 47 language tag.
Possible values: [DEFAULT
, REQUEST
, null
]
An indicator of how the locale was selected. DEFAULT means the locale is the system default. REQUEST means the locale was selected from the request context (i.e., best match based on the Accept-Language header). Additional values may be added in the future without notice.
Actual text of the error message in the indicated locale.
causes
object[]
Plain-text descriptive reasons to provide additional detail to the text provided in the messages field
The locale for the message text, a BCP 47 language tag.
Possible values: [DEFAULT
, REQUEST
, null
]
An indicator of how the locale was selected. DEFAULT means the locale is the system default. REQUEST means the locale was selected from the request context (i.e., best match based on the Accept-Language header). Additional values may be added in the future without notice.
Actual text of the error message in the indicated locale.
{
"detailCode": "400.1 Bad Request Content",
"trackingId": "e7eab60924f64aa284175b9fa3309599",
"messages": [
{
"locale": "en-US",
"localeOrigin": "DEFAULT",
"text": "The request was syntactically correct but its content is semantically invalid."
}
],
"causes": [
{
"locale": "en-US",
"localeOrigin": "DEFAULT",
"text": "The request was syntactically correct but its content is semantically invalid."
}
]
}
An example of a 403 response object
{
"detailCode": "403 Forbidden",
"trackingId": "b21b1f7ce4da4d639f2c62a57171b427",
"messages": [
{
"locale": "en-US",
"localeOrigin": "DEFAULT",
"text": "The server understood the request but refuses to authorize it."
}
]
}
Not Found - returned if the request URL refers to a resource or object that does not exist
- application/json
- Schema
- Example (from schema)
- 404
Schema
Array [
]
Array [
]
Fine-grained error code providing more detail of the error.
Unique tracking id for the error.
messages
object[]
Generic localized reason for error
The locale for the message text, a BCP 47 language tag.
Possible values: [DEFAULT
, REQUEST
, null
]
An indicator of how the locale was selected. DEFAULT means the locale is the system default. REQUEST means the locale was selected from the request context (i.e., best match based on the Accept-Language header). Additional values may be added in the future without notice.
Actual text of the error message in the indicated locale.
causes
object[]
Plain-text descriptive reasons to provide additional detail to the text provided in the messages field
The locale for the message text, a BCP 47 language tag.
Possible values: [DEFAULT
, REQUEST
, null
]
An indicator of how the locale was selected. DEFAULT means the locale is the system default. REQUEST means the locale was selected from the request context (i.e., best match based on the Accept-Language header). Additional values may be added in the future without notice.
Actual text of the error message in the indicated locale.
{
"detailCode": "400.1 Bad Request Content",
"trackingId": "e7eab60924f64aa284175b9fa3309599",
"messages": [
{
"locale": "en-US",
"localeOrigin": "DEFAULT",
"text": "The request was syntactically correct but its content is semantically invalid."
}
],
"causes": [
{
"locale": "en-US",
"localeOrigin": "DEFAULT",
"text": "The request was syntactically correct but its content is semantically invalid."
}
]
}
An example of a 404 response object
{
"detailCode": "404 Not found",
"trackingId": "b21b1f7ce4da4d639f2c62a57171b427",
"messages": [
{
"locale": "en-US",
"localeOrigin": "DEFAULT",
"text": "The server did not find a current representation for the target resource."
}
]
}
Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.
- application/json
- Schema
- Example (from schema)
Schema
A message describing the error
{
"message": " Rate Limit Exceeded "
}
Internal Server Error - Returned if there is an unexpected error.
- application/json
- Schema
- Example (from schema)
- 500
Schema
Array [
]
Array [
]
Fine-grained error code providing more detail of the error.
Unique tracking id for the error.
messages
object[]
Generic localized reason for error
The locale for the message text, a BCP 47 language tag.
Possible values: [DEFAULT
, REQUEST
, null
]
An indicator of how the locale was selected. DEFAULT means the locale is the system default. REQUEST means the locale was selected from the request context (i.e., best match based on the Accept-Language header). Additional values may be added in the future without notice.
Actual text of the error message in the indicated locale.
causes
object[]
Plain-text descriptive reasons to provide additional detail to the text provided in the messages field
The locale for the message text, a BCP 47 language tag.
Possible values: [DEFAULT
, REQUEST
, null
]
An indicator of how the locale was selected. DEFAULT means the locale is the system default. REQUEST means the locale was selected from the request context (i.e., best match based on the Accept-Language header). Additional values may be added in the future without notice.
Actual text of the error message in the indicated locale.
{
"detailCode": "400.1 Bad Request Content",
"trackingId": "e7eab60924f64aa284175b9fa3309599",
"messages": [
{
"locale": "en-US",
"localeOrigin": "DEFAULT",
"text": "The request was syntactically correct but its content is semantically invalid."
}
],
"causes": [
{
"locale": "en-US",
"localeOrigin": "DEFAULT",
"text": "The request was syntactically correct but its content is semantically invalid."
}
]
}
An example of a 500 response object
{
"detailCode": "500.0 Internal Fault",
"trackingId": "b21b1f7ce4da4d639f2c62a57171b427",
"messages": [
{
"locale": "en-US",
"localeOrigin": "DEFAULT",
"text": "An internal fault occurred."
}
]
}