Search for tasks

get

/iam/governance/selfservice/api/v1/scheduler/tasks

Retrieves a paginated list of task details that matches the search criteria.

Request

Query Parameters
Back to Top

Response

Supported Media Types

200 Response

OK
Body ()
Root Schema : TaskSearchResult
Type: object
Show Source
Nested Schema : tasks
Type: array
Show Source
Nested Schema : items
Type: object
Show Source

400 Response

Invalid input
Back to Top

Examples

The following example shows how to retrieve a paginated list of task details that matches the search criteria 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/?q=App*'

Example of Response Body

The following example shows the JSON response for a retrieval request for the details of the task that matches the search criteria:

{
    "links": [
        {
            "rel": "self",
            "href": "http://pseudo.com/iam/governance/selfservice/api/v1/scheduler/tasks/?offset=1&limit=10&q=App%2A"
        },
        {
            "rel": "first",
            "href": "http://pseudo.com/iam/governance/selfservice/api/v1/scheduler/tasks/?offset=1&limit=10&q=App%2A"
        }
    ],
    "count": 2,
    "hasMore": false,
    "totalResult": 3,
    "tasks": [
        {
            "name": "Application Instance Post Delete Processing Task"
        },
        {
            "name": "Application Template Generation Task"
        }
    ],
    "offset": 1,
    "limit": 10
}
Back to Top