Last active
September 19, 2017 22:35
-
-
Save ntoskrnl/f9c0f4ff892136e51fda96ab223e51bb to your computer and use it in GitHub Desktop.
JSON-RPC 2.0 request and response example
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
--> {"jsonrpc": "2.0", "method": "subtract", "params": {"minuend": 42, "subtrahend": 23}, "id": 3} | |
<-- {"jsonrpc": "2.0", "result": 19, "id": 3} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment