Skip to content

saas.php

SaaS panels endpoint router for managing SaaS-related operations and service installations.


saas/install

Installs a new SaaS instance or service based on provided parameters.

HTTP Method: POST

Parameters:

Parameter Required Type Description
action string The action to perform
token string Authentication token for the request

Example Request

curl -s "https://invapi.hostkey.com/saas.php" -X POST \
--data "action=install" \
--data "token=HOSTKEY_TOKEN"
Example of a successful response
{
"result": "OK",
"action": "install",
"data": {
"status": "success",
"id": 123,
"service_name": "SaaS Instance Pro"
}
}
Failure response

``` { "code": 400, "message": "No action specified" }

```

question_mark
Is there anything I can help you with?
question_mark
AI Assistant ×