Skip to main content
POST
/
api
/
v3
/
builds
/
{build_id}
/
process
Trigger build processing
curl --request POST \
  --url https://playflow.dev/api/api/v3/builds/{build_id}/process \
  --header 'api-key: <api-key>'
{
  "status": "<string>",
  "build_id": "<string>",
  "message": "<string>"
}

Authorizations

api-key
string
header
required

Path Parameters

build_id
string
required

Build ID returned by the upload-url endpoint.

Query Parameters

name
string

Build name (must match the name used during upload). Required for version tracking.

Response

Build processing triggered. Poll GET /builds/{build_id} for status updates.

Confirmation that build processing has been triggered. Processing runs asynchronously via GitHub Actions (typically 1–5 minutes).

status
string
required

Processing status, typically "accepted".

build_id
string
required

Build identifier being processed.

message
string
required

Human-readable status message.