Retry a Provisioning Task

A user can use this OIG Self Service REST API to retry a provisioning task using the following URI:
  • /provtasks/<task_id> PUT: This retries a provisioning task.

cURL Example

curl  -H "Content-Type: application/json"  -H "X-Requested-By: <anyvalue>"  -X PUT  -u username:password  -d @put.json 
https://pseudo.com/iam/governance/selfservice/api/v1/provtasks/1002

PUT Request Body

{
     "action": "retry"
}

PUT Response Body

{
    "links": [
        {
            "rel": "self",
            "href": "https://pseudo.com/iam/governance/selfservice/api/v1/provtasks/1002"
        }
    ],
    "id": "1002",
    "status": "SUCCESS"
}