INPUT_OBJECT
UpdateAccountMutationInput
The input object that defines the fields for the updateAccount mutation.
link GraphQL Schema definition
- input UpdateAccountMutationInput {
- # A descriptive name.
- : String
- # The ID of an AccountStatus.
- : Int64Bit
- # The ID of an AccountType.
- : Int64Bit
- # The ID of the serviceable address to use for this account.
- : Int64Bit
- # A list of account group IDs that this account is part of.
- : [Int64Bit]
- # The ID of the company that this entity operates under.
- : Int64Bit
- # If you are changing the account status from an active status to an inactive
- # status, this allows you to override the system default proration policy, if you
- # have the appropriate permissions.
- : Boolean
- # The date an account was first activated.
- : Date
- # The time an account was first activated.
- : Time
- # Data to insert into custom fields.
- : [CustomFieldDataMutationInput]
- # If IDs of `CustomField` objects that are associated with this entity are
- # provided here, they will be unset and removed. You cannot unset data where the
- # `CustomField` property `required` is set to `true`.
- : [Int64Bit]
- # A note about this entity.
- : NoteMutationInput
- # A list of file IDs to be associated with this object. These must first have been
- # uploaded to the /files endpoint and must be currently unassociated.
- : [AssociateFileMutationInput]
- # The task to be performed.
- : [TaskMutationInput]
- # Setting this value to `true` will set `serviceable_address_id` to null.
- : Boolean
- }