UWAGA: poniższa dokumentacja dotyczy nieakutalnej wersji API (2.0.0). Kliknij aby przejść do aktualnej dokumentacji.

<<

NAME

ServiceType - Available service types.

FORMAL SPECIFICATION

WSDL: https://api.cloudmonit.pl/2.0.0/wsdl/ServiceType.wsdl

JSON: https://api.cloudmonit.pl/2.0.0/json/ServiceType.json

DESCRIPTION

This module can be used to obtain information about available service types.

SYNOPSIS

        # json request
        {"module":"ServiceType","method":"Find","auth":{"login":"user","password":"pass"}}
        # response.data
        {"elements":[
                {"name":"http","id":1,"prefix":"http://"},         # type IDs obtained here are required when creating a new service
                {"name":"smtp-helo","id":2,"prefix":"smtp://"},
                {"name":"https","id":5,"prefix":"https://"},
                {"name":"ping","id":7,"prefix":"ping://"}
        ],"total":4}}

METHODS

Find

This method allows you to fetch information about selected ServiceType objects.

Arguments

Returns

Authorization

This method can be called by read-only users.

Meta

Returns the JSON or WSDL specification of the ServiceType API module.

WARNING

This method is meant for internal usage in API clients. Unless you are writing one, you probably do not need it.

Arguments

Returns

Authorization

This method can be called by read-only users.

Read

This method allows you to get information about a single ServiceType object.

Arguments

Returns

Authorization

This method can be called by read-only users.

<<