;


Test
Provides very basic Api testing calls which do not affect nor return data from the PAC Metrix system.

api/Test - GET Returns a JSON string stating that the GET request was received.
api/Test - GET (with 'id') Returns a JSON string stating that the GET request was received and the 'id' value passed.
api/Test - POST Returns a JSON string stating that the POST request was received and the value that was posted.

Method Details

Method: https://login.pac-metrix.com/api/api/Test (GET)
Usage:
Use this to make sure that you can successfully call the API with a GET request.
Inputs:
Returns:
string Message stating that the GET was successful.
Method: https://login.pac-metrix.com/api/api/Test (GET)
Usage:
Use this to make sure that you can successfully call the API with a GET request and an 'id' parameter.
Inputs:
stringid Anything you wish to pass as an 'id'.
Returns:
string Message stating that the GET was successful. This message will contain the 'id' sent as proof.
Method: https://login.pac-metrix.com/api/api/Test (POST)
Usage:
Use this to make sure that you can successfully call the API with a POST request and content.
Inputs:
stringvalue Anything you wish to pass as a value.
Returns:
string Message stating that the POST was successful. This message will contain the 'value' sent as proof.
;