Watch clients
documentedWatch for client resource changes.
GET /api/2.3/clients/watchClientsno 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)
Note: The official Agendize API docs show the Watch endpoint for Clients/CRM is a POST, not GET. The documented URL is https://api.agendize.com/api/2.3/clients/watch and it requires authentication. For OAuth2, use an Authorization: Bearer token header; for multi-account setups you can use SSO token + API Key. See sources: Watch endpoint details (POST to /api/2.3/clients/watch) and authentication guidance. ([developers.agendize.com](https://developers.agendize.com/v2.3/clients/reference/index.jsp))
npx -y keychains@latest curl "https://api.agendize.com/api/2.3/clients/watch" \
-X POST \
-H "Authorization: Bearer {{OAUTH2_ACCESS_TOKEN}}" \
-H "Content-Type: application/json" \
-H "Accept: application/json" \
-d '{"address": "{{$address}}", "name": "{{$watchName}}", "method": "POST", "status": "enabled"}'