A client token provided by MyFileRunner is necessary in order to interact with the MyFileRunner API. It should be included in the headers of all your requests with the name client-token
and the value containing the token itself.
You can request your client token from a MyFileRunner administrator. Here are the steps to obtain your client token and start interacting with our API directly:
client-token
, paste the MyFileRunner token in the Value field, and make sure that the Add to dropdown menu is set to Header.
Include the key client-token
in the headers with its value set to the token you have obtained from MyFileRunner, as shown.
@include('components.functions.example-javascript', ['requestURL' => env('API_BASEURL').'v1/healthCheck', 'httpMethod' => 'GET'])
Note: most functions require a session token called user-token
which is obtained on login. This user token is associated to your client's session (i.e., your web browser, Postman, or your application communicating with the API).
The Service module functions do not require a user-token
, but the client-token
is still required for all functions.