Testing Connectivity
aori_ping
A simple test for connectivity to the API is by sending a JSON-RPC request with the method aori_ping
. A simple aori_pong
response will be returned.
Parameters | Type | Required | Description |
---|---|---|---|
None. | - | - | - |
{
"id": <request_id>,
"jsonrpc": "2.0",
"method": "aori_ping",
"params": []
}
Response
{
"id": <request_id>,
"result": "aori_pong"
}