Skip to main content
GET
/
enterprise
/
v1
/
io-cloud
/
caas
/
deployment
/
{deployment_id}
/
containers-jobs
/
{container_id}
Get Containers Jobs History
curl --request GET \
  --url https://api.io.solutions/enterprise/v1/io-cloud/caas/deployment/{deployment_id}/containers-jobs/{container_id} \
  --header 'Authorization: Bearer <token>' \
  --header 'x-api-key: <x-api-key>'
{
  "data": {
    "total": 123,
    "workers": [
      {
        "device_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
        "container_id": "<string>",
        "hardware": "<string>",
        "brand_name": "<string>",
        "created_at": "2023-11-07T05:31:56Z",
        "uptime_percent": 123,
        "gpus_per_container": 123,
        "status": "<string>",
        "container_events": [
          {
            "time": "2023-11-07T05:31:56Z",
            "message": "<string>"
          }
        ],
        "public_url": "<string>"
      }
    ]
  }
}

Documentation Index

Fetch the complete documentation index at: https://io.net/docs/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

Authorization
string
header
required

The access token received from the authorization server in the OAuth 2.0 flow.

Headers

x-api-key
string
required

io.net provided API Key

Path Parameters

deployment_id
string<uuid>
required
container_id
string
required

Query Parameters

page
integer
default:0
page_size
integer
default:20
Required range: x <= 100

Response

Successful Response

data
ContainersJobsData · object
required