Skip to content

updateAdGroup

Update the AD group display name, and it's filter attribute spec.

Arguments

Argument Type Description
input (required) UpdateAdGroupInput! The input for the UpdateADGroup mutation.

Returns

Void

Sample

mutation UpdateAdGroup($input: UpdateAdGroupInput!) {
  updateAdGroup(input: $input)
}
{
  "input": {
    "groupId": "00000000-0000-0000-0000-000000000000",
    "orgId": "00000000-0000-0000-0000-000000000000",
    "updatedDisplayName": "example-string",
    "updatedGroupFilterAttributes": [
      {}
    ]
  }
}
{
  "data": {
    "updateAdGroup": "example-string"
  }
}