curl --request GET \
--url https://api.egp.scale.com/v5/builds/undeployed \
--header 'x-api-key: <api-key>'[
{
"agent_name": "<string>",
"latest_build": {
"id": "<string>",
"cloud_provider_build_id": "<string>",
"agent_name": "<string>",
"image_name": "<string>",
"image_tag": "<string>",
"build_status": "queued",
"account_id": "<string>",
"created_at": "2023-11-07T05:31:56Z",
"created_by": {
"id": "<string>",
"type": "user",
"object": "identity"
},
"object": "agentex_cloud_build",
"image_url": "<string>",
"build_start_time": "2023-11-07T05:31:56Z",
"build_end_time": "2023-11-07T05:31:56Z"
},
"total_builds": 123
}
]List agents that exist only as cloud builds with no healthy deployment.
Returns distinct agent names from builds that have never had a deploy reach ‘healthy’ status, along with each agent’s latest build info and total build count. Useful for surfacing agents that have been built but not yet deployed.
curl --request GET \
--url https://api.egp.scale.com/v5/builds/undeployed \
--header 'x-api-key: <api-key>'[
{
"agent_name": "<string>",
"latest_build": {
"id": "<string>",
"cloud_provider_build_id": "<string>",
"agent_name": "<string>",
"image_name": "<string>",
"image_tag": "<string>",
"build_status": "queued",
"account_id": "<string>",
"created_at": "2023-11-07T05:31:56Z",
"created_by": {
"id": "<string>",
"type": "user",
"object": "identity"
},
"object": "agentex_cloud_build",
"image_url": "<string>",
"build_start_time": "2023-11-07T05:31:56Z",
"build_end_time": "2023-11-07T05:31:56Z"
},
"total_builds": 123
}
]