Logging API calls

This page describes all the API calls you can create for the API logs.
You will always receive the output as described in the documentation below unless an error ocurred. For more information, see the error handling section.

Actions

POST
getAll

All your API logs.


Request parameters
ParameterContextTypeDescription
No parameters
Response parameters
ParameterContextTypeDescription
logsarrayAll API logs
categorylogsstringAPI category
titlelogsstringLog title
descriptionlogsstringLog content
remoteIPlogsstringRemote IP address of the request
apiKeylogsstringAPI key of the request
timestamplogsintTime of the request

Example
Array
(
    [status] => Success
    [msg] => OK
    [data] => stdClass Object
        (
            [logs] => Array
                (
                    [0] => Array
                        (
                            [category] => dedicated server
                            [title] => Get all dedicated servers details
                            [description] => Requested get all dedicated servers
                            [remoteIP] => 123.123.123.123
                            [apiKey] => ecL6QO420t396A1ZMm3E
                            [timestamp] => 1415013948
                        )

                    [1] => Array
                        (
                            [category] => dedicated server
                            [title] => Get all dedicated servers details
                            [description] => Requested get all dedicated servers
                            [remoteIP] => 123.123.123.123
                            [apiKey] => ecL6QO420t396A1ZMm3E
                            [timestamp] => 1415012844
                        )

                )

        )

)