Get the details of a task

get

/iam/governance/selfservice/api/v1/scheduler/tasks/{taskName}

Retrieves the details associated with a task such as a parameter.

Request

Path Parameters
Back to Top

Response

Supported Media Types

200 Response

OK
Body ()
Root Schema : Task
Type: object
Show Source
Nested Schema : parameters
Type: array
Show Source
Nested Schema : JobParameter
Type: object
Show Source

400 Response

Invalid input
Back to Top

Examples

The following example shows how to retrieve the details associated with a task such as a parameter by submitting the GET request using cURL. The information shown here is against a pseudo system and serves as a prototype.

cURL Example

curl -i -X GET -u username:password \
--header 'Accept: application/json' \
--header 'Content-Type: application/json' \
'http://pseudo.com/iam/governance/selfservice/api/v1/scheduler/tasks/Application Bulk Create'

Example of Response Body

The following example shows the JSON response for a retrieval request for the details associated with a task:

{
    "name": "Application Bulk Create",
    "className": "oracle.iam.application.task.ApplicationBulkLoadTask",
    "description": "Job to create application in bulk from a directory.",
    "parameters": {
        "Template Directory": {
            "helpText": "Directory path containing XML for seeding Application",
            "required": false,
            "dataType": "String"
        },
        "Archive Directory": {
            "helpText": "Directory path for archive Application XML file after successful processing.",
            "required": false,
            "dataType": "String"
        }
    }
}
Back to Top