Update quota
documentedUpdate a quota (via _method=POST).
POST /survey/{survey_id}/quotas/{quota_id}Quotasno 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://api.alchemer.com/v5/survey/{{$survey_id}}/quotas/{{$quota_id}}?_method=POST&api_token={{SURVEYGIZMO_API_KEY}}&api_token_secret={{SURVEYGIZMO_SECRET}}" \
-X POST \\
-H "Content-Type: application/json" \\n -H "Accept: application/json" \\n -H "Authorization: Bearer {{OAUTH2_ACCESS_TOKEN}}" \\n -d '{"name": "{{$name}}", "description": "{{$description}}", "limit": {{$limit}}, "distributed": {{$distributed}}, "groups": "{{$groups}}"}'