Get Certification Task Details Based on Certification ID

get

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

Returns the specified certification task details.

Request

Supported Media Types
Path Parameters
Back to Top

Response

Supported Media Types

200 Response

Successful
Headers
Body ()
Root Schema : SingleCertTaskDetails
Type: object
Show Source
Nested Schema : CertificationInstance
Type: object
Show Source
Nested Schema : certLineitems
Type: array
Show Source
Nested Schema : TaskReviewer
Type: object
Show Source
Nested Schema : LinkDataInstances
Type: object
Show Source
Nested Schema : lineItemsInfo
Type: object
Show Source

401 Response

Unauthorized

404 Response

Requested entity not found

500 Response

Internal Server Error

Default Response

Unexpected error
Back to Top

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/3/tasks/bea5a9e0-8e4c-455f-
a34b-33ca190f0bce

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:PORT/iam/governance/selfservice/api/v1/certifications/3/tasks/be
a5a9e0-8e4c-455f-a34b-33ca190f0bce"
        }
    ],
    "taskId": "bea5a9e0-8e4c-455f-a34b-33ca190f0bce",
    "taskName": "usercert  [ Bud Spencer ] Reassigned [ Ajay Arora ]",
    "reviewer": {
        "links": [
            {
                "rel": "reviewer",
                "href": "http://pseudo.com:PORT/iam/governance/selfservice/api/v1/users/16"
            }
        ],
        "id": "16",
        "displayName": "Ajay Arora"
    },
    "status": 1,
    "certificationInstance": {
        "id": "3"
    },
    "startDate": "2019-04-01T20:09:53Z",
    "certificationState": "11",
    "certLineitems": {
        "links": [
            {
                "rel": "self",
                "href": "http://pseudo.com:PORT/iam/governance/selfservice/api/v1/certifications/3/tasks/be
a5a9e0-8e4c-455f-a34b-33ca190f0bce/lineitems"
            }
        ],
        "certLineItemList": [
            {
                "links": [
                    {
                        "rel": "self",
                        "href": "http://pseudo.com:PORT/iam/governance/selfservice/api/v1/certifications/3/tasks/be
a5a9e0-8e4c-455f-a34b-33ca190f0bce/lineitems/3"
                    }
                ],
                "entityId": 3
            }
        ]
    },
    "percentComplete": 0
}
Back to Top