Skip to content

Set or Modify the dedicated IP pool used for IP spillover

Request

This endpoint allows you to set or update the DIPP spillover settings for an account . You can specify the ID of the IP pool that spillover IPs are assigned to. The IP pool must contain at least one fully warmed IP address to be valid. To disable DIPP spillover, set the pool_id to an empty string ("").

Security
basicAuth
Bodyapplication/jsonrequired
extra_dedicated_ipsobject(github.com-mailgun-tower-api-account-dipp_spillover-DIPPSpilloverRequest)required

the DIPP spillover settings for the account. This value will apply to all domains under the account

curl -i -X PATCH \
  -u '<username>:<password>' \
  https://api.mailgun.net/v3/ips/account/settings \
  -H 'Content-Type: application/json' \
  -d '{
    "extra_dedicated_ips": {
      "pool_id": "6a219e7515415d72b6e47360"
    }
  }'

Responses

A 200 response

Bodyapplication/json
messagestringrequired

Response message

Response
{ "message": "success" }