/api/space/user-management/capabilities/{id}/tasks

The following operation is supported on this resource:

  • GET - Get all tasks assigned to a capability
GET /capabilities/{id}/tasks Version 1

Get all tasks assigned to a capability.

Sample Usage

GET /capabilities/{id}/tasks


  • Parameters:
    Name Type URI Type Description Required
    id int Path The ID of the capability for which tasks will be retrieved. Y
  • Sample Output XML:
    <tasks
      size="1" uri="/api/space/user-management/capabilities/65559/tasks">
      <task key="65620"
        uri="/api/space/user-management/capabilities/65559/tasks/65620"
        href="/api/space/user-management/tasks/65620">
        <name>createUser</name>
      </task>
    </tasks>

  • Sample Output JSON:
    {
      "tasks": {
           "@size":"1",
           "@uri": "/api/space/user-management/capabilities/65559/tasks",
           "task":{
              "@key":"65620",
              "@uri": "/api/space/user-management/capabilities/65559/tasks/65620",
              "@href": "/api/space/user-management/tasks/65620",
              "name":"createUser"
           }
      }
    }

  • Access Control

    The following capabilities are required to access this API: DefaultRead