VirtuousAI
ReferenceV1

Install Bundle

Install a bundle for the current tenant. Creates all components defined in the bundle (connections, action templates) with bindings resolved from the provided inputs.

POST
/api/v1/bundles/{slug}/install

Path Parameters

slug*string

Query Parameters

version?|

Specific bundle version

Header Parameters

authorization?|
X-API-Key?|
vai_token?|

Request Body

application/json

inputs?

Input values for the bundle (matches input_json_schema)

Response Body

application/json

application/json

curl -X POST "https://loading/api/v1/bundles/string/install" \  -H "Content-Type: application/json" \  -d '{}'
{
  "bundleSlug": "string",
  "bundleTemplateId": "string",
  "bundleVersion": 0,
  "components": [
    {
      "entityId": "string",
      "entityName": "string",
      "entityType": "string",
      "key": "string",
      "type": "string"
    }
  ]
}
{
  "detail": [
    {
      "loc": [
        "string"
      ],
      "msg": "string",
      "type": "string"
    }
  ]
}