Update job details

put

/iam/governance/selfservice/api/v1/scheduler/jobs/{jobName}

Updates the details of a job such as a parameter value or retry count.

Request

Supported Media Types
Path Parameters
Body ()
Root Schema : JobDetails
Type: object
Show Source
Nested Schema : notification
Type: object
Show Source
Nested Schema : parameters
Type: array
Show Source
Nested Schema : JobParameter
Type: object
Show Source
Back to Top

Response

Supported Media Types

200 Response

OK
Body ()
Root Schema : Success
Type: object
Show Source

400 Response

Invalid input
Back to Top

Examples

The following example shows how to update the details of a job such as a parameter value or retry count by submitting the PUT request using cURL. The information shown here is against a pseudo system and serves as a prototype.

cURL Example

curl -i -X PUT -u username:password /
--header 'Content-Type: application/json' /
--header 'Accept: application/json' /
--header 'X-Requested-By: <anyvalue>' -d @put.json' /
'http://pseudo.com/iam/governance/selfservice/api/v1/scheduler/jobs/Catalog Synchronization Job'

Example of PUT Request Body

The following example shows the contents of the request body in JSON format:

{
    "parameters": {
        "Application Instance Name": {
            "value":"ALL"
        },
        "Mode": {
            "value":"Revoke"
        },
        "Batch Size": {
            "value":"500"
        }
    }
}

Example of PUT Response Body

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

{
    "status": "Job Update successfull"
}
Back to Top