Fetch Details of a POD

Shows details of the specified POD.

GET/v1.3/k8sResource/pod/details/{podUid}

Input ParametersInput Parameters

Parameter

Mandatory/Optional

Data Type

Description

podUid  Mandatory string Specify the UUID of a POD.
For example: 8c18a36e-ca9c-4b7e-9fe5-bbb260b99435

Sample: Fetch Details of a PODSample: Fetch Details of a POD

API request

curl -X 'GET'
'<qualys_base_url>/csapi/v1.3/k8sResource/pod/details/8c18a36e-ca9c-4b7e-9fe5-bbb260b99435'
-H 'accept: application/json'
-H 'Authorization: Bearer'
-H 'Content-Type: application/json'

Response JSON

{
  "uuid": "8c18a36e-ca9c-4b7e-9fe5-bbb260b99435",
  "customerUuid": "7e5d9ca3-ed1c-65b8-12ab-e38ea0c445cd",
  "clusterUid": "3e27e85e-99f9-4fac-bfdc-052ae00653a6",
  "sensorUuid": "407a2a6b-74e5-2a14-3f24-e6a440c29e38",
  "name": "kube-proxy-csfbx",
  "labels": [
    "component:kube-proxy",
    "controller-revision-hash:7cc4697865",
    "kubernetes.azure.com/managedby:aks",
    "pod-template-generation:6",
    "tier:node"
  ],
  "annotations": null,
  "updatedAt": 1729148079790,
  "deletedAt": null,
  "resourceVersion": 44221227,
  "namespace": "kube-system",
  "startedAt": 1728783935000,
  "status": "RUNNING",
  "containers": [
    "containerd://eb009a072729e6a576bbf1c1d9edd6057cfa040a58071430b81656a38fb8be1a",
    "containerd://b9cac4442fd0452c40831a3f7a2781e92773326440016217d42dc493e4ffb56b"
  ],
  "securityContext": null,
  "owner": {
    "uuid": "8133f71c-6901-46e8-ba77-87e261d4b312",
    "name": "kube-proxy",
    "kind": "DaemonSet"
  }
}