Context

Gets information about a context. The response contains the information about the context itself and about all children contexts for this context.

Request

GET /v1/contexts/{contextPath}

Replace {contextPath} with a full context path.

To retrieve information about the Root Context and its children, use server as the {contextPath}.

Request Header Fields

  • Authorization — Authentication token. For more information about authentication, see Authenticating.

Response Body Fields

  • name — Context name.

  • description — Context description.

  • path — Context path.

  • parent — Parent context of this context.

  • children — Children contexts of this context. This field can contain nested context descriptions.

Example Request

Request:

   GET https://localhost:8443/rest/v1/contexts/users.admin.devices.virtual

Example response body JSON:

 {
"name": "virtual",
       "description": "virtual",
       "path": "users.admin.devices.virtual",
       "parent": "users.admin.devices",
       "children": []
}

       

Was this page helpful?