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>",
  "build": {
    "build_id": "<string>",
    "name": "<string>",
    "version": 123,
    "status": "uploading",
    "created_at": "2023-11-07T05:31:56Z",
    "updated_at": "2023-11-07T05:31:56Z"
  },
  "found": true,
  "message": "<string>"
}

Headers

api-key
string
required

PlayFlow API Key

Path Parameters

build_id
string
required

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

Response

Successful Response

The response is of type object.