API Name: Face Matching
Request Method: POST
Request End:
/api/v1/FaceMatch
Request Body:
let data={ accuracy:'', img1Base64:'', img2Base64:'' } var config = { method: 'post', url: 'http://localhost:8080/api/v1/FaceMatch', headers: { }, data : data }; axios(config) .then(function (response) { console.log(JSON.stringify(response.data)); }) .catch(function (error) { console.log(error); });