Sign in

IP bandwidth operation (placeholder)

documented

Bandwidth-related operation for IP (endpoint appears in docs as truncated here).

POST /v3/ips/{addr}/ip_bandwidthDynamic IP/Constraintsno implementation yet0 runs
No 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 an official Mailgun API endpoint named POST /v3/ips/{addr}/ip_bandwidth. The public Mailgun docs do expose an endpoint to place an IP into a dedicated IP band at POST /v3/ips/{addr}/ip_band. See the IPs API references in Mailgun docs. ([documentation.mailgun.com](https://documentation.mailgun.com/docs/inboxready/api-reference/optimize/mailgun/ips/post-v3-ips--addr--ip-band?utm_source=openai))

npx -y keychains@latest curl "https://api.mailgun.net/v3/ips/{{$addr}}/ip_band" \
  -X POST \
  -u "api:{{MAILGUN_API_KEY}}" \
  -H "Accept: application/json" \
  -H "Content-Type: multipart/form-data" \
  -F 'ip_band={{$ip_band}}'
IP bandwidth operation (placeholder) · mailgun · OpenIntegrations