.. _Platforms-Agents-Status-Endpoints: ================================= Platforms Agents Status Endpoints ================================= Platforms Agents Status endpoints expose functionality associated with getting status for a single agent running on a VOLTTRON platform. Only a GET method is currently implemented. .. attention:: All Platforms Agents Status endpoints require a JWT bearer token obtained through the ``POST /authenticate`` or ``PUT /authenticate`` endpoints. -------------- GET /platforms/:platform/agents/:agent/status =============================== Get status for a specific agent on the platform. Request: -------- - Authorization: ``BEARER `` Response: --------- * **With valid BEARER token on success:** ``200 OK`` - Content Type: ``application/json`` - Body: .. code-block:: json { "name": "", "uuid": "", "tag": "", "priority": "", "running": , "enabled": , "pid": , "exit_code": } * **With valid BEARER token on failure:** ``400 Bad Request`` - Content Type: ``application/json`` - Body: .. code-block:: JSON { "error": "" } * **With invalid BEARER token:** ``401 Unauthorized`` .. toctree:: :hidden: self