Skip to main content
POST
/
workflows
/
install
Install workflows
curl --request POST \
  --url https://production.runalloy.com/workflows/install \
  --header 'Authorization: <authorization>' \
  --header 'Content-Type: application/json' \
  --header 'x-api-version: <x-api-version>' \
  --data '{
  "workflowIds": [
    "<string>"
  ],
  "credentialIds": [
    "<string>"
  ],
  "userId": "<string>"
}'
{
  "installed": true
}

Headers

Authorization
string
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
workflowIds
string[]
required
credentialIds
string[]
required
userId
string
required

Response

200

installed
boolean
default:true
Example:

true

I