Try to add response body to your API. For example return userWasAddedSuccessfully ? 'User was added' : 'Smth went wrong'. Then your console.log() show result. Now your 200 OK show success request to API, but not result.
return userWasAddedSuccessfully ? 'User was added' : 'Smth went wrong'
console.log()
200 OK