Skip to main content
POST
/
headless
/
completeInstallation
Complete Installation
curl --request POST \
  --url https://production.runalloy.com/headless/completeInstallation \
  --header 'Authorization: <authorization>' \
  --header 'Content-Type: application/json' \
  --header 'x-api-version: <x-api-version>' \
  --data '{
  "installationId": "<string>",
  "data": [
    {
      "workflowId": "<string>",
      "blockId": "<string>",
      "fields": [
        {
          "name": "<string>",
          "value": "<string>"
        }
      ]
    }
  ]
}'
"{\"message\":\"Installation completed successfully\"}"

Headers

Authorization
string
default:bearer YOUR_API_KEY
required
x-api-version
string
default:2025-09
required

The version of the API to use. The current API version is 2025-09.

Body

application/json
installationId
string
required

ID you received when you started the installation.

data
object[]
required

Values filled by user in your installation form

Response

200

message
string
Example:

"Installation completed successfully"

I