Login to Workbooks API
documentedObtain a session for API access using an API key or user credentials.
POST /login.apiAuthenticationno 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://secure.workbooks.com/login.api" \
-X POST \
-H "Content-Type: application/x-www-form-urlencoded" \
-H "Accept: application/json" \
-H "User-Agent: Keychains-Workbooks/1.0" \
-c "/tmp/workbooks_cookie.jar" \
-b "/tmp/workbooks_cookie.jar" \
-d 'api_key={{WORKBOOKS_API_KEY}}' \
-d 'client=api' \
-d 'api_version=1' \
-d 'json=pretty' \
-d 'logical_database_id={{LOGICAL_DATABASE_ID}}'