HostFact API versie 3.1



Hosting

Hostingaccounts zijn te beheren via de controller 'hosting'.



create

Met behulp van deze functie is het mogelijk om een hosting account aan te maken op de server.
Voorbeeldbestand: /voorbeelden/hosting/hosting.create.php


Invoerparameters:
Veldnaam Waarde Omschrijving
Identifier int De unieke ID van een hosting account
Username string De accountnaam (en gebruikersnaam)
Verplichte velden: Identifier of Username

Voorbeeld invoer:
<?php

require_once("../hostfact_api.php");

$api = new HostFactAPI();

$hostingParams = array(
				'Username'	=> 'example'
);

$response = $api->sendRequest('hosting', 'create', $hostingParams);

print_r_pre($response);

?>

Voorbeeld uitvoer:
Array
(
    [controller] => hosting
    [action] => create
    [status] => success
    [date] => 2022-11-24T12:00:00+02:00
    [success] => Array
        (
            [0] => Hostingaccount example is succesvol aangemaakt
            [1] => De e-mail met accountgegevens voor hostingaccount example is verzonden naar info@company.com
        )

)