updateCustomer Mutation
Updates the specified Customer object.
Access is permitted when any of the following condition(s) are met: 1. The signed-in User has any of the following permissions for the associated Organization: [org_manage_customers, org_crud_customers]. 2. The signed-in User has any of the following permissions for the object: [customer_edit].
Input fields (UpdateCustomerInput!)
Argument | Type | Description |
---|---|---|
name | String | The name of the Customer, which must be unique within the scope of its Organization. |
description | String | Additional notes about the Customer. |
allowEmbeddedDesigner | Boolean | Specifies whether this Customer can use the Embedded Designer. |
labels | [String] | The labels that are associated with the object. |
avatarUrl | String | The URL for the avatar image. |
externalId | String | Allows for mapping an external entity to a Prismatic record. |
starred | Boolean | Indicates whether the record is starred by the signed-in User. |
addAttachment | AttachmentInput | Adds the specified Attachment to the object. |
renameAttachment | AttachmentRenameInput | Removes the specified Attachment from the object. |
removeAttachment | AttachmentInput | Renames the specified Attachment on the object. |
id | ID | The ID of the Customer to mutate. |
clientMutationId | String | A unique identifier for the client performing the mutation. |