GET /api/space/user-management/tasks (v1)
This API is used to retrieve all the tasks. It returns a collection of tasks.
Access Control
The following capabilities are required to access this API:
"DefaultRead"
Example Usage
GET /api/space/user-management/tasksContent Types
-
Produces content types:
application/vnd.net.juniper.space.user-management.tasks+xml;version=1
application/vnd.net.juniper.space.user-management.tasks+json;version=1 -
Sample Output XML:
<tasks size="2" uri="/api/space/user-management/tasks" >
<task key="78"
uri="/api/space/user-management/tasks/78"
href="/api/space/user-management/tasks/78">
<name>UserMgt</name>
</task>
<task key= "80" uri="/api/space/user-management/tasks/80">
<name>createUser</name>
</task>
</tasks> -
Sample Output JSON:
{"tasks":{size="2" "uri":"/api/space/user-management/tasks",
"task":
[{ "@key:"78"",
"@uri":"/api/space/user-management/tasks/78",
"@href":"/api/space/user-management/tasks/78",
"name":"UserMgt"},
{"@key:"80"","@uri":"/api/space/user-management/tasks/80",
"name":"createUser"}
]
}}