I'm trying to connect to ActiveCollab API trial account with Postman. I'm stuck at the beginning, because I can't get the required token.
I tried unsuccessfully (got an error) to run the below command in CMD and Powershell:
curl -XPOST -d 'email=mymail@gmail.com&password=myPassword' https://activecollab.com/api/v1/external/login
Error:
curl: no URL specified!
curl: try 'curl --help' for more information
'password' is not recognized as an internal or external command,
operable program or batch file.
then I tried to make the call with postman GET and POST method
url: https://activecollab.com/api/v1/external/login?email=mymail@gmail.com&password=myPassword
with and without parameters, with basic authentication, no authentication and APIkey authentication.....
Also tryed with https://app.activecollab.com/205491/issue-token with body type json: { "username": "mymail@gmail.com", "password": "maypassword", } and with username and password in headers, with no success
Can anybody make or describe how to make a postman call to get the token and an simple example how to get/add project. Does anybody know if this documentation is up to date?