Request
Body Params application/json
Request Code Samples
curl --location --request GET 'http://localhost:3000/api/compute/get-jobs/?page=1' \
--header 'X-API-KEY;' \
--header 'Content-Type: application/json' \
--data-raw '{}'
Responses
application/json {
"res": {
"count": 0,
"next": null,
"previous": null,
"results": [
{
"uuid": "string",
"created_at": "string",
"last_update": "string",
"status": "string",
"docker_image": "string",
"raw_script": "string",
"args": "string",
"env": {},
"use_gpu": true,
"input_url": "string",
"output_download_url": "string",
"tag": "string",
"stdout": "string"
}
]
}
}
Modified at 2024-06-12 14:06:11