GET /api/space/user-management/tasks/{id} (v1)
This API takes a task ID as an argument and returns a Task transfer object containing the data for the specified task.
Access Control
The following capabilities are required to access this API:
"DefaultRead"
Example Usage
GET /api/space/user-management/tasks/{id}Parameters
Name | Type | URI Type | Description | Required |
id | int | Path | The ID of a task for which information will be retrieved. | Y |
Content Types
-
Produces content types:
application/vnd.net.juniper.space.user-management.task+xml;version=1
application/vnd.net.juniper.space.user-management.task+json;version=1 -
Sample Output XML:
<task uri="api/space/user-management/tasks/102" >
<id>102</id>
<name>manageFabric</name>
<title>Manage Fabric</title>
<cls>task</cls>
</task> -
Sample Output JSON:
{"task":
{ "@uri":"api/space/user-management/tasks/102"
{"id":102,
"name":"manageFabric",
"title":"Manage Fabric",
"cls":"task"}
}}