Skip to content

updateIpWhitelistEntry

Update an entry in the IP allowlist.

Arguments

Argument Type Description
input (required) UpdateIpWhitelistEntryInput! Input required for updating an entry in the IP allowlist.

Returns

Void

Sample

mutation UpdateIpWhitelistEntry($input: UpdateIpWhitelistEntryInput!) {
  updateIpWhitelistEntry(input: $input)
}
{
  "input": {
    "newDescription": "example-string",
    "newIpCidr": "example-string",
    "targetEntryId": 0
  }
}
{
  "data": {
    "updateIpWhitelistEntry": "example-string"
  }
}