Skip to main content
GET
/
v2
/
builds
/
builds
/
{build_id}
Get a Specific Build by ID
curl --request GET \
  --url https://api.computeflow.cloud/v2/builds/builds/{build_id} \
  --header 'api-key: <api-key>'
{
  "name": "<string>",
  "found": true,
  "message": "<string>",
  "build": {
    "build_id": "<string>",
    "name": "<string>",
    "version": 123,
    "status": "uploading",
    "created_at": "2023-11-07T05:31:56Z",
    "updated_at": "2023-11-07T05:31:56Z"
  }
}

Headers

api-key
string
required

PlayFlow API Key PlayFlow API Key

Path Parameters

build_id
string
required

The unique identifier (UUID) of the build to retrieve. The unique identifier (UUID) of the build to retrieve.

Response

Successful Response

name
string
required
found
boolean
required
message
string
required
build
BuildResponse · object

Response model for a single build.