Protocol service debug inspect group store

POST /protocol/v1/DebugInspectGroupStore

Body Required

  • group_pk string(byte)
  • log_type string

    Values are DebugInspectGroupLogTypeUndefined, DebugInspectGroupLogTypeMessage, or DebugInspectGroupLogTypeMetadata. Default value is DebugInspectGroupLogTypeUndefined.

Responses

  • 200

    A successful response.(streaming responses)

    Hide response attributes Show response attributes object
    • result object
      Hide result attributes Show result attributes object
      • cid string(byte)
      • parent_cids array[string(byte)]
      • metadata_event_type string
      • device_pk string(byte)
      • payload string(byte)
    • error object
      Hide error attributes Show error attributes object
      • grpc_code integer(int32)
      • http_code integer(int32)
      • message string
      • http_status string
      • details array[object]
        Hide details attributes Show details attributes array[object]
        • type_url string
        • value string(byte)
  • default

    An unexpected error response

    Hide response attributes Show response attributes object
    • error string
    • code integer(int32)
    • message string
    • details array[object]
      Hide details attributes Show details attributes array[object]
      • type_url string
      • value string(byte)
POST /protocol/v1/DebugInspectGroupStore
curl \
 -X POST http://api.example.com/protocol/v1/DebugInspectGroupStore \
 -d '{"group_pk":"string","log_type":"DebugInspectGroupLogTypeUndefined"}'
Request example
{
  "group_pk": "string",
  "log_type": "DebugInspectGroupLogTypeUndefined"
}
Request examples
{
  "group_pk": "string",
  "log_type": "DebugInspectGroupLogTypeUndefined"
}
Response examples (200)
{
  "result": {
    "cid": "string",
    "parent_cids": [
      "string"
    ],
    "metadata_event_type": "EventTypeUndefined",
    "device_pk": "string",
    "payload": "string"
  },
  "error": {
    "grpc_code": 42,
    "http_code": 42,
    "message": "string",
    "http_status": "string",
    "details": [
      {
        "type_url": "string",
        "value": "string"
      }
    ]
  }
}
Response examples (200)
{
  "result": {
    "cid": "string",
    "parent_cids": [
      "string"
    ],
    "metadata_event_type": "EventTypeUndefined",
    "device_pk": "string",
    "payload": "string"
  },
  "error": {
    "grpc_code": 42,
    "http_code": 42,
    "message": "string",
    "http_status": "string",
    "details": [
      {
        "type_url": "string",
        "value": "string"
      }
    ]
  }
}
Response examples (default)
{
  "error": "string",
  "code": 42,
  "message": "string",
  "details": [
    {
      "type_url": "string",
      "value": "string"
    }
  ]
}
Response examples (default)
{
  "error": "string",
  "code": 42,
  "message": "string",
  "details": [
    {
      "type_url": "string",
      "value": "string"
    }
  ]
}