List commissions
documentedRetrieves up to 100 commissions meeting the provided thresholds.
POST /api/v2/{username}/{token}/json/commission/all/Commissionsno 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)
I couldn’t locate official documentation for the exact endpoint /api/v2/{username}/{token}/json/commission/all/ on getambassador. Ambassador’s public docs cover Ambassador Cloud and general API usage, but this specific “commission/all” path isn’t listed in the available references. If you can share the exact doc link, I’ll generate a precise command. In the meantime, here’s a best-effort placeholder you can adapt once you have the real base URL and body schema. (Sources indicating the absence of this endpoint in public docs: Ambassador Cloud Developer Portal and Ambassador docs.) ([getambassador.io](https://www.getambassador.io/docs/cloud/latest/developer-portal/developer-portal?utm_source=openai))
npx -y keychains@latest curl "https://api.getambassador.com/v1/api/v2/{{$username}}/{{$token}}/json/commission/all/" \
-X POST \
-H "Authorization: Bearer {{OAUTH2_ACCESS_TOKEN}}" \
-H "Content-Type: application/json" \
-H "Accept: application/json" \
-d '{"start_date": "{{$start_date}}", "end_date": "{{$end_date}}", "filters": {{$filters}}}'