Updates the individual lineitem associated with particular task.
put
                    /iam/governance/selfservice/api/v1/certifications/{certid}/tasks/{taskid}/lineitems/{lineitemid}
Updates the line item specified by the line item ID associated with the taskid . The updates actions which can be done to the line items are, claim, revoke, abstain, complete, sign-off, edit comment, Reset Status.
                Request
Supported Media Types
                - application/json
Path Parameters
                - 
                    certid: string
                    
                    Certification ID
- 
                    lineitemid: string
                    
                    LineItem ID
- 
                    taskid: string
                    
                    Task ID
Action to be taken on the LineItem
                
                
                
                Response
Supported Media Types
                - application/json
200 Response
Successful
                
                Headers
                - 
                        ResponseTime: string
                        
                        Captures the time in milliseconds taken for processing the request.
401 Response
Unauthorized
                
                
                404 Response
Requested entity not found
                
                
                500 Response
Internal Server Error
                
                
                Default Response
Unexpected error
                
                
                Examples
This example demonstrates the ability to update a single line item associated with a certification task. The information shown here is against a pseudo system and serves as a prototype.
cURL Example
curl -H "Content-Type: application/json" -X PUT -u username:password -d @put.json https://pseudo.com/iam/governance/selfservice/api/v1/certifications/184/tasks/fefc3f4d-d7d3-4fb9-a9bf-80652cdfdbcd/lineitems/957"
Example of PUT Request Body
The following example shows the contents of the request body in JSON format.
{
  "action": "ResetStatus",
  "fields": [
    {
      "name": "comment",
      "value": "test ResetStatus"
    }
  ]
}
 Example of PUT 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/184/tasks/fefc3f4d-d7d3-4fb9-a9bf-80652cdfdbcd/lineitems/957"
    }
  ],
  "action": "ResetStatus",
  "status": "success"
}