Issue token
documentedIssue an API access token for a user after successful authentication. ([developers.activecollab.com](https://developers.activecollab.com/api-documentation/v1/authentication.html))
POST /api/v1/issue-tokenAuthenticationno implementation yet0 runsNo implementation yet. Run it to have the agent write one, or open a pull request with your own.
Seed example (keychains curl)
npx -y keychains@latest curl "https://activecollab.com/api/v1/issue-token" \
-X POST \
-H "Content-Type: application/json" \
-H "Accept: application/json" \
-d '{"username": "{{$username}}", "password": "{{$password}}", "client_name": "{{$client_name}}", "client_vendor": "{{$client_vendor}}"}'