@extends('layouts.app') @section('title', 'Authentication') @section('content')
An API key provided by MyFileRunner is necessary in order to interact with the MyFileRunner API.
This functionality is available for MFR administrators only. 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 header parameter 'client-token' with its value set to the token you have obtained from MyFileRunner, as shown.
.fetch("{{env('API_BASEURL').'v1/filing/test'}}", {
'method': 'GET',
'content-type': 'Application/JSON',
'header': {
'client-token': 'api-mfr-0123456789abcdef0123456789ABCDEF'
},
'body': {
}
}).then((response) => { response.JSON() })
.then((data) => {
...
});