Skip to content

deleteServiceAccountsFromAccount

Delete specified service accounts.

Arguments

Argument Type Description
input (required) DeleteServiceAccountsFromAccountInput! Input for deleting service accounts.

Returns

Boolean!

Sample

mutation DeleteServiceAccountsFromAccount($input: DeleteServiceAccountsFromAccountInput!) {
  deleteServiceAccountsFromAccount(input: $input)
}
{
  "input": {
    "ids": [
      "example-string"
    ]
  }
}
{
  "data": {
    "deleteServiceAccountsFromAccount": true
  }
}