Return the specified certification task details.
get
                    /iam/governance/selfservice/api/v1/certifications/{certid}/tasks/{taskid}
Returns the specified certification task details.
                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.
401 Response
Unauthorized
                
                
                404 Response
Requested entity not found
                
                
                500 Response
Internal Server Error
                
                
                Default Response
Unexpected error
                
                
                Examples
This example retrieves the information for a given task for a given certification. 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/91/tasks/1b160469-3efc-4c9f-aead-4440e8cabe7e
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"
    }
  ],
  "taskId": "1b160469-3efc-4c9f-aead-4440e8cabe7e",
  "taskName": "entitlement_cert_user [ System Administrator ] ",
  "reviewer": {
    "links": [
      {
        "rel": "reviewer",
        "href": "http://pseudo.com/iam/governance/selfservice/api/v1/users/1"
      }
    ],
    "id": "1",
    "displayName": "System Administrator"
  },
  "status": 1,
  "certificationInstance": {
    "id": "91"
  },
  "startDate": 1461156004321,
  "certificationState": "11",
  "certLineItems": {
    "links": [
      {
        "rel": "self",
        "href": "http://pseudo.com/iam/governance/selfservice/api/v1/certifications/91/tasks/1b160469-3efc-4c9f-aead-4440e8cabe7e/lineitems"
      }
    ],
    "certLineItemList": [
      {
        "links": [
          {
            "rel": "self",
            "href": "http://pseudo.com/iam/governance/selfservice/api/v1/certifications/91/tasks/1b160469-3efc-4c9f-aead-4440e8cabe7e/lineitems/16"
          }
        ],
        "entityId": 16
      },
      {
        "links": [
          {
            "rel": "self",
            "href": "http://pseudo.com/iam/governance/selfservice/api/v1/certifications/91/tasks/1b160469-3efc-4c9f-aead-4440e8cabe7e/lineitems/15"
          }
        ],
        "entityId": 15
      }
    ]
  }
}