I am trying to authenticate via postman to get a token. The postman keeps returning
{
"error": {
"code": 1,
"message": "Not Found"
}
}
This is my POST
url: localhost:8080/:cabellsdata/auth/authenticate
and in my BODY (raw) I have my email and password exactly as stated in docs.
When I do a GET: localhost:8080/:CabellsData/collections/:journalytics
, it does work. So why is my POST
not working. Thanks
Looks like you need to delete that :
in the project section of your API URL.