Get Specified Certification Task Line Item Details

get

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

Returns the specified certification task line item details.

Request

Supported Media Types
Path Parameters
Back to Top

Response

Supported Media Types

200 Response

Successful
Headers
Body ()
Root Schema : lineItemsDetailsList
Type: object
Show Source
Nested Schema : lineItemDetails
Type: array
Show Source
Nested Schema : lineItemDetailInfo
Type: object
Show Source
Nested Schema : auditViolations
Type: array
Show Source
Nested Schema : LinkDataInstances
Type: object
Show Source
Nested Schema : auditViolation
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 details for a given line item 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/3/tasks/bea5a9e0-8e4c-455f-
a34b-33ca190f0bce/lineitems/1

Example of GET Response Body

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

{
    "links": [
        {
            "rel": "self",
            "href": "https://pseudo.com/iam/governance/selfservice/api/v1/certifications/3/tasks/bea5a9e0-8e4c-
455f-a34b-33ca190f0bce/lineitems/1?offset=1&limit=10"
        },
        {
            "rel": "first",
            "href": "https://pseudo.com/iam/governance/selfservice/api/v1/certifications/3/tasks/bea5a9e0-8e4c-
455f-a34b-33ca190f0bce/lineitems/1?offset=1&limit=10"
        }
    ],
    "count": 1,
    "hasMore": false,
    "totalResult": -1,
    "lineItemDetails": [
        {
            "id": 1,
            "entityId": 2,
            "parentEntityId": 3,
            "lastReviewerId": 16,
            "lastReviewerTaskUid": "bea5a9e0-8e4c-455f-a34b-33ca190f0bce",
            "action": 1,
            "certifiedBy": "AARORA",
            "certifyDate": "2019-04-08T18:16:51Z",
            "riskSummary": 0,
            "itemRisk": 0,
            "category": "Role",
            "lastDecision": 5,
            "certified": 1,
            "entityType": "USER_ROLE",
            "provisionedBy": 1,
            "provisioningMethod": 3,
            "provMechRisk": 0,
            "requestId": {
                "name": "requestId",
                "value": "1",
                "link": {
                    "rel": "self",
                    "href": "https://pseudo.com/iam/governance/selfservice/api/v1/requests/1"
                }
            },
            "openSodViolations": false,
            "roleId": 1,
            "sodRisk": 0,
            "userId": 1,
            "displayName": "Chargeback Supervisor",
            "name": "Chargeback Supervisor",
            "catalogType": "Role",
            "iamId": 10
        }
    ]
}
Back to Top