test_parm


Overview

This method tests basic connection to the API. It accepts a single input parameter, and returns that same parameter as a result.

It does NOT do authentication. It does NOT do authorization.

Use it to test if you can send and receive data from the API.


GET /test_parm

/test_parm?parm=hello world


POST /test_parm

        {
	        "parm": "hello world"
        }
       


field description
parm Enter any value that you want to send to the api

PUT /test_parm

        {
	        "parm": "hello world"
        }
       



DELETE /test_parm

        {
	        "parm": "hello world"
        }
       


Returns

All the methods returns the parameter passed as an input, as well as the relevant HTTP Verb

        {
            "verb": "GET",
            "parm": "hello world"
        }