Traces REST API

Use this REST API to manage traces.

Get all traces

Table 1. Get all traces
REST API information Value Description
URI /admin/resources/traces  
Method GET  
Returns 200 Returns a list of all Traces
404 The Trace list was not found
500 Platform System Manager encountered an internal error while processing the request.

Returns a list of Traces.

You can use optional parameters to modify the response from GET calls. For more information, see Custom responses from GET calls.

Response body


   {
      "id": "/admin/resources/traces/8b635c7b-e4a7-4303-8664-d0e3184f6987",
      "created_time_raw": 1466797327673,
      "level": "FINE",
      "updated_time_raw": 1466797327673,
      "component": "users",
      "state": "successful",
      "isas_rn": 1,
      "created_time": "Fri 24 Jun 2016 19:42:07.673 UTC",
      "updated_time": "Fri 24 Jun 2016 19:42:07.673 UTC",
      "version": "2.2.2.0"
   }
]
component
The component traced
created_time
The time at which the object is created
id
The unique ID of the object in the system.
level
The level tracing was set at
state
The general availability of the object. If "pending" the object has been created but not activated. If "available" the object is active in the system.
updated_time
The time at which the object was last updated
version
REST API version number

Get a specific Trace

Table 2. Get a specific Trace
REST API information Value Description
URI /admin/resources/traces/{id}  
Method GET  
Returns 200 The Trace was returned.
404 The Trace was not found
500 Platform System Manager encountered an internal error while processing the request.

Returns a single Trace identified by {id}.

You can use optional parameters to modify the response from GET calls. For more information, see Custom responses from GET calls.