Return the specified certification task line items .

get

/iam/governance/selfservice/api/v1/certifications/{certid}/tasks/{taskid}/lineitems

Returns the specified certification task line items.

Request

Supported Media Types
Path Parameters
Back to Top

Response

Supported Media Types

200 Response

Successful
Headers
Body ()
Root Schema : lineItemsList
Type: object
Show Source
Nested Schema : lineItems
Type: array
Show Source
Nested Schema : lineItemsInfo
Type: object
Show Source
Nested Schema : LinkDataInstances
Type: object
Show Source

401 Response

Unauthorized

404 Response

Requested entity not found

500 Response

Internal Server Error
Back to Top

Examples

This example retrieves the line items for a given certification and task. The information shown here is against a pseudo system and serves as a prototype.

cURL Example

curl  -H "Content-Type: application/json"  -X GET  -u username:password  https://pseudo.com/iam/governance/selfservice/api/v1/certifications/91/tasks/1b160469-3efc-4c9f-aead-4440e8cabe7e/lineitems

Example of GET Response Body

The following example shows the contents of the response body in JSON format.

{
  "links": [
    {
      "rel": "self",
      "href": "http://pseudo.com/iam/governance/selfservice/api/v1/certifications/91/tasks/1b160469-3efc-4c9f-aead-4440e8cabe7e/lineitems?offset=1&limit=10"
    },
    {
      "rel": "first",
      "href": "http://pseudo.com/iam/governance/selfservice/api/v1/certifications/91/tasks/1b160469-3efc-4c9f-aead-4440e8cabe7e/lineitems?offset=1&limit=10"
    }
  ],
  "count": 2,
  "hasMore": false,
  "totalResult": -1,
  "certLineItemList": [
    {
      "links": [
        {
          "rel": "self",
          "href"pseudo.com/iam/governance/selfservice/api/v1/certifications/91/tasks/1b160469-3efc-4c9f-aead-4440e8cabe7e/lineitems/16"
        }
      ],
      "action": "1",
      "percentComplete": 0,
      "certifiedBy": "XELSYSADM",
      "certifyDate": "Wed Apr 20 18:14:46 IST 2016",
      "entityId": 16,
      "displayName": "abc_meaning2",
      "attributeName": "DA_lookup_field",
      "itemRisk": 3
    },
    {
      "links": [
        {
          "rel": "self",
          "href": "http://pseudo.com/iam/governance/selfservice/api/v1/certifications/91/tasks/1b160469-3efc-4c9f-aead-4440e8cabe7e/lineitems/15"
        }
      ],
      "action": "1",
      "percentComplete": 0,
      "certifiedBy": "XELSYSADM",
      "certifyDate": "Wed Apr 20 18:11:37 IST 2016",
      "entityId": 15,
      "displayName": "abc_meaning1",
      "attributeName": "DA_lookup_field",
      "itemRisk": 3
    }
  ]
}
Back to Top