wrike
Installation
SKILL.md
Troubleshooting
If requests fail, run zero doctor check-connector --env-name WRIKE_TOKEN or zero doctor check-connector --url https://www.wrike.com/api/v4/spaces --method GET
How to Use
All examples below assume you have WRIKE_TOKEN set.
Base URL: https://www.wrike.com/api/v4
Wrike uses alphanumeric IDs for all resources. The hierarchy is: Space > Folder/Project > Task. Projects are folders with additional properties (owners, start/end dates, status). All responses follow the format {"kind": "...", "data": [...]}.
Spaces
List All Spaces
curl -s "https://www.wrike.com/api/v4/spaces" --header "Authorization: Bearer $WRIKE_TOKEN" | jq '.data[] | {id, title}'