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
                - application/json
Path Parameters
                - 
                    certid: string
                    
                    Certification ID
- 
                    taskid: string
                    
                    Certification Tasks ID
Response
Supported Media Types
                - application/json
200 Response
Successful
                
                Headers
                - 
                        ResponseTime: string
                        
                        Captures the time in milliseconds taken for processing the request.
Nested Schema : lineItemsInfo
    
      Type: 
      
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
        Show Source
        object- 
            accounts(optional): 
            integer
            
- 
            action(optional): 
            integer
            
- 
            certifiedBy(optional): 
            string
            
- 
            comments(optional): 
            string
            
- 
            dateCertified(optional): 
            string
            
- 
            entitlements(optional): 
            integer
            
- 
            itemRisk(optional): 
            integer
            
- 
            lineItem(optional): 
            object  lineItemLink
            
            
- 
            links(optional): 
            object  LinkDataInstances
            
            
- 
            percentComplete(optional): 
            integer
            
- 
            roles(optional): 
            integer
            
401 Response
Unauthorized
                
                
                404 Response
Requested entity not found
                
                
                500 Response
Internal Server Error
                
                
                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
    }
  ]
}