Hallo, @stephan
hier ein kleines Beispiel für die Erstellung eines Servers mit PowerShell. Du muss nur entsprechend den API Key und die URL anpassen.
$parameter = @{
        "type" = "C__OBJTYPE__SERVER"
        "title" = "My little server"
        "apikey" = "HIER API KEY EINTRAGEN"}
$Commands = @{
    "jsonrpc" = "2.0"
    "method" = "cmdb.object.create"
    "params" = $parameter
    "id" = 1
}
$Query = Invoke-RestMethod -Uri "HIER URL ZU I-DOIT EINTRAGEN/src/jsonrpc.php" -Body ($Commands | ConvertTo-Json) -Method "Post" -ContentType "application/json"
$Query.result